diff --git a/DynmapCore/src/main/java/org/dynmap/ColorScheme.java b/DynmapCore/src/main/java/org/dynmap/ColorScheme.java index 82f50feb..4c522096 100644 --- a/DynmapCore/src/main/java/org/dynmap/ColorScheme.java +++ b/DynmapCore/src/main/java/org/dynmap/ColorScheme.java @@ -12,252 +12,258 @@ import org.dynmap.debug.Debug; import org.dynmap.renderer.DynmapBlockState; public class ColorScheme { - private static final HashMap<String, ColorScheme> cache = new HashMap<String, ColorScheme>(); + private static final HashMap<String, ColorScheme> cache = new HashMap<String, ColorScheme>(); - public String name; - /* Switch to arrays - faster than map */ - public final Color[][] colors; /* [global-state-idx][step] */ - public final Color[][] biomecolors; /* [Biome.ordinal][step] */ - public final Color[][] raincolors; /* [rain * 63][step] */ - public final Color[][] tempcolors; /* [temp * 63][step] */ + public String name; + /* Switch to arrays - faster than map */ + public final Color[][] colors; /* [global-state-idx][step] */ + public final Color[][] biomecolors; /* [Biome.ordinal][step] */ + public final Color[][] raincolors; /* [rain * 63][step] */ + public final Color[][] tempcolors; /* [temp * 63][step] */ - public ColorScheme(String name, Color[][] colors, Color[][] biomecolors, Color[][] raincolors, Color[][] tempcolors) { - this.name = name; - this.colors = colors; - this.biomecolors = biomecolors; - this.raincolors = raincolors; - this.tempcolors = tempcolors; - } + public ColorScheme(String name, Color[][] colors, Color[][] biomecolors, Color[][] raincolors, + Color[][] tempcolors) { + this.name = name; + this.colors = colors; + this.biomecolors = biomecolors; + this.raincolors = raincolors; + this.tempcolors = tempcolors; + } - private static File getColorSchemeDirectory(DynmapCore core) { - return new File(core.getDataFolder(), "colorschemes"); - } + private static File getColorSchemeDirectory(DynmapCore core) { + return new File(core.getDataFolder(), "colorschemes"); + } - public static ColorScheme getScheme(DynmapCore core, String name) { - if (name == null) - name = "default"; - ColorScheme scheme = cache.get(name); - if (scheme == null) { - scheme = loadScheme(core, name); - cache.put(name, scheme); - } - return scheme; - } + public static ColorScheme getScheme(DynmapCore core, String name) { + if (name == null) + name = "default"; + ColorScheme scheme = cache.get(name); + if (scheme == null) { + scheme = loadScheme(core, name); + cache.put(name, scheme); + } + return scheme; + } - public static ColorScheme loadScheme(DynmapCore core, String name) { - File colorSchemeFile = new File(getColorSchemeDirectory(core), name + ".txt"); - Color[][] colors = new Color[DynmapBlockState.getGlobalIndexMax()][]; - Color[][] biomecolors = new Color[BiomeMap.values().length][]; - Color[][] raincolors = new Color[64][]; - Color[][] tempcolors = new Color[64][]; - - /* Default the biome color */ - for(int i = 0; i < biomecolors.length; i++) { - Color[] c = new Color[5]; - int red = 0x80 | (0x40 * ((i >> 0) & 1)) | (0x20 * ((i >> 3) & 1)) | (0x10 * ((i >> 6) & 1)); - int green = 0x80 | (0x40 * ((i >> 1) & 1)) | (0x20 * ((i >> 4) & 1)) | (0x10 * ((i >> 7) & 1)); - int blue = 0x80 | (0x40 * ((i >> 2) & 1)) | (0x20 * ((i >> 5) & 1)); - c[0] = new Color(red, green, blue); - c[3] = new Color(red*4/5, green*4/5, blue*4/5); - c[1] = new Color(red/2, green/2, blue/2); - c[2] = new Color(red*2/5, green*2/5, blue*2/5); - c[4] = new Color((c[1].getRed()+c[3].getRed())/2, (c[1].getGreen()+c[3].getGreen())/2, (c[1].getBlue()+c[3].getBlue())/2, (c[1].getAlpha()+c[3].getAlpha())/2); - - biomecolors[i] = c; - } - - InputStream stream; - try { - Debug.debug("Loading colors from '" + colorSchemeFile + "'..."); - stream = new FileInputStream(colorSchemeFile); + public static ColorScheme loadScheme(DynmapCore core, String name) { + File colorSchemeFile = new File(getColorSchemeDirectory(core), name + ".txt"); + Color[][] colors = new Color[DynmapBlockState.getGlobalIndexMax()][]; + Color[][] biomecolors = new Color[BiomeMap.values().length][]; + Color[][] raincolors = new Color[64][]; + Color[][] tempcolors = new Color[64][]; - Scanner scanner = new Scanner(stream); - while (scanner.hasNextLine()) { - String line = scanner.nextLine(); - if (line.startsWith("#") || line.equals("")) { - continue; - } - /* Make parser less pedantic - tabs or spaces should be fine */ - String[] split = line.split("[\t ]"); - int cnt = 0; - for(String s: split) { if(s.length() > 0) cnt++; } - String[] nsplit = new String[cnt]; - cnt = 0; - for(String s: split) { if(s.length() > 0) { nsplit[cnt] = s; cnt++; } } - split = nsplit; - if (split.length < 17) { - continue; - } - Integer id = null; - Integer dat = null; - boolean isbiome = false; - boolean istemp = false; - boolean israin = false; - DynmapBlockState state = null; - int idx = split[0].indexOf(':'); - if(idx > 0) { /* ID:data - data color OR blockstate - data color */ - if (Character.isDigit(split[0].charAt(0))) { - id = Integer.parseInt(split[0].substring(0, idx)); - dat = Integer.parseInt(split[0].substring(idx+1)); - state = DynmapBlockState.getStateByLegacyBlockID(id); - if (state != null) { - state = state.getState(dat); - } - } - else { - String[] vsplit = split[0].split("[\\[\\]]"); - //Log.info(String.format("split[0]=%s,vsplit[0]=%s,vsplit[1]=%s", split[0], vsplit[0], vsplit.length > 1 ? vsplit[1] : "")); - if (vsplit.length > 1) { - state = DynmapBlockState.getStateByNameAndState(vsplit[0], vsplit[1]); - } - else { - state = DynmapBlockState.getBaseStateByName(vsplit[0]); - } - } - } - else if(split[0].charAt(0) == '[') { /* Biome color data */ - String bio = split[0].substring(1); - idx = bio.indexOf(']'); - if(idx >= 0) bio = bio.substring(0, idx); - isbiome = true; - id = -1; - BiomeMap[] bm = BiomeMap.values(); - for(int i = 0; i < bm.length; i++) { - if(bm[i].toString().equalsIgnoreCase(bio)) { - id = i; - break; - } - else if(bio.equalsIgnoreCase("BIOME_" + i)) { - id = i; - break; - } - } - if(id < 0) { /* Not biome - check for rain or temp */ - if(bio.startsWith("RAINFALL-")) { - try { - double v = Double.parseDouble(bio.substring(9)); - if((v >= 0) && (v <= 1.00)) { - id = (int)(v * 63.0); - israin = true; - } - } catch (NumberFormatException nfx) { - } - } - else if(bio.startsWith("TEMPERATURE-")) { - try { - double v = Double.parseDouble(bio.substring(12)); - if((v >= 0) && (v <= 1.00)) { - id = (int)(v * 63.0); - istemp = true; - } - } catch (NumberFormatException nfx) { - } - } - } - } - else { - id = Integer.parseInt(split[0]); - state = DynmapBlockState.getStateByLegacyBlockID(id); - } - - Color[] c = new Color[5]; + /* Default the biome color */ + for (int i = 0; i < biomecolors.length; i++) { + Color[] c = new Color[5]; + int red = 0x80 | (0x40 * ((i >> 0) & 1)) | (0x20 * ((i >> 3) & 1)) | (0x10 * ((i >> 6) & 1)); + int green = 0x80 | (0x40 * ((i >> 1) & 1)) | (0x20 * ((i >> 4) & 1)) | (0x10 * ((i >> 7) & 1)); + int blue = 0x80 | (0x40 * ((i >> 2) & 1)) | (0x20 * ((i >> 5) & 1)); + c[0] = new Color(red, green, blue); + c[3] = new Color(red * 4 / 5, green * 4 / 5, blue * 4 / 5); + c[1] = new Color(red / 2, green / 2, blue / 2); + c[2] = new Color(red * 2 / 5, green * 2 / 5, blue * 2 / 5); + c[4] = new Color((c[1].getRed() + c[3].getRed()) / 2, (c[1].getGreen() + c[3].getGreen()) / 2, + (c[1].getBlue() + c[3].getBlue()) / 2, (c[1].getAlpha() + c[3].getAlpha()) / 2); - /* store colors by raycast sequence number */ - c[0] = new Color(Integer.parseInt(split[1]), Integer.parseInt(split[2]), Integer.parseInt(split[3]), Integer.parseInt(split[4])); - c[3] = new Color(Integer.parseInt(split[5]), Integer.parseInt(split[6]), Integer.parseInt(split[7]), Integer.parseInt(split[8])); - c[1] = new Color(Integer.parseInt(split[9]), Integer.parseInt(split[10]), Integer.parseInt(split[11]), Integer.parseInt(split[12])); - c[2] = new Color(Integer.parseInt(split[13]), Integer.parseInt(split[14]), Integer.parseInt(split[15]), Integer.parseInt(split[16])); - /* Blended color - for 'smooth' option on flat map */ - c[4] = new Color((c[1].getRed()+c[3].getRed())/2, (c[1].getGreen()+c[3].getGreen())/2, (c[1].getBlue()+c[3].getBlue())/2, (c[1].getAlpha()+c[3].getAlpha())/2); + biomecolors[i] = c; + } - if (isbiome) { - if(istemp) { - tempcolors[id] = c; - } - else if(israin) { - raincolors[id] = c; - } - else if((id >= 0) && (id < biomecolors.length)) - biomecolors[id] = c; - } - else if (state != null) { - int stateid = state.globalStateIndex; - colors[stateid] = c; - } - } - scanner.close(); - /* Last, push base color into any open slots in data colors list */ - for (int i = 0; i < colors.length; i++) { - if (colors[i] == null) { - DynmapBlockState bs = DynmapBlockState.getStateByGlobalIndex(i); // Get state - DynmapBlockState bsbase = bs.baseState; - if ((bsbase != null) && (colors[bsbase.globalStateIndex] != null)) { - colors[i] = colors[bsbase.globalStateIndex]; - } - } - } - /* And interpolate any missing rain and temperature colors */ - interpolateColorTable(tempcolors); - interpolateColorTable(raincolors); - } catch (RuntimeException e) { - Log.severe("Could not load colors '" + name + "' ('" + colorSchemeFile + "').", e); - return null; - } catch (FileNotFoundException e) { - Log.severe("Could not load colors '" + name + "' ('" + colorSchemeFile + "'): File not found.", e); - } - return new ColorScheme(name, colors, biomecolors, raincolors, tempcolors); - } - - public static void interpolateColorTable(Color[][] c) { - int idx = -1; - for(int k = 0; k < c.length; k++) { - if(c[k] == null) { /* Missing? */ - if((idx >= 0) && (k == (c.length-1))) { /* We're last - so fill forward from last color */ - for(int kk = idx+1; kk <= k; kk++) { - c[kk] = c[idx]; - } - } - /* Skip - will backfill when we find next color */ - } - else if(idx == -1) { /* No previous color, just backfill this color */ - for(int kk = 0; kk < k; kk++) { - c[kk] = c[k]; - } - idx = k; /* This is now last defined color */ - } - else { /* Else, interpolate between last idx and this one */ - int cnt = c[k].length; - for(int kk = idx+1; kk < k; kk++) { - double interp = (double)(kk-idx)/(double)(k-idx); - Color[] cc = new Color[cnt]; - for(int jj = 0; jj < cnt; jj++) { - cc[jj] = new Color( - (int)((1.0-interp)*c[idx][jj].getRed() + interp*c[k][jj].getRed()), - (int)((1.0-interp)*c[idx][jj].getGreen() + interp*c[k][jj].getGreen()), - (int)((1.0-interp)*c[idx][jj].getBlue() + interp*c[k][jj].getBlue()), - (int)((1.0-interp)*c[idx][jj].getAlpha() + interp*c[k][jj].getAlpha())); - } - c[kk] = cc; - } - idx = k; - } - } - } - public Color[] getRainColor(double rain) { - int idx = (int)(rain * 63.0); - if((idx >= 0) && (idx < raincolors.length)) - return raincolors[idx]; - else - return null; - } - public Color[] getTempColor(double temp) { - int idx = (int)(temp * 63.0); - if((idx >= 0) && (idx < tempcolors.length)) - return tempcolors[idx]; - else - return null; - } - public static void reset() { - cache.clear(); - } + InputStream stream; + // Get defaults from biome_rainfall_temp.txt - let custom file override after + File files[] = { + new File(getColorSchemeDirectory(core), "biome_rainfall_temp.txt"), + new File(getColorSchemeDirectory(core), "default.txt"), + colorSchemeFile }; + try { + for (int fidx = 0; fidx < files.length; fidx++) { + Debug.debug("Loading colors from '" + files[fidx] + "' for " + name + "..."); + stream = new FileInputStream(files[fidx]); + + Scanner scanner = new Scanner(stream); + while (scanner.hasNextLine()) { + String line = scanner.nextLine(); + if (line.startsWith("#") || line.equals("")) { + continue; + } + /* Make parser less pedantic - tabs or spaces should be fine */ + String[] split = line.split("[\t ]"); + int cnt = 0; + for (String s : split) { + if (s.length() > 0) + cnt++; + } + String[] nsplit = new String[cnt]; + cnt = 0; + for (String s : split) { + if (s.length() > 0) { + nsplit[cnt] = s; + cnt++; + } + } + split = nsplit; + if (split.length < 17) { + continue; + } + Integer id = null; + Integer dat = null; + boolean isbiome = false; + boolean istemp = false; + boolean israin = false; + DynmapBlockState state = null; + int idx = split[0].indexOf(':'); + if (idx > 0) { /* ID:data - data color OR blockstate - data color */ + String[] vsplit = split[0].split("[\\[\\]]"); + // Log.info(String.format("split[0]=%s,vsplit[0]=%s,vsplit[1]=%s", split[0], + // vsplit[0], vsplit.length > 1 ? vsplit[1] : "")); + if (vsplit.length > 1) { + state = DynmapBlockState.getStateByNameAndState(vsplit[0], vsplit[1]); + } else { + state = DynmapBlockState.getBaseStateByName(vsplit[0]); + } + } else if (split[0].charAt(0) == '[') { /* Biome color data */ + String bio = split[0].substring(1); + idx = bio.indexOf(']'); + if (idx >= 0) + bio = bio.substring(0, idx); + isbiome = true; + id = -1; + BiomeMap[] bm = BiomeMap.values(); + for (int i = 0; i < bm.length; i++) { + if (bm[i].toString().equalsIgnoreCase(bio)) { + id = i; + break; + } else if (bio.equalsIgnoreCase("BIOME_" + i)) { + id = i; + break; + } + } + if (id < 0) { /* Not biome - check for rain or temp */ + if (bio.startsWith("RAINFALL-")) { + try { + double v = Double.parseDouble(bio.substring(9)); + if ((v >= 0) && (v <= 1.00)) { + id = (int) (v * 63.0); + israin = true; + } + } catch (NumberFormatException nfx) { + } + } else if (bio.startsWith("TEMPERATURE-")) { + try { + double v = Double.parseDouble(bio.substring(12)); + if ((v >= 0) && (v <= 1.00)) { + id = (int) (v * 63.0); + istemp = true; + } + } catch (NumberFormatException nfx) { + } + } + } + } else { + id = Integer.parseInt(split[0]); + state = DynmapBlockState.getStateByLegacyBlockID(id); + } + + Color[] c = new Color[5]; + + /* store colors by raycast sequence number */ + c[0] = new Color(Integer.parseInt(split[1]), Integer.parseInt(split[2]), Integer.parseInt(split[3]), + Integer.parseInt(split[4])); + c[3] = new Color(Integer.parseInt(split[5]), Integer.parseInt(split[6]), Integer.parseInt(split[7]), + Integer.parseInt(split[8])); + c[1] = new Color(Integer.parseInt(split[9]), Integer.parseInt(split[10]), + Integer.parseInt(split[11]), Integer.parseInt(split[12])); + c[2] = new Color(Integer.parseInt(split[13]), Integer.parseInt(split[14]), + Integer.parseInt(split[15]), Integer.parseInt(split[16])); + /* Blended color - for 'smooth' option on flat map */ + c[4] = new Color((c[1].getRed() + c[3].getRed()) / 2, (c[1].getGreen() + c[3].getGreen()) / 2, + (c[1].getBlue() + c[3].getBlue()) / 2, (c[1].getAlpha() + c[3].getAlpha()) / 2); + + if (isbiome) { + if (istemp) { + tempcolors[id] = c; + } else if (israin) { + raincolors[id] = c; + } else if ((id >= 0) && (id < biomecolors.length)) + biomecolors[id] = c; + } else if (state != null) { + int stateid = state.globalStateIndex; + colors[stateid] = c; + } + } + scanner.close(); + } + /* Last, push base color into any open slots in data colors list */ + for (int i = 0; i < colors.length; i++) { + if (colors[i] == null) { + DynmapBlockState bs = DynmapBlockState.getStateByGlobalIndex(i); // Get state + DynmapBlockState bsbase = bs.baseState; + if ((bsbase != null) && (colors[bsbase.globalStateIndex] != null)) { + colors[i] = colors[bsbase.globalStateIndex]; + } + } + } + /* And interpolate any missing rain and temperature colors */ + interpolateColorTable(tempcolors); + interpolateColorTable(raincolors); + } catch (RuntimeException e) { + Log.severe("Could not load colors '" + name + "' ('" + colorSchemeFile + "').", e); + return null; + } catch (FileNotFoundException e) { + Log.severe("Could not load colors '" + name + "' ('" + colorSchemeFile + "'): File not found.", e); + } + return new ColorScheme(name, colors, biomecolors, raincolors, tempcolors); + } + + public static void interpolateColorTable(Color[][] c) { + int idx = -1; + for (int k = 0; k < c.length; k++) { + if (c[k] == null) { /* Missing? */ + if ((idx >= 0) && (k == (c.length - 1))) { /* We're last - so fill forward from last color */ + for (int kk = idx + 1; kk <= k; kk++) { + c[kk] = c[idx]; + } + } + /* Skip - will backfill when we find next color */ + } else if (idx == -1) { /* No previous color, just backfill this color */ + for (int kk = 0; kk < k; kk++) { + c[kk] = c[k]; + } + idx = k; /* This is now last defined color */ + } else { /* Else, interpolate between last idx and this one */ + int cnt = c[k].length; + for (int kk = idx + 1; kk < k; kk++) { + double interp = (double) (kk - idx) / (double) (k - idx); + Color[] cc = new Color[cnt]; + for (int jj = 0; jj < cnt; jj++) { + cc[jj] = new Color((int) ((1.0 - interp) * c[idx][jj].getRed() + interp * c[k][jj].getRed()), + (int) ((1.0 - interp) * c[idx][jj].getGreen() + interp * c[k][jj].getGreen()), + (int) ((1.0 - interp) * c[idx][jj].getBlue() + interp * c[k][jj].getBlue()), + (int) ((1.0 - interp) * c[idx][jj].getAlpha() + interp * c[k][jj].getAlpha())); + } + c[kk] = cc; + } + idx = k; + } + } + } + + public Color[] getRainColor(double rain) { + int idx = (int) (rain * 63.0); + if ((idx >= 0) && (idx < raincolors.length)) + return raincolors[idx]; + else + return null; + } + + public Color[] getTempColor(double temp) { + int idx = (int) (temp * 63.0); + if ((idx >= 0) && (idx < tempcolors.length)) + return tempcolors[idx]; + else + return null; + } + + public static void reset() { + cache.clear(); + } } diff --git a/DynmapCore/src/main/java/org/dynmap/DynmapCore.java b/DynmapCore/src/main/java/org/dynmap/DynmapCore.java index 9e36b050..5b10a131 100644 --- a/DynmapCore/src/main/java/org/dynmap/DynmapCore.java +++ b/DynmapCore/src/main/java/org/dynmap/DynmapCore.java @@ -681,11 +681,16 @@ public class DynmapCore implements DynmapCommonAPI { if (configuration.getBoolean("dumpColorMaps", false)) { dumpColorMap("standard.txt", "standard"); + dumpColorMap("default.txt", "standard"); dumpColorMap("dokudark.txt", "dokudark.zip"); dumpColorMap("dokulight.txt", "dokulight.zip"); dumpColorMap("dokuhigh.txt", "dokuhigh.zip"); dumpColorMap("misa.txt", "misa.zip"); dumpColorMap("sphax.txt", "sphax.zip"); + dumpColorMap("ovocean.txt", "ovocean.zip"); + dumpColorMap("flames.txt", "standard"); // No TP around for this + dumpColorMap("sk89q.txt", "standard"); // No TP around for this + dumpColorMap("amidst.txt", "standard"); // No TP around for this } if (configuration.getBoolean("dumpBlockState", false)) { @@ -722,7 +727,7 @@ public class DynmapCore implements DynmapCommonAPI { BlockStep.Y_PLUS.ordinal(), BlockStep.X_MINUS.ordinal(), BlockStep.Z_MINUS.ordinal() }; FileWriter fw = null; try { - fw = new FileWriter(id); + fw = new FileWriter(new File(new File(getDataFolder(), "colorschemes"), id)); TexturePack tp = TexturePack.getTexturePack(this, name); if (tp == null) return; tp = tp.resampleTexturePack(1); @@ -745,13 +750,13 @@ public class DynmapCore implements DynmapCommonAPI { switch(idx) { case 1: // grass case 18: // grass - Log.info("Used grass for " + blk); + Log.verboseinfo("Used grass for " + blk); c.blendColor(tp.getTrivialGrassMultiplier() | 0xFF000000); break; case 2: // foliage case 19: // foliage case 22: // foliage - Log.info("Used foliage for " + blk); + Log.verboseinfo("Used foliage for " + blk); c.blendColor(tp.getTrivialFoliageMultiplier() | 0xFF000000); break; case 13: // pine @@ -765,12 +770,12 @@ public class DynmapCore implements DynmapCommonAPI { break; case 3: // water case 20: // water - Log.info("Used water for " + blk); + Log.verboseinfo("Used water for " + blk); c.blendColor(tp.getTrivialWaterMultiplier() | 0xFF000000); break; case 12: // clear inside if (blk.isWater()) { // special case for water - Log.info("Used water for " + blk); + Log.verboseinfo("Used water for " + blk); c.blendColor(tp.getTrivialWaterMultiplier() | 0xFF000000); } break; @@ -804,6 +809,7 @@ public class DynmapCore implements DynmapCommonAPI { } catch (IOException iox) { } finally { if (fw != null) { try { fw.close(); } catch (IOException x) {} } + Log.info("Dumped RP=" + name + " to " + id); } } diff --git a/DynmapCore/src/main/java/org/dynmap/hdmap/TexturePack.java b/DynmapCore/src/main/java/org/dynmap/hdmap/TexturePack.java index c3afd97c..2eafb690 100644 --- a/DynmapCore/src/main/java/org/dynmap/hdmap/TexturePack.java +++ b/DynmapCore/src/main/java/org/dynmap/hdmap/TexturePack.java @@ -808,7 +808,12 @@ public class TexturePack { */ private void copySubimageFromImage(int img_id, int from_x, int from_y, int to_x, int to_y, int width, int height, int[] dest_argb, int dest_width) { for(int h = 0; h < height; h++) { - System.arraycopy(imgs[img_id].argb, (h+from_y)*imgs[img_id].width + from_x, dest_argb, dest_width*(h+to_y) + to_x, width); + try { + System.arraycopy(imgs[img_id].argb, (h+from_y)*imgs[img_id].width + from_x, dest_argb, dest_width*(h+to_y) + to_x, width); + } catch (ArrayIndexOutOfBoundsException aoobx) { + Log.warning(String.format("Error copying subimage: img_id=%s, from=%d,%s, to=%d,%d, size=%d,%d, dest=%d,%d", + imgs[img_id].fname, from_x, from_y, to_x, to_y, width, height, dest_width, dest_argb.length / dest_width)); + } } } /** diff --git a/DynmapCore/src/main/resources/extracted/colorschemes/amidst.txt b/DynmapCore/src/main/resources/extracted/colorschemes/amidst.txt index c5a915f6..96c3a570 100644 --- a/DynmapCore/src/main/resources/extracted/colorschemes/amidst.txt +++ b/DynmapCore/src/main/resources/extracted/colorschemes/amidst.txt @@ -1,683 +1,19769 @@ -1 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 -2 69 110 51 255 55 88 40 255 34 55 25 255 27 44 20 255 -3 134 96 67 255 107 76 53 255 67 48 33 255 53 38 26 255 -3:2 90 63 28 255 72 50 22 255 45 31 14 255 36 25 11 255 -4 122 122 122 255 97 97 97 255 61 61 61 255 48 48 48 255 -5 156 127 78 255 124 101 62 255 78 63 39 255 62 50 31 255 -5:1 103 77 46 255 82 61 36 255 51 38 23 255 41 30 18 255 -5:2 195 179 123 255 156 143 98 255 97 89 61 255 78 71 49 255 -5:3 154 110 77 255 123 88 61 255 77 55 38 255 61 44 30 255 -5:4 169 91 51 255 135 72 40 255 84 45 25 255 67 36 20 255 -5:5 61 39 18 255 48 31 14 255 30 19 9 255 24 15 7 255 -6 71 102 37 107 56 81 29 107 35 51 18 107 28 40 14 107 -6:1 51 58 33 83 40 46 26 83 25 29 16 83 20 23 13 83 -6:2 118 150 84 107 94 120 67 107 59 75 42 107 47 60 33 107 -6:3 48 86 18 85 38 68 14 85 24 43 9 85 19 34 7 85 -6:4 114 115 20 75 91 92 16 75 57 57 10 75 45 46 8 75 -6:5 56 86 28 100 44 68 22 100 28 43 14 100 22 34 11 100 -6:9 51 58 33 83 40 46 26 83 25 29 16 83 20 23 13 83 -6:10 118 150 84 107 94 120 67 107 59 75 42 107 47 60 33 107 -6:11 48 86 18 85 38 68 14 85 24 43 9 85 19 34 7 85 -6:12 114 115 20 75 91 92 16 75 57 57 10 75 45 46 8 75 -6:13 56 86 28 100 44 68 22 100 28 43 14 100 22 34 11 100 -7 83 83 83 255 66 66 66 255 41 41 41 255 33 33 33 255 -8 49 72 244 175 39 57 195 175 24 36 122 175 19 28 97 175 -9 47 67 244 179 37 53 195 179 23 33 122 179 18 26 97 179 -9:1 49 72 244 175 39 57 195 175 24 36 122 175 19 28 97 175 -9:2 49 72 244 175 39 57 195 175 24 36 122 175 19 28 97 175 -9:3 49 72 244 175 39 57 195 175 24 36 122 175 19 28 97 175 -9:4 49 72 244 175 39 57 195 175 24 36 122 175 19 28 97 175 -9:5 49 72 244 175 39 57 195 175 24 36 122 175 19 28 97 175 -9:6 49 72 244 175 39 57 195 175 24 36 122 175 19 28 97 175 -9:7 49 72 244 175 39 57 195 175 24 36 122 175 19 28 97 175 -10 207 91 20 255 165 72 16 255 103 45 10 255 82 36 8 255 -11 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 -12 219 211 160 255 175 168 128 255 109 105 80 255 87 84 64 255 -12:1 169 88 33 255 135 70 26 255 84 44 16 255 67 35 13 255 -13 126 124 122 255 100 99 97 255 63 62 61 255 50 49 48 255 -14 143 139 124 255 114 111 99 255 71 69 62 255 57 55 49 255 -15 135 130 126 255 108 104 100 255 67 65 63 255 54 52 50 255 -16 115 115 115 255 92 92 92 255 57 57 57 255 46 46 46 255 -17 154 125 77 255 123 100 61 255 77 62 38 255 61 50 30 255 -17:1 104 81 48 255 83 64 38 255 52 40 24 255 41 32 19 255 -17:2 184 166 121 255 147 132 96 255 92 83 60 255 73 66 48 255 -17:3 153 118 73 255 122 94 58 255 76 59 36 255 61 47 29 255 -17:4 102 81 49 255 81 64 39 255 51 40 24 255 40 32 19 255 -17:5 45 28 12 255 36 22 9 255 22 14 6 255 18 11 4 255 -17:6 206 206 201 255 164 164 160 255 103 103 100 255 82 82 80 255 -17:7 87 67 26 255 69 53 20 255 43 33 13 255 34 26 10 255 -17:8 102 81 49 255 81 64 39 255 51 40 24 255 40 32 19 255 -17:9 45 28 12 255 36 22 9 255 22 14 6 255 18 11 4 255 -17:10 206 206 201 255 164 164 160 255 103 103 100 255 82 82 80 255 -17:11 87 67 26 255 69 53 20 255 43 33 13 255 34 26 10 255 -17:12 102 81 49 255 81 64 39 255 51 40 24 255 40 32 19 255 -17:13 45 28 12 255 36 22 9 255 22 14 6 255 18 11 4 255 -17:14 206 206 201 255 164 164 160 255 103 103 100 255 82 82 80 255 -17:15 87 67 26 255 69 53 20 255 43 33 13 255 34 26 10 255 -18 47 92 25 154 37 73 20 154 23 46 12 154 18 36 10 154 -18:1 44 69 44 0 35 55 35 0 22 34 22 0 17 27 17 0 -18:2 67 88 45 0 53 70 36 0 33 44 22 0 26 35 18 0 -18:3 50 96 25 201 40 76 20 201 25 48 12 201 20 38 10 201 -18:5 44 69 44 0 35 55 35 0 22 34 22 0 17 27 17 0 -18:6 67 88 45 0 53 70 36 0 33 44 22 0 26 35 18 0 -18:7 50 96 25 201 40 76 20 201 25 48 12 201 20 38 10 201 -18:9 44 69 44 0 35 55 35 0 22 34 22 0 17 27 17 0 -18:10 67 88 45 0 53 70 36 0 33 44 22 0 26 35 18 0 -18:11 50 96 25 201 40 76 20 201 25 48 12 201 20 38 10 201 -18:13 44 69 44 0 35 55 35 0 22 34 22 0 17 27 17 0 -18:14 67 88 45 0 53 70 36 0 33 44 22 0 26 35 18 0 -18:15 50 96 25 201 40 76 20 201 25 48 12 201 20 38 10 201 -19 182 182 57 255 145 145 45 255 91 91 28 255 72 72 22 255 -20 218 240 244 70 174 192 195 70 109 120 122 70 87 96 97 70 -21 102 112 134 255 81 89 107 255 51 56 67 255 40 44 53 255 -22 38 67 137 255 30 53 109 255 19 33 68 255 15 26 54 255 -23 96 96 96 255 76 76 76 255 48 48 48 255 38 38 38 255 -23:1 86 86 86 255 68 68 68 255 43 43 43 255 34 34 34 255 -23:9 86 86 86 255 68 68 68 255 43 43 43 255 34 34 34 255 -24 218 210 158 255 174 168 126 255 109 105 79 255 87 84 63 255 -25 100 67 50 255 80 53 40 255 50 33 25 255 40 26 20 255 -26 142 22 22 255 113 17 17 255 71 11 11 255 56 8 8 255 -26:8 175 116 116 255 140 92 92 255 87 58 58 255 70 46 46 255 -26:9 175 116 116 255 140 92 92 255 87 58 58 255 70 46 46 255 -26:10 175 116 116 255 140 92 92 255 87 58 58 255 70 46 46 255 -26:11 175 116 116 255 140 92 92 255 87 58 58 255 70 46 46 255 -27 132 108 72 171 105 86 57 171 66 54 36 171 52 43 28 171 -27:8 154 104 70 171 123 83 56 171 77 52 35 171 61 41 28 171 -27:9 154 104 70 171 123 83 56 171 77 52 35 171 61 41 28 171 -27:10 154 104 70 171 123 83 56 171 77 52 35 171 61 41 28 171 -27:11 154 104 70 171 123 83 56 171 77 52 35 171 61 41 28 171 -27:12 154 104 70 171 123 83 56 171 77 52 35 171 61 41 28 171 -27:13 154 104 70 171 123 83 56 171 77 52 35 171 61 41 28 171 -28 120 101 89 155 96 80 71 155 60 50 44 155 48 40 35 155 -29 96 96 96 255 76 76 76 255 48 48 48 255 38 38 38 255 -29:1 141 146 99 255 112 116 79 255 70 73 49 255 56 58 39 255 -29:2 106 102 95 255 84 81 76 255 53 51 47 255 42 40 38 255 -29:3 106 102 95 255 84 81 76 255 53 51 47 255 42 40 38 255 -29:4 106 102 95 255 84 81 76 255 53 51 47 255 42 40 38 255 -29:5 106 102 95 255 84 81 76 255 53 51 47 255 42 40 38 255 -29:10 97 96 94 207 77 76 75 207 48 48 47 207 38 38 37 207 -29:11 97 96 94 207 77 76 75 207 48 48 47 207 38 38 37 207 -29:12 97 96 94 207 77 76 75 207 48 48 47 207 38 38 37 207 -29:13 97 96 94 207 77 76 75 207 48 48 47 207 38 38 37 207 -30 220 220 220 104 176 176 176 104 110 110 110 104 88 88 88 104 -31 123 79 25 81 98 63 20 81 61 39 12 81 49 31 10 81 -31:1 55 87 40 162 44 69 32 162 27 43 20 162 22 34 16 162 -31:2 56 90 42 78 44 72 33 78 28 45 21 78 22 36 16 78 -32 123 79 25 81 98 63 20 81 61 39 12 81 49 31 10 81 -33 96 96 96 255 76 76 76 255 48 48 48 255 38 38 38 255 -33:1 153 129 89 255 122 103 71 255 76 64 44 255 61 51 35 255 -33:2 106 102 95 255 84 81 76 255 53 51 47 255 42 40 38 255 -33:3 106 102 95 255 84 81 76 255 53 51 47 255 42 40 38 255 -33:4 106 102 95 255 84 81 76 255 53 51 47 255 42 40 38 255 -33:5 106 102 95 255 84 81 76 255 53 51 47 255 42 40 38 255 -33:10 97 96 94 207 77 76 75 207 48 48 47 207 38 38 37 207 -33:11 97 96 94 207 77 76 75 207 48 48 47 207 38 38 37 207 -33:12 97 96 94 207 77 76 75 207 48 48 47 207 38 38 37 207 -33:13 97 96 94 207 77 76 75 207 48 48 47 207 38 38 37 207 -34 96 96 96 255 76 76 76 255 48 48 48 255 38 38 38 255 -34:1 153 129 89 255 122 103 71 255 76 64 44 255 61 51 35 255 -34:2 147 129 101 111 117 103 80 111 73 64 50 111 58 51 40 111 -34:3 147 129 101 111 117 103 80 111 73 64 50 111 58 51 40 111 -34:4 147 129 101 111 117 103 80 111 73 64 50 111 58 51 40 111 -34:5 147 129 101 111 117 103 80 111 73 64 50 111 58 51 40 111 -34:9 141 146 99 255 112 116 79 255 70 73 49 255 56 58 39 255 -34:10 147 129 101 111 117 103 80 111 73 64 50 111 58 51 40 111 -34:11 147 129 101 111 117 103 80 111 73 64 50 111 58 51 40 111 -34:12 147 129 101 111 117 103 80 111 73 64 50 111 58 51 40 111 -34:13 147 129 101 111 117 103 80 111 73 64 50 111 58 51 40 111 -35 221 221 221 255 176 176 176 255 110 110 110 255 88 88 88 255 -35:1 219 125 62 255 175 100 49 255 109 62 31 255 87 50 24 255 -35:2 179 80 188 255 143 64 150 255 89 40 94 255 71 32 75 255 -35:3 106 138 201 255 84 110 160 255 53 69 100 255 42 55 80 255 -35:4 177 166 39 255 141 132 31 255 88 83 19 255 70 66 15 255 -35:5 65 174 56 255 52 139 44 255 32 87 28 255 26 69 22 255 -35:6 208 132 153 255 166 105 122 255 104 66 76 255 83 52 61 255 -35:7 64 64 64 255 51 51 51 255 32 32 32 255 25 25 25 255 -35:8 154 161 161 255 123 128 128 255 77 80 80 255 61 64 64 255 -35:9 46 110 137 255 36 88 109 255 23 55 68 255 18 44 54 255 -35:10 126 61 181 255 100 48 144 255 63 30 90 255 50 24 72 255 -35:11 46 56 141 255 36 44 112 255 23 28 70 255 18 22 56 255 -35:12 79 50 31 255 63 40 24 255 39 25 15 255 31 20 12 255 -35:13 53 70 27 255 42 56 21 255 26 35 13 255 21 28 10 255 -35:14 150 52 48 255 120 41 38 255 75 26 24 255 60 20 19 255 -35:15 25 22 22 255 20 17 17 255 12 11 11 255 10 8 8 255 -37 108 162 0 30 86 129 0 30 54 81 0 30 43 64 0 30 -38 100 57 4 34 80 45 3 34 50 28 2 34 40 22 1 34 -38:1 37 152 138 45 29 121 110 45 18 76 69 45 14 60 55 45 -38:2 177 141 211 38 141 112 168 38 88 70 105 38 70 56 84 38 -38:3 162 191 138 42 129 152 110 42 81 95 69 42 64 76 55 42 -38:4 103 135 38 48 82 108 30 48 51 67 19 48 41 54 15 48 -38:5 95 134 32 49 76 107 25 49 47 67 16 49 38 53 12 49 -38:6 94 153 65 48 75 122 52 48 47 76 32 48 37 61 26 48 -38:7 101 150 73 47 80 120 58 47 50 75 36 47 40 60 29 47 -38:8 176 197 139 43 140 157 111 43 88 98 69 43 70 78 55 43 -39 138 105 83 25 110 84 66 25 69 52 41 25 55 42 33 25 -40 195 53 56 33 156 42 44 33 97 26 28 33 78 21 22 33 -41 249 236 78 255 199 188 62 255 124 118 39 255 99 94 31 255 -42 219 219 219 255 175 175 175 255 109 109 109 255 87 87 87 255 -43 159 159 159 255 127 127 127 255 79 79 79 255 63 63 63 255 -43:1 218 210 158 255 174 168 126 255 109 105 79 255 87 84 63 255 -43:2 156 127 78 255 124 101 62 255 78 63 39 255 62 50 31 255 -43:3 122 122 122 255 97 97 97 255 61 61 61 255 48 48 48 255 -43:4 146 99 86 255 116 79 68 255 73 49 43 255 58 39 34 255 -43:5 122 122 122 255 97 97 97 255 61 61 61 255 48 48 48 255 -43:6 44 22 26 255 35 17 20 255 22 11 13 255 17 8 10 255 -43:7 236 233 226 255 188 186 180 255 118 116 113 255 94 93 90 255 -43:9 218 210 158 255 174 168 126 255 109 105 79 255 87 84 63 255 -43:10 156 127 78 255 124 101 62 255 78 63 39 255 62 50 31 255 -43:11 122 122 122 255 97 97 97 255 61 61 61 255 48 48 48 255 -43:12 146 99 86 255 116 79 68 255 73 49 43 255 58 39 34 255 -43:13 122 122 122 255 97 97 97 255 61 61 61 255 48 48 48 255 -43:14 44 22 26 255 35 17 20 255 22 11 13 255 17 8 10 255 -43:15 236 233 226 255 188 186 180 255 118 116 113 255 94 93 90 255 -44 159 159 159 255 127 127 127 255 79 79 79 255 63 63 63 255 -44:1 218 210 158 255 174 168 126 255 109 105 79 255 87 84 63 255 -44:2 156 127 78 255 124 101 62 255 78 63 39 255 62 50 31 255 -44:3 122 122 122 255 97 97 97 255 61 61 61 255 48 48 48 255 -44:4 146 99 86 255 116 79 68 255 73 49 43 255 58 39 34 255 -44:5 122 122 122 255 97 97 97 255 61 61 61 255 48 48 48 255 -44:6 44 22 26 255 35 17 20 255 22 11 13 255 17 8 10 255 -44:7 236 233 226 255 188 186 180 255 118 116 113 255 94 93 90 255 -44:9 218 210 158 255 174 168 126 255 109 105 79 255 87 84 63 255 -44:10 156 127 78 255 124 101 62 255 78 63 39 255 62 50 31 255 -44:11 122 122 122 255 97 97 97 255 61 61 61 255 48 48 48 255 -44:12 146 99 86 255 116 79 68 255 73 49 43 255 58 39 34 255 -44:13 122 122 122 255 97 97 97 255 61 61 61 255 48 48 48 255 -44:14 44 22 26 255 35 17 20 255 22 11 13 255 17 8 10 255 -44:15 236 233 226 255 188 186 180 255 118 116 113 255 94 93 90 255 -45 146 99 86 255 116 79 68 255 73 49 43 255 58 39 34 255 -46 130 65 47 255 104 52 37 255 65 32 23 255 52 26 18 255 -47 156 127 78 255 124 101 62 255 78 63 39 255 62 50 31 255 -48 103 121 103 255 82 96 82 255 51 60 51 255 41 48 41 255 -49 20 18 29 255 16 14 23 255 10 9 14 255 8 7 11 255 -50 130 106 58 19 104 84 46 19 65 53 29 19 52 42 23 19 -51 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 -52 26 39 49 155 20 31 39 155 13 19 24 155 10 15 19 155 -53 156 127 78 255 124 101 62 255 78 63 39 255 62 50 31 255 -54 127 92 38 197 101 73 30 197 63 46 19 197 50 36 15 197 -54:4 135 97 37 210 108 77 29 210 67 48 18 210 54 38 14 210 -54:5 135 97 37 210 108 77 29 210 67 48 18 210 54 38 14 210 -54:6 135 97 37 210 108 77 29 210 67 48 18 210 54 38 14 210 -54:7 135 97 37 210 108 77 29 210 67 48 18 210 54 38 14 210 -54:8 134 96 36 210 107 76 28 210 67 48 18 210 53 38 14 210 -54:9 134 96 36 210 107 76 28 210 67 48 18 210 53 38 14 210 -54:10 134 96 36 210 107 76 28 210 67 48 18 210 53 38 14 210 -54:11 134 96 36 210 107 76 28 210 67 48 18 210 53 38 14 210 -55 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 -56 129 140 143 255 103 112 114 255 64 70 71 255 51 56 57 255 -57 97 219 213 255 77 175 170 255 48 109 106 255 38 87 85 255 -58 107 71 42 255 85 56 33 255 53 35 21 255 42 28 16 255 -59 0 179 18 5 0 143 14 5 0 89 9 5 0 71 7 5 -59:1 18 172 15 19 14 137 12 19 9 86 7 19 7 68 6 19 -59:2 28 137 11 43 22 109 8 43 14 68 5 43 11 54 4 43 -59:3 37 139 8 77 29 111 6 77 18 69 4 77 14 55 3 77 -59:4 46 128 7 103 36 102 5 103 23 64 3 103 18 51 2 103 -59:5 66 123 7 128 52 98 5 128 33 61 3 128 26 49 2 128 -59:6 80 118 7 142 64 94 5 142 40 59 3 142 32 47 2 142 -59:7 86 102 7 166 68 81 5 166 43 51 3 166 34 40 2 166 -59:8 86 102 7 166 68 81 5 166 43 51 3 166 34 40 2 166 -59:9 86 102 7 166 68 81 5 166 43 51 3 166 34 40 2 166 -59:10 86 102 7 166 68 81 5 166 43 51 3 166 34 40 2 166 -59:11 86 102 7 166 68 81 5 166 43 51 3 166 34 40 2 166 -59:12 86 102 7 166 68 81 5 166 43 51 3 166 34 40 2 166 -59:13 86 102 7 166 68 81 5 166 43 51 3 166 34 40 2 166 -59:14 86 102 7 166 68 81 5 166 43 51 3 166 34 40 2 166 -59:15 86 102 7 166 68 81 5 166 43 51 3 166 34 40 2 166 -60 115 75 45 255 92 60 36 255 57 37 22 255 46 30 18 255 -60:1 75 40 13 255 60 32 10 255 37 20 6 255 30 16 5 255 -60:2 75 40 13 255 60 32 10 255 37 20 6 255 30 16 5 255 -60:3 75 40 13 255 60 32 10 255 37 20 6 255 30 16 5 255 -60:4 75 40 13 255 60 32 10 255 37 20 6 255 30 16 5 255 -60:5 75 40 13 255 60 32 10 255 37 20 6 255 30 16 5 255 -60:6 75 40 13 255 60 32 10 255 37 20 6 255 30 16 5 255 -60:7 75 40 13 255 60 32 10 255 37 20 6 255 30 16 5 255 -60:8 75 40 13 255 60 32 10 255 37 20 6 255 30 16 5 255 -60:9 75 40 13 255 60 32 10 255 37 20 6 255 30 16 5 255 -60:10 75 40 13 255 60 32 10 255 37 20 6 255 30 16 5 255 -60:11 75 40 13 255 60 32 10 255 37 20 6 255 30 16 5 255 -60:12 75 40 13 255 60 32 10 255 37 20 6 255 30 16 5 255 -60:13 75 40 13 255 60 32 10 255 37 20 6 255 30 16 5 255 -60:14 75 40 13 255 60 32 10 255 37 20 6 255 30 16 5 255 -60:15 75 40 13 255 60 32 10 255 37 20 6 255 30 16 5 255 -61:2 96 96 96 255 76 76 76 255 48 48 48 255 38 38 38 255 -61:3 96 96 96 255 76 76 76 255 48 48 48 255 38 38 38 255 -61:4 96 96 96 255 76 76 76 255 48 48 48 255 38 38 38 255 -61:5 96 96 96 255 76 76 76 255 48 48 48 255 38 38 38 255 -62:2 96 96 96 255 76 76 76 255 48 48 48 255 38 38 38 255 -62:3 96 96 96 255 76 76 76 255 48 48 48 255 38 38 38 255 -62:4 96 96 96 255 76 76 76 255 48 48 48 255 38 38 38 255 -62:5 96 96 96 255 76 76 76 255 48 48 48 255 38 38 38 255 -63 160 130 80 10 128 104 64 10 80 65 40 10 64 52 32 10 -64 134 101 50 255 107 80 40 255 67 50 25 255 53 40 20 255 -64:8 134 103 51 207 107 82 40 207 67 51 25 207 53 41 20 207 -64:9 134 103 51 207 107 82 40 207 67 51 25 207 53 41 20 207 -64:10 134 103 51 207 107 82 40 207 67 51 25 207 53 41 20 207 -64:11 134 103 51 207 107 82 40 207 67 51 25 207 53 41 20 207 -64:12 134 103 51 207 107 82 40 207 67 51 25 207 53 41 20 207 -64:13 134 103 51 207 107 82 40 207 67 51 25 207 53 41 20 207 -64:14 134 103 51 207 107 82 40 207 67 51 25 207 53 41 20 207 -64:15 134 103 51 207 107 82 40 207 67 51 25 207 53 41 20 207 -65 121 95 52 143 96 76 41 143 60 47 26 143 48 38 20 143 -66 121 108 88 143 96 86 70 143 60 54 44 143 48 43 35 143 -66:6 120 107 86 107 96 85 68 107 60 53 43 107 48 42 34 107 -66:7 120 107 86 107 96 85 68 107 60 53 43 107 48 42 34 107 -66:8 120 107 86 107 96 85 68 107 60 53 43 107 48 42 34 107 -66:9 120 107 86 107 96 85 68 107 60 53 43 107 48 42 34 107 -67 122 122 122 255 97 97 97 255 61 61 61 255 48 48 48 255 -68 160 130 80 10 128 104 64 10 80 65 40 10 64 52 32 10 -69 122 122 122 255 97 97 97 255 61 61 61 255 48 48 48 255 -70 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 -71 163 163 163 255 130 130 130 255 81 81 81 255 65 65 65 255 -71:8 186 186 186 207 148 148 148 207 93 93 93 207 74 74 74 207 -71:9 186 186 186 207 148 148 148 207 93 93 93 207 74 74 74 207 -71:10 186 186 186 207 148 148 148 207 93 93 93 207 74 74 74 207 -71:11 186 186 186 207 148 148 148 207 93 93 93 207 74 74 74 207 -71:12 186 186 186 207 148 148 148 207 93 93 93 207 74 74 74 207 -71:13 186 186 186 207 148 148 148 207 93 93 93 207 74 74 74 207 -71:14 186 186 186 207 148 148 148 207 93 93 93 207 74 74 74 207 -71:15 186 186 186 207 148 148 148 207 93 93 93 207 74 74 74 207 -72 156 127 78 255 124 101 62 255 78 63 39 255 62 50 31 255 -73 132 107 107 255 105 85 85 255 66 53 53 255 52 42 42 255 -74 132 107 107 255 105 85 85 255 66 53 53 255 52 42 42 255 -75:1 93 62 38 19 74 49 30 19 46 31 19 19 37 24 15 19 -75:2 93 62 38 19 74 49 30 19 46 31 19 19 37 24 15 19 -75:3 93 62 38 19 74 49 30 19 46 31 19 19 37 24 15 19 -75:4 93 62 38 19 74 49 30 19 46 31 19 19 37 24 15 19 -75:5 93 62 38 19 74 49 30 19 46 31 19 19 37 24 15 19 -76:1 167 75 41 25 133 60 32 25 83 37 20 25 66 30 16 25 -76:2 167 75 41 25 133 60 32 25 83 37 20 25 66 30 16 25 -76:3 167 75 41 25 133 60 32 25 83 37 20 25 66 30 16 25 -76:4 167 75 41 25 133 60 32 25 83 37 20 25 66 30 16 25 -76:5 167 75 41 25 133 60 32 25 83 37 20 25 66 30 16 25 -77 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 -78 239 251 251 255 191 200 200 255 119 125 125 255 95 100 100 255 -79 125 173 255 159 100 138 204 159 62 86 127 159 50 69 102 159 -80 239 251 251 255 191 200 200 255 119 125 125 255 95 100 100 255 -81 13 99 24 195 10 79 19 195 6 49 12 195 5 39 9 195 -82 158 164 176 255 126 131 140 255 79 82 88 255 63 65 70 255 -83 148 192 101 140 118 153 80 140 74 96 50 140 59 76 40 140 -84 107 73 55 255 85 58 44 255 53 36 27 255 42 29 22 255 -85 156 127 78 255 124 101 62 255 78 63 39 255 62 50 31 255 -86 192 118 21 255 153 94 16 255 96 59 10 255 76 47 8 255 -87 111 54 52 255 88 43 41 255 55 27 26 255 44 21 20 255 -88 84 64 51 255 67 51 40 255 42 32 25 255 33 25 20 255 -89 143 118 69 255 114 94 55 255 71 59 34 255 57 47 27 255 -90 91 13 193 192 72 10 154 192 45 6 96 192 36 5 77 192 -91 192 118 21 255 153 94 16 255 96 59 10 255 76 47 8 255 -92 228 205 206 195 182 164 164 195 114 102 103 195 91 82 82 195 -93 151 147 147 255 120 117 117 255 75 73 73 255 60 58 58 255 -94 160 147 147 255 128 117 117 255 80 73 73 255 64 58 58 255 -95 255 255 255 123 204 204 204 123 127 127 127 123 102 102 102 123 -95:1 216 127 51 123 172 101 40 123 108 63 25 123 86 50 20 123 -95:2 178 76 216 123 142 60 172 123 89 38 108 123 71 30 86 123 -95:3 102 153 216 123 81 122 172 123 51 76 108 123 40 61 86 123 -95:4 229 229 51 123 183 183 40 123 114 114 25 123 91 91 20 123 -95:5 127 204 25 123 101 163 20 123 63 102 12 123 50 81 10 123 -95:6 242 127 165 123 193 101 132 123 121 63 82 123 96 50 66 123 -95:7 76 76 76 123 60 60 60 123 38 38 38 123 30 30 30 123 -95:8 153 153 153 123 122 122 122 123 76 76 76 123 61 61 61 123 -95:9 76 127 153 123 60 101 122 123 38 63 76 123 30 50 61 123 -95:10 127 63 178 123 101 50 142 123 63 31 89 123 50 25 71 123 -95:11 51 76 178 123 40 60 142 123 25 38 89 123 20 30 71 123 -95:12 102 76 51 123 81 60 40 123 51 38 25 123 40 30 20 123 -95:13 102 127 51 123 81 101 40 123 51 63 25 123 40 50 20 123 -95:14 153 51 51 123 122 40 40 123 76 25 25 123 61 20 20 123 -95:15 25 25 25 123 20 20 20 123 12 12 12 123 10 10 10 123 -96 126 93 45 219 100 74 36 219 63 46 22 219 50 37 18 219 -97 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 -97:1 122 122 122 255 97 97 97 255 61 61 61 255 48 48 48 255 -97:2 122 122 122 255 97 97 97 255 61 61 61 255 48 48 48 255 -98 122 122 122 255 97 97 97 255 61 61 61 255 48 48 48 255 -98:1 114 119 106 255 91 95 84 255 57 59 53 255 45 47 42 255 -98:2 118 118 118 255 94 94 94 255 59 59 59 255 47 47 47 255 -98:3 118 118 118 255 94 94 94 255 59 59 59 255 47 47 47 255 -99 202 171 120 255 161 136 96 255 101 85 60 255 80 68 48 255 -99:1 141 106 83 255 112 84 66 255 70 53 41 255 56 42 33 255 -99:2 141 106 83 255 112 84 66 255 70 53 41 255 56 42 33 255 -99:3 141 106 83 255 112 84 66 255 70 53 41 255 56 42 33 255 -99:4 141 106 83 255 112 84 66 255 70 53 41 255 56 42 33 255 -99:5 141 106 83 255 112 84 66 255 70 53 41 255 56 42 33 255 -99:6 141 106 83 255 112 84 66 255 70 53 41 255 56 42 33 255 -99:7 141 106 83 255 112 84 66 255 70 53 41 255 56 42 33 255 -99:8 141 106 83 255 112 84 66 255 70 53 41 255 56 42 33 255 -99:9 141 106 83 255 112 84 66 255 70 53 41 255 56 42 33 255 -99:14 141 106 83 255 112 84 66 255 70 53 41 255 56 42 33 255 -99:15 207 204 194 255 165 163 155 255 103 102 97 255 82 81 77 255 -100 202 171 120 255 161 136 96 255 101 85 60 255 80 68 48 255 -100:1 182 37 36 255 145 29 28 255 91 18 18 255 72 14 14 255 -100:2 182 37 36 255 145 29 28 255 91 18 18 255 72 14 14 255 -100:3 182 37 36 255 145 29 28 255 91 18 18 255 72 14 14 255 -100:4 182 37 36 255 145 29 28 255 91 18 18 255 72 14 14 255 -100:5 182 37 36 255 145 29 28 255 91 18 18 255 72 14 14 255 -100:6 182 37 36 255 145 29 28 255 91 18 18 255 72 14 14 255 -100:7 182 37 36 255 145 29 28 255 91 18 18 255 72 14 14 255 -100:8 182 37 36 255 145 29 28 255 91 18 18 255 72 14 14 255 -100:9 182 37 36 255 145 29 28 255 91 18 18 255 72 14 14 255 -100:14 182 37 36 255 145 29 28 255 91 18 18 255 72 14 14 255 -100:15 207 204 194 255 165 163 155 255 103 102 97 255 82 81 77 255 -101 109 108 106 115 87 86 84 115 54 54 53 115 43 43 42 115 -102 218 240 244 70 174 192 195 70 109 120 122 70 87 96 97 70 -103 151 153 36 255 120 122 28 255 75 76 18 255 60 61 14 255 -104 72 115 54 34 57 92 43 34 36 57 27 34 28 46 21 34 -105 72 115 54 34 57 92 43 34 36 57 27 34 28 46 21 34 -106 38 75 20 138 30 60 16 138 19 37 10 138 15 30 8 138 -107 156 127 78 255 124 101 62 255 78 63 39 255 62 50 31 255 -108 146 99 86 255 116 79 68 255 73 49 43 255 58 39 34 255 -109 122 122 122 255 97 97 97 255 61 61 61 255 48 48 48 255 -110 111 99 105 255 88 79 84 255 55 49 52 255 44 39 42 255 -111 14 59 22 0 11 47 17 0 7 29 11 0 5 23 8 0 -112 44 22 26 255 35 17 20 255 22 11 13 255 17 8 10 255 -113 44 22 26 255 35 17 20 255 22 11 13 255 17 8 10 255 -114 44 22 26 255 35 17 20 255 22 11 13 255 17 8 10 255 -115 106 14 30 42 84 11 24 42 53 7 15 42 42 5 12 42 -115:1 108 15 22 120 86 12 17 120 54 7 11 120 43 6 8 120 -115:2 108 15 22 120 86 12 17 120 54 7 11 120 43 6 8 120 -115:3 111 18 17 204 88 14 13 204 55 9 8 204 44 7 6 204 -115:4 111 18 17 204 88 14 13 204 55 9 8 204 44 7 6 204 -115:5 111 18 17 204 88 14 13 204 55 9 8 204 44 7 6 204 -115:6 111 18 17 204 88 14 13 204 55 9 8 204 44 7 6 204 -115:7 111 18 17 204 88 14 13 204 55 9 8 204 44 7 6 204 -116 103 64 59 255 82 51 47 255 51 32 29 255 41 25 23 255 -117 124 103 81 118 99 82 64 118 62 51 40 118 49 41 32 118 -118 69 69 69 111 55 55 55 111 34 34 34 111 27 27 27 111 -119 20 18 29 255 16 14 23 255 10 9 14 255 8 7 11 255 -120 89 117 96 255 71 93 76 255 44 58 48 255 35 46 38 255 -120:4 40 72 67 95 32 57 53 95 20 36 33 95 16 28 26 95 -120:5 40 72 67 95 32 57 53 95 20 36 33 95 16 28 26 95 -120:6 40 72 67 95 32 57 53 95 20 36 33 95 16 28 26 95 -120:7 40 72 67 95 32 57 53 95 20 36 33 95 16 28 26 95 -121 221 223 165 255 176 178 132 255 110 111 82 255 88 89 66 255 -122 12 9 15 255 9 7 12 255 6 4 7 255 4 3 6 255 -123 70 43 26 255 56 34 20 255 35 21 13 255 28 17 10 255 -124 119 89 55 255 95 71 44 255 59 44 27 255 47 35 22 255 -125 156 127 78 255 124 101 62 255 78 63 39 255 62 50 31 255 -125:1 103 77 46 255 82 61 36 255 51 38 23 255 41 30 18 255 -125:2 195 179 123 255 156 143 98 255 97 89 61 255 78 71 49 255 -125:3 154 110 77 255 123 88 61 255 77 55 38 255 61 44 30 255 -125:4 169 91 51 255 135 72 40 255 84 45 25 255 67 36 20 255 -125:5 61 39 18 255 48 31 14 255 30 19 9 255 24 15 7 255 -125:9 103 77 46 255 82 61 36 255 51 38 23 255 41 30 18 255 -125:10 195 179 123 255 156 143 98 255 97 89 61 255 78 71 49 255 -125:11 154 110 77 255 123 88 61 255 77 55 38 255 61 44 30 255 -125:12 169 91 51 255 135 72 40 255 84 45 25 255 67 36 20 255 -125:13 61 39 18 255 48 31 14 255 30 19 9 255 24 15 7 255 -126 156 127 78 255 124 101 62 255 78 63 39 255 62 50 31 255 -126:1 103 77 46 255 82 61 36 255 51 38 23 255 41 30 18 255 -126:2 195 179 123 255 156 143 98 255 97 89 61 255 78 71 49 255 -126:3 154 110 77 255 123 88 61 255 77 55 38 255 61 44 30 255 -126:4 169 91 51 255 135 72 40 255 84 45 25 255 67 36 20 255 -126:5 61 39 18 255 48 31 14 255 30 19 9 255 24 15 7 255 -126:9 103 77 46 255 82 61 36 255 51 38 23 255 41 30 18 255 -126:10 195 179 123 255 156 143 98 255 97 89 61 255 78 71 49 255 -126:11 154 110 77 255 123 88 61 255 77 55 38 255 61 44 30 255 -126:12 169 91 51 255 135 72 40 255 84 45 25 255 67 36 20 255 -126:13 61 39 18 255 48 31 14 255 30 19 9 255 24 15 7 255 -127 145 80 30 131 116 64 24 131 72 40 15 131 58 32 12 131 -128 216 209 157 255 172 167 125 255 108 104 78 255 86 83 62 255 -129 109 128 116 255 87 102 92 255 54 64 58 255 43 51 46 255 -130:2 43 60 61 197 34 48 48 197 21 30 30 197 17 24 24 197 -130:3 43 60 61 197 34 48 48 197 21 30 30 197 17 24 24 197 -130:4 43 60 61 197 34 48 48 197 21 30 30 197 17 24 24 197 -130:5 43 60 61 197 34 48 48 197 21 30 30 197 17 24 24 197 -131 122 122 122 255 97 97 97 255 61 61 61 255 48 48 48 255 -133 81 217 117 255 64 173 93 255 40 108 58 255 32 86 46 255 -134 103 77 46 255 82 61 36 255 51 38 23 255 41 30 18 255 -135 195 179 123 255 156 143 98 255 97 89 61 255 78 71 49 255 -136 154 110 77 255 123 88 61 255 77 55 38 255 61 44 30 255 -137 178 137 111 255 142 109 88 255 89 68 55 255 71 54 44 255 -138 218 240 244 70 174 192 195 70 109 120 122 70 87 96 97 70 -139 122 122 122 255 97 97 97 255 61 61 61 255 48 48 48 255 -139:1 103 121 103 255 82 96 82 255 51 60 51 255 41 48 41 255 -140 118 65 51 49 94 52 40 49 59 32 25 49 47 26 20 49 -141 1 171 16 9 0 136 12 9 0 85 8 9 0 68 6 9 -141:2 1 187 15 23 0 149 12 23 0 93 7 23 0 74 6 23 -141:3 1 187 15 23 0 149 12 23 0 93 7 23 0 74 6 23 -141:4 0 190 16 54 0 152 12 54 0 95 8 54 0 76 6 54 -141:5 0 190 16 54 0 152 12 54 0 95 8 54 0 76 6 54 -141:6 0 190 16 54 0 152 12 54 0 95 8 54 0 76 6 54 -141:7 21 128 2 111 16 102 1 111 10 64 1 111 8 51 0 111 -142 1 171 16 9 0 136 12 9 0 85 8 9 0 68 6 9 -142:2 1 187 15 23 0 149 12 23 0 93 7 23 0 74 6 23 -142:3 1 187 15 23 0 149 12 23 0 93 7 23 0 74 6 23 -142:4 0 190 16 54 0 152 12 54 0 95 8 54 0 76 6 54 -142:5 0 190 16 54 0 152 12 54 0 95 8 54 0 76 6 54 -142:6 0 190 16 54 0 152 12 54 0 95 8 54 0 76 6 54 -142:7 34 170 36 105 27 136 28 105 17 85 18 105 13 68 14 105 -143 156 127 78 255 124 101 62 255 78 63 39 255 62 50 31 255 -145 64 64 64 255 51 51 51 255 32 32 32 255 25 25 25 255 -146 127 92 38 197 101 73 30 197 63 46 19 197 50 36 15 197 -146:4 135 97 37 210 108 77 29 210 67 48 18 210 54 38 14 210 -146:5 135 97 37 210 108 77 29 210 67 48 18 210 54 38 14 210 -146:6 135 97 37 210 108 77 29 210 67 48 18 210 54 38 14 210 -146:7 135 97 37 210 108 77 29 210 67 48 18 210 54 38 14 210 -146:8 134 96 36 210 107 76 28 210 67 48 18 210 53 38 14 210 -146:9 134 96 36 210 107 76 28 210 67 48 18 210 53 38 14 210 -146:10 134 96 36 210 107 76 28 210 67 48 18 210 53 38 14 210 -146:11 134 96 36 210 107 76 28 210 67 48 18 210 53 38 14 210 -147 249 236 78 255 199 188 62 255 124 118 39 255 99 94 31 255 -148 219 219 219 255 175 175 175 255 109 109 109 255 87 87 87 255 -149 156 150 149 255 124 120 119 255 78 75 74 255 62 60 59 255 -150 165 149 148 255 132 119 118 255 82 74 74 255 66 59 59 255 -151 130 116 94 255 104 92 75 255 65 58 47 255 52 46 37 255 -152 171 27 9 255 136 21 7 255 85 13 4 255 68 10 3 255 -153 125 84 79 255 100 67 63 255 62 42 39 255 50 33 31 255 -154 55 55 55 255 44 44 44 255 27 27 27 255 22 22 22 255 -155 236 233 226 255 188 186 180 255 118 116 113 255 94 93 90 255 -155:1 231 228 219 255 184 182 175 255 115 114 109 255 92 91 87 255 -155:2 232 229 221 255 185 183 176 255 116 114 110 255 92 91 88 255 -155:3 231 227 219 255 184 181 175 255 115 113 109 255 92 90 87 255 -155:4 231 227 219 255 184 181 175 255 115 113 109 255 92 90 87 255 -156 236 233 226 255 188 186 180 255 118 116 113 255 94 93 90 255 -157 104 83 71 155 83 66 56 155 52 41 35 155 41 33 28 155 -157:8 141 81 70 155 112 64 56 155 70 40 35 155 56 32 28 155 -157:9 141 81 70 155 112 64 56 155 70 40 35 155 56 32 28 155 -157:10 141 81 70 155 112 64 56 155 70 40 35 155 56 32 28 155 -157:11 141 81 70 155 112 64 56 155 70 40 35 155 56 32 28 155 -157:12 141 81 70 155 112 64 56 155 70 40 35 155 56 32 28 155 -157:13 141 81 70 155 112 64 56 155 70 40 35 155 56 32 28 155 -158 96 96 96 255 76 76 76 255 48 48 48 255 38 38 38 255 -158:1 86 86 86 255 68 68 68 255 43 43 43 255 34 34 34 255 -159 209 178 161 255 167 142 128 255 104 89 80 255 83 71 64 255 -159:1 161 83 37 255 128 66 29 255 80 41 18 255 64 33 14 255 -159:2 149 88 108 255 119 70 86 255 74 44 54 255 59 35 43 255 -159:3 113 108 137 255 90 86 109 255 56 54 68 255 45 43 54 255 -159:4 186 133 35 255 148 106 28 255 93 66 17 255 74 53 14 255 -159:5 103 117 52 255 82 93 41 255 51 58 26 255 41 46 20 255 -159:6 161 78 78 255 128 62 62 255 80 39 39 255 64 31 31 255 -159:7 57 42 35 255 45 33 28 255 28 21 17 255 22 16 14 255 -159:8 135 106 97 255 108 84 77 255 67 53 48 255 54 42 38 255 -159:9 86 91 91 255 68 72 72 255 43 45 45 255 34 36 36 255 -159:10 118 70 86 255 94 56 68 255 59 35 43 255 47 28 34 255 -159:11 74 59 91 255 59 47 72 255 37 29 45 255 29 23 36 255 -159:12 77 51 35 255 61 40 28 255 38 25 17 255 30 20 14 255 -159:13 76 83 42 255 60 66 33 255 38 41 21 255 30 33 16 255 -159:14 143 61 46 255 114 48 36 255 71 30 23 255 57 24 18 255 -159:15 37 22 16 255 29 17 12 255 18 11 8 255 14 8 6 255 -160 255 255 255 123 204 204 204 123 127 127 127 123 102 102 102 123 -160:1 216 127 51 123 172 101 40 123 108 63 25 123 86 50 20 123 -160:2 178 76 216 123 142 60 172 123 89 38 108 123 71 30 86 123 -160:3 102 153 216 123 81 122 172 123 51 76 108 123 40 61 86 123 -160:4 229 229 51 123 183 183 40 123 114 114 25 123 91 91 20 123 -160:5 127 204 25 123 101 163 20 123 63 102 12 123 50 81 10 123 -160:6 242 127 165 123 193 101 132 123 121 63 82 123 96 50 66 123 -160:7 76 76 76 123 60 60 60 123 38 38 38 123 30 30 30 123 -160:8 153 153 153 123 122 122 122 123 76 76 76 123 61 61 61 123 -160:9 76 127 153 123 60 101 122 123 38 63 76 123 30 50 61 123 -160:10 127 63 178 123 101 50 142 123 63 31 89 123 50 25 71 123 -160:11 51 76 178 123 40 60 142 123 25 38 89 123 20 30 71 123 -160:12 102 76 51 123 81 60 40 123 51 38 25 123 40 30 20 123 -160:13 102 127 51 123 81 101 40 123 51 63 25 123 40 50 20 123 -160:14 153 51 51 123 122 40 40 123 76 25 25 123 61 20 20 123 -160:15 25 25 25 123 20 20 20 123 12 12 12 123 10 10 10 123 -161 47 92 25 154 37 73 20 154 23 46 12 154 18 36 10 154 -162 154 91 64 255 123 72 51 255 77 45 32 255 61 36 25 255 -162:1 104 81 48 255 83 64 38 255 52 40 24 255 41 32 19 255 -162:4 105 99 89 255 84 79 71 255 52 49 44 255 42 39 35 255 -162:5 45 28 12 255 36 22 9 255 22 14 6 255 18 11 4 255 -162:8 105 99 89 255 84 79 71 255 52 49 44 255 42 39 35 255 -162:9 45 28 12 255 36 22 9 255 22 14 6 255 18 11 4 255 -162:12 105 99 89 255 84 79 71 255 52 49 44 255 42 39 35 255 -162:13 45 28 12 255 36 22 9 255 22 14 6 255 18 11 4 255 -163 169 91 51 255 135 72 40 255 84 45 25 255 67 36 20 255 -164 61 39 18 255 48 31 14 255 30 19 9 255 24 15 7 255 -170 168 139 16 255 134 111 12 255 84 69 8 255 67 55 6 255 -171 221 221 221 255 176 176 176 255 110 110 110 255 88 88 88 255 -171:1 219 125 62 255 175 100 49 255 109 62 31 255 87 50 24 255 -171:2 179 80 188 255 143 64 150 255 89 40 94 255 71 32 75 255 -171:3 106 138 201 255 84 110 160 255 53 69 100 255 42 55 80 255 -171:4 177 166 39 255 141 132 31 255 88 83 19 255 70 66 15 255 -171:5 65 174 56 255 52 139 44 255 32 87 28 255 26 69 22 255 -171:6 208 132 153 255 166 105 122 255 104 66 76 255 83 52 61 255 -171:7 64 64 64 255 51 51 51 255 32 32 32 255 25 25 25 255 -171:8 154 161 161 255 123 128 128 255 77 80 80 255 61 64 64 255 -171:9 46 110 137 255 36 88 109 255 23 55 68 255 18 44 54 255 -171:10 126 61 181 255 100 48 144 255 63 30 90 255 50 24 72 255 -171:11 46 56 141 255 36 44 112 255 23 28 70 255 18 22 56 255 -171:12 79 50 31 255 63 40 24 255 39 25 15 255 31 20 12 255 -171:13 53 70 27 255 42 56 21 255 26 35 13 255 21 28 10 255 -171:14 150 52 48 255 120 41 38 255 75 26 24 255 60 20 19 255 -171:15 25 22 22 255 20 17 17 255 12 11 11 255 10 8 8 255 -172 150 92 66 255 120 73 52 255 75 46 33 255 60 36 26 255 -173 18 18 18 255 14 14 14 255 9 9 9 255 7 7 7 255 -174 165 194 245 255 132 155 196 255 82 97 122 255 66 77 98 255 -175 65 109 43 51 52 87 34 51 32 54 21 51 26 43 17 51 -175:1 142 148 132 86 113 118 105 86 71 74 66 86 56 59 52 86 -175:2 57 91 43 138 45 72 34 138 28 45 21 138 22 36 17 138 -175:3 58 92 43 158 46 73 34 158 29 46 21 158 23 36 17 158 -175:4 69 64 3 185 55 51 2 185 34 32 1 185 27 25 1 185 -175:5 54 88 59 147 43 70 47 147 27 44 29 147 21 35 23 147 -175:8 67 111 45 26 53 88 36 26 33 55 22 26 26 44 18 26 -175:9 148 148 140 83 118 118 112 83 74 74 70 83 59 59 56 83 -175:10 61 97 45 92 48 77 36 92 30 48 22 92 24 38 18 92 -175:11 59 94 44 122 47 75 35 122 29 47 22 122 23 37 17 122 -175:12 115 61 7 107 92 48 5 107 57 30 3 107 46 24 2 107 -175:13 132 133 141 129 105 106 112 129 66 66 70 129 52 53 56 129 -178 106 109 112 255 84 87 89 255 53 54 56 255 42 43 44 255 -179 166 85 29 255 132 68 23 255 83 42 14 255 66 34 11 255 -180 165 84 29 255 132 67 23 255 82 42 14 255 66 33 11 255 -181 166 85 29 255 132 68 23 255 83 42 14 255 66 34 11 255 -182 166 85 29 255 132 68 23 255 83 42 14 255 66 34 11 255 -183 103 77 46 255 82 61 36 255 51 38 23 255 41 30 18 255 -184 195 179 123 255 156 143 98 255 97 89 61 255 78 71 49 255 -185 154 110 77 255 123 88 61 255 77 55 38 255 61 44 30 255 -186 61 39 18 255 48 31 14 255 30 19 9 255 24 15 7 255 -187 169 91 51 255 135 72 40 255 84 45 25 255 67 36 20 255 -188 103 77 46 255 82 61 36 255 51 38 23 255 41 30 18 255 -189 195 179 123 255 156 143 98 255 97 89 61 255 78 71 49 255 -190 154 110 77 255 123 88 61 255 77 55 38 255 61 44 30 255 -191 61 39 18 255 48 31 14 255 30 19 9 255 24 15 7 255 -192 169 91 51 255 135 72 40 255 84 45 25 255 67 36 20 255 -193 96 74 49 255 76 59 39 255 48 37 24 255 38 29 19 255 -194 217 210 179 255 173 168 143 255 108 105 89 255 86 84 71 255 -195 151 113 85 207 120 90 68 207 75 56 42 207 60 45 34 207 -196 161 93 58 183 128 74 46 183 80 46 29 183 64 37 23 183 -197 69 47 25 255 55 37 20 255 34 23 12 255 27 18 10 255 - -Biome Mapping -[OCEAN] 0 0 112 255 0 0 112 255 0 0 112 255 0 0 112 255 -[PLAINS] 141 179 96 255 141 179 96 255 141 179 96 255 141 179 96 255 -[DESERT] 250 148 24 255 250 148 24 255 250 148 24 255 250 148 24 255 -[EXTREME_HILLS] 96 96 96 255 96 96 96 255 96 96 96 255 96 96 96 255 -[FOREST] 5 102 33 255 5 102 33 255 5 102 33 255 5 102 33 255 -[TAIGA] 11 102 89 255 11 102 89 255 11 102 89 255 11 102 89 255 -[SWAMPLAND] 7 249 178 255 7 249 178 255 7 249 178 255 7 249 178 255 -[RIVER] 0 0 255 255 0 0 255 255 0 0 255 255 0 0 255 255 -[HELL] 191 59 59 255 191 59 59 255 191 59 59 255 191 59 59 255 -[SKY] 128 128 255 255 128 128 255 255 128 128 255 255 128 128 255 255 -[FROZEN_OCEAN] 112 112 214 255 112 112 214 255 112 112 214 255 112 112 214 255 -[FROZEN_RIVER] 160 160 255 255 160 160 255 255 160 160 255 255 160 160 255 255 -[ICE_PLAINS] 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 -[ICE_MOUNTAINS] 160 160 160 255 160 160 160 255 160 160 160 255 160 160 160 255 -[MUSHROOM_ISLAND] 255 0 255 255 255 0 255 255 255 0 255 255 255 0 255 255 -[MUSHROOM_SHORE] 160 0 255 255 160 0 255 255 160 0 255 255 160 0 255 255 -[BEACH] 250 222 85 255 250 222 85 255 250 222 85 255 250 222 85 255 -[DESERT_HILLS] 210 95 18 255 210 95 18 255 210 95 18 255 210 95 18 255 -[FOREST_HILLS] 34 85 28 255 34 85 28 255 34 85 28 255 34 85 28 255 -[TAIGA_HILLS] 22 57 51 255 22 57 51 255 22 57 51 255 22 57 51 255 -[SMALL_MOUNTAINS] 114 120 154 255 114 120 154 255 114 120 154 255 114 120 154 255 -[JUNGLE] 83 123 9 255 83 123 9 255 83 123 9 255 83 123 9 255 -[JUNGLE_HILLS] 44 66 5 255 44 66 5 255 44 66 5 255 44 66 5 255 -[JUNGLE_EDGE] 98 139 23 255 98 139 23 255 98 139 23 255 98 139 23 255 -[DEEP_OCEAN] 0 0 48 255 0 0 48 255 0 0 48 255 0 0 48 255 -[STONE_BEACH] 162 162 132 255 162 162 132 255 162 162 132 255 162 162 132 255 -[COLD_BEACH] 250 240 192 255 250 240 192 255 250 240 192 255 250 240 192 255 -[BIRCH_FOREST] 48 116 68 255 48 116 68 255 48 116 68 255 48 116 68 255 -[BIRCH_FOREST_HILLS] 31 95 50 255 31 95 50 255 31 95 50 255 31 95 50 255 -[ROOFED_FOREST] 64 81 26 255 64 81 26 255 64 81 26 255 64 81 26 255 -[COLD_TAIGA] 49 85 74 255 49 85 74 255 49 85 74 255 49 85 74 255 -[COLD_TAIGA_HILLS] 36 63 54 255 36 63 54 255 36 63 54 255 36 63 54 255 -[MEGA_TAIGA] 89 102 81 255 89 102 81 255 89 102 81 255 89 102 81 255 -[MEGA_TAIGA_HILLS] 69 79 62 255 69 79 62 255 69 79 62 255 69 79 62 255 -[EXTREME_HILLS_PLUS] 80 112 80 255 80 112 80 255 80 112 80 255 80 112 80 255 -[SAVANNA] 189 178 95 255 189 178 95 255 189 178 95 255 189 178 95 255 -[SAVANNA_PLATEAU] 167 157 100 255 167 157 100 255 167 157 100 255 167 157 100 255 -[MESA] 217 69 21 255 217 69 21 255 217 69 21 255 217 69 21 255 -[MESA_PLATEAU_FOREST] 176 151 101 255 176 151 101 255 176 151 101 255 176 151 101 255 -[MESA_PLATEAU] 202 140 101 255 202 140 101 255 202 140 101 255 202 140 101 255 -[SMALL_END_ISLANDS] 128 128 255 255 128 128 255 255 128 128 255 255 128 128 255 255 -[END_MIDLANDS] 128 128 255 255 128 128 255 255 128 128 255 255 128 128 255 255 -[END_HIGHLANDS] 128 128 255 255 128 128 255 255 128 128 255 255 128 128 255 255 -[END_BARRENS] 128 128 255 255 128 128 255 255 128 128 255 255 128 128 255 255 -[WARM_OCEAN] 0 0 172 255 0 0 172 255 0 0 172 255 0 0 172 255 -[LUKEWARM_OCEAN] 0 0 144 255 0 0 144 255 0 0 144 255 0 0 144 255 -[COLD_OCEAN] 32 32 112 255 32 32 112 255 32 32 112 255 32 32 112 255 -[DEEP_WARM_OCEAN] 0 0 80 255 0 0 80 255 0 0 80 255 0 0 80 255 -[DEEP_LUKEWARM_OCEAN] 0 0 64 255 0 0 64 255 0 0 64 255 0 0 64 255 -[DEEP_COLD_OCEAN] 32 32 56 255 32 32 56 255 32 32 56 255 32 32 56 255 -[DEEP_FROZEN_OCEAN] 64 64 144 255 64 64 144 255 64 64 144 255 64 64 144 255 -[THE_VOID] 0 0 0 255 0 0 0 255 0 0 0 255 0 0 0 255 -[SUNFLOWER_PLAINS] 181 219 136 255 181 219 136 255 181 219 136 255 181 219 136 255 -[DESERT_MOUNTAINS] 255 188 64 255 255 188 64 255 255 188 64 255 255 188 64 255 -[EXTREME_HILLS_MOUNTAINS] 136 136 136 255 136 136 136 255 136 136 136 255 136 136 136 255 -[FLOWER_FOREST] 45 142 73 255 45 142 73 255 45 142 73 255 45 142 73 255 -[TAIGA_MOUNTAINS] 51 142 129 255 51 142 129 255 51 142 129 255 51 142 129 255 -[SWAMPLAND_MOUNTAINS] 47 255 218 255 47 255 218 255 47 255 218 255 47 255 218 255 -[ICE_PLAINS_SPIKES] 180 220 220 255 180 220 220 255 180 220 220 255 180 220 220 255 -[JUNGLE_MOUNTAINS] 123 163 49 255 123 163 49 255 123 163 49 255 123 163 49 255 -[JUNGLE_EDGE_MOUNTAINS] 138 179 63 255 138 179 63 255 138 179 63 255 138 179 63 255 -[BIRCH_FOREST_MOUNTAINS] 88 156 108 255 88 156 108 255 88 156 108 255 88 156 108 255 -[BIRCH_FOREST_HILLS_MOUNTAINS] 71 135 90 255 71 135 90 255 71 135 90 255 71 135 90 255 -[ROOFED_FOREST_MOUNTAINS] 104 121 66 255 104 121 66 255 104 121 66 255 104 121 66 255 -[COLD_TAIGA_MOUNTAINS] 89 125 114 255 89 125 114 255 89 125 114 255 89 125 114 255 -[MEGA_SPRUCE_TAIGA] 129 142 121 255 129 142 121 255 129 142 121 255 129 142 121 255 -[MEGA_SPRUCE_TAIGA_HILLS] 109 119 102 255 109 119 102 255 109 119 102 255 109 119 102 255 -[EXTREME_HILLS_PLUS_MOUNTAINS] 120 152 120 255 120 152 120 255 120 152 120 255 120 152 120 255 -[SAVANNA_MOUNTAINS] 229 218 135 255 229 218 135 255 229 218 135 255 229 218 135 255 -[SAVANNA_PLATEAU_MOUNTAINS] 207 197 140 255 207 197 140 255 207 197 140 255 207 197 140 255 -[MESA_BRYCE] 255 109 61 255 255 109 61 255 255 109 61 255 255 109 61 255 -[MESA_PLATEAU_FOREST_MOUNTAINS] 216 191 141 255 216 191 141 255 216 191 141 255 216 191 141 255 -[MESA_PLATEAU_MOUNTAINS] 242 180 141 255 242 180 141 255 242 180 141 255 242 180 141 255 -[BEACH_MOUNTAINS] 255 255 125 255 255 255 125 255 255 255 125 255 255 255 125 255 -[COLD_BEACH_MOUNTAINS] 255 255 232 255 255 255 232 255 255 255 232 255 255 255 232 255 -[COLD_TAIGA_HILLS_MOUNTAINS] 76 103 94 255 76 103 94 255 76 103 94 255 76 103 94 255 -[DEEP_OCEAN_MOUNTAINS] 40 40 88 255 40 40 88 255 40 40 88 255 40 40 88 255 -[DESERT_HILLS_MOUNTAINS] 250 135 58 255 250 135 58 255 250 135 58 255 250 135 58 255 -[EXTREME_HILLS_EDGE_MOUNTAINS] 154 160 194 255 154 160 194 255 154 160 194 255 154 160 194 255 -[FOREST_HILLS_MOUNTAINS] 74 125 68 255 74 125 68 255 74 125 68 255 74 125 68 255 -[FROZEN_OCEAN_MOUNTAINS] 184 184 200 255 184 184 200 255 184 184 200 255 184 184 200 255 -[FROZEN_RIVER_MOUNTAINS] 200 200 255 255 200 200 255 255 200 200 255 255 200 200 255 255 -[HELL_MOUNTAINS] 255 40 40 255 255 40 40 255 255 40 40 255 255 40 40 255 -[ICE_MOUNTAINS_MOUNTAINS] 200 200 200 255 200 200 200 255 200 200 200 255 200 200 200 255 -[JUNGLE_HILLS_MOUNTAINS] 84 106 45 255 84 106 45 255 84 106 45 255 84 106 45 255 -[MUSHROOM_ISLAND_MOUNTAINS] 255 40 255 255 255 40 255 255 255 40 255 255 255 40 255 255 -[MUSHROOM_SHORE_MOUNTAINS] 200 40 255 255 200 40 255 255 200 40 255 255 200 40 255 255 -[OCEAN_MOUNTAINS] 40 40 152 255 40 40 152 255 40 40 152 255 40 40 152 255 -[RIVER_MOUNTAINS] 40 40 255 255 40 40 255 255 40 40 255 255 40 40 255 255 -[SKY_MOUNTAINS] 168 168 255 255 168 168 255 255 168 168 255 255 168 168 255 255 -[STONE_BEACH_MOUNTAINS] 202 202 172 255 202 202 172 255 202 202 172 255 202 202 172 255 -[TAIGA_HILLS_MOUNTAINS] 62 97 91 255 62 97 91 255 62 97 91 255 62 97 91 255 -[BAMBOO_JUNGLE] 118 142 20 255 118 142 20 255 118 142 20 255 118 142 20 255 -[BAMBOO_JUNGLE_HILLS] 59 71 10 255 59 71 10 255 59 71 10 255 59 71 10 255 -[SOUL_SAND_VALLEY] 82 41 33 255 82 41 33 255 82 41 33 255 82 41 33 255 -[CRIMSON_FOREST] 221 8 8 255 221 8 8 255 221 8 8 255 221 8 8 255 -[WARPED_FOREST] 73 144 123 255 73 144 123 255 73 144 123 255 73 144 123 255 -[BASALT_DELTAS] 64 54 54 255 64 54 54 255 64 54 54 255 64 54 54 255 -Rainfall/Temperature Mapping -[RAINFALL-0.0] 120 120 120 255 96 96 96 255 60 60 60 255 48 48 48 255 -[RAINFALL-1.0] 38 92 255 255 30 73 204 255 19 46 127 255 15 36 102 255 -[TEMPERATURE-0.0] 38 92 255 255 30 73 204 255 19 46 127 255 15 36 102 255 -[TEMPERATURE-0.5] 91 121 185 255 73 96 147 255 46 61 92 255 36 48 73 255 -[TEMPERATURE-0.8] 51 165 42 255 41 131 33 255 26 82 21 255 20 65 17 255 -[TEMPERATURE-0.9] 170 158 24 255 135 126 19 255 85 79 12 255 67 62 10 255 -[TEMPERATURE-0.95] 204 111 48 255 162 89 38 255 102 56 24 255 81 44 19 255 -[TEMPERATURE-1.0] 143 39 36 255 114 31 28 255 71 20 18 255 57 16 14 255 +minecraft:stone 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:granite 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:polished_granite 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:diorite 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:polished_diorite 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:andesite 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:polished_andesite 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:grass_block 69 110 51 255 55 88 40 255 34 55 25 255 27 44 20 255 +minecraft:grass_block[snowy=false] 69 110 51 255 55 88 40 255 34 55 25 255 27 44 20 255 +minecraft:dirt 134 96 67 255 107 76 53 255 67 48 33 255 53 38 26 255 +minecraft:coarse_dirt 119 85 59 255 95 68 47 255 59 42 29 255 47 34 23 255 +minecraft:podzol 147 147 147 255 117 117 117 255 73 73 73 255 58 58 58 255 +minecraft:podzol[snowy=false] 91 63 24 255 72 50 19 255 45 31 12 255 36 25 9 255 +minecraft:cobblestone 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:oak_planks 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:spruce_planks 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:birch_planks 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:jungle_planks 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:acacia_planks 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:dark_oak_planks 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:oak_sapling 77 106 40 110 61 84 32 110 38 53 20 110 30 42 16 110 +minecraft:oak_sapling[stage=1] 77 106 40 110 61 84 32 110 38 53 20 110 30 42 16 110 +minecraft:spruce_sapling 44 60 36 82 35 48 28 82 22 30 18 82 17 24 14 82 +minecraft:spruce_sapling[stage=1] 44 60 36 82 35 48 28 82 22 30 18 82 17 24 14 82 +minecraft:birch_sapling 127 160 79 97 101 128 63 97 63 80 39 97 50 64 31 97 +minecraft:birch_sapling[stage=1] 127 160 79 97 101 128 63 97 63 80 39 97 50 64 31 97 +minecraft:jungle_sapling 47 81 16 85 37 64 12 85 23 40 8 85 18 32 6 85 +minecraft:jungle_sapling[stage=1] 47 81 16 85 37 64 12 85 23 40 8 85 18 32 6 85 +minecraft:acacia_sapling 118 117 23 110 94 93 18 110 59 58 11 110 47 46 9 110 +minecraft:acacia_sapling[stage=1] 118 117 23 110 94 93 18 110 59 58 11 110 47 46 9 110 +minecraft:dark_oak_sapling 61 90 30 109 48 72 24 109 30 45 15 109 24 36 12 109 +minecraft:dark_oak_sapling[stage=1] 61 90 30 109 48 72 24 109 30 45 15 109 24 36 12 109 +minecraft:bedrock 85 85 85 255 68 68 68 255 42 42 42 255 34 34 34 255 +minecraft:water 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=1] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=2] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=3] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=4] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=5] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=6] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=7] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=8] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=9] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=10] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=11] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=12] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=13] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=14] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=15] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:lava 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 +minecraft:lava[level=1] 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 +minecraft:lava[level=2] 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 +minecraft:lava[level=3] 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 +minecraft:lava[level=4] 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 +minecraft:lava[level=5] 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 +minecraft:lava[level=6] 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 +minecraft:lava[level=7] 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 +minecraft:lava[level=8] 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 +minecraft:lava[level=9] 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 +minecraft:lava[level=10] 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 +minecraft:lava[level=11] 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 +minecraft:lava[level=12] 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 +minecraft:lava[level=13] 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 +minecraft:lava[level=14] 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 +minecraft:lava[level=15] 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 +minecraft:sand 219 207 163 255 175 165 130 255 109 103 81 255 87 82 65 255 +minecraft:red_sand 190 102 33 255 152 81 26 255 95 51 16 255 76 40 13 255 +minecraft:gravel 131 127 126 255 104 101 100 255 65 63 63 255 52 50 50 255 +minecraft:gold_ore 145 133 106 255 116 106 84 255 72 66 53 255 58 53 42 255 +minecraft:deepslate_gold_ore 115 102 78 255 92 81 62 255 57 51 39 255 46 40 31 255 +minecraft:iron_ore 136 129 122 255 108 103 97 255 68 64 61 255 54 51 48 255 +minecraft:deepslate_iron_ore 106 99 94 255 84 79 75 255 53 49 47 255 42 39 37 255 +minecraft:coal_ore 105 105 105 255 84 84 84 255 52 52 52 255 42 42 42 255 +minecraft:deepslate_coal_ore 74 74 76 255 59 59 60 255 37 37 38 255 29 29 30 255 +minecraft:nether_gold_ore 115 54 42 255 92 43 33 255 57 27 21 255 46 21 16 255 +minecraft:oak_log 109 85 50 255 87 68 40 255 54 42 25 255 43 34 20 255 +minecraft:oak_log[axis=y] 151 121 73 255 120 96 58 255 75 60 36 255 60 48 29 255 +minecraft:oak_log[axis=z] 109 85 50 255 87 68 40 255 54 42 25 255 43 34 20 255 +minecraft:spruce_log 58 37 16 255 46 29 12 255 29 18 8 255 23 14 6 255 +minecraft:spruce_log[axis=y] 108 80 46 255 86 64 36 255 54 40 23 255 43 32 18 255 +minecraft:spruce_log[axis=z] 58 37 16 255 46 29 12 255 29 18 8 255 23 14 6 255 +minecraft:birch_log 216 215 210 255 172 172 168 255 108 107 105 255 86 86 84 255 +minecraft:birch_log[axis=y] 193 179 135 255 154 143 108 255 96 89 67 255 77 71 54 255 +minecraft:birch_log[axis=z] 216 215 210 255 172 172 168 255 108 107 105 255 86 86 84 255 +minecraft:jungle_log 85 67 25 255 68 53 20 255 42 33 12 255 34 26 10 255 +minecraft:jungle_log[axis=y] 149 109 70 255 119 87 56 255 74 54 35 255 59 43 28 255 +minecraft:jungle_log[axis=z] 85 67 25 255 68 53 20 255 42 33 12 255 34 26 10 255 +minecraft:acacia_log 103 96 86 255 82 76 68 255 51 48 43 255 41 38 34 255 +minecraft:acacia_log[axis=y] 150 88 55 255 120 70 44 255 75 44 27 255 60 35 22 255 +minecraft:acacia_log[axis=z] 103 96 86 255 82 76 68 255 51 48 43 255 41 38 34 255 +minecraft:dark_oak_log 60 46 26 255 48 36 20 255 30 23 13 255 24 18 10 255 +minecraft:dark_oak_log[axis=y] 64 42 21 255 51 33 16 255 32 21 10 255 25 16 8 255 +minecraft:dark_oak_log[axis=z] 60 46 26 255 48 36 20 255 30 23 13 255 24 18 10 255 +minecraft:stripped_spruce_log 115 89 52 255 92 71 41 255 57 44 26 255 46 35 20 255 +minecraft:stripped_spruce_log[axis=y] 105 80 46 255 84 64 36 255 52 40 23 255 42 32 18 255 +minecraft:stripped_spruce_log[axis=z] 115 89 52 255 92 71 41 255 57 44 26 255 46 35 20 255 +minecraft:stripped_birch_log 196 176 118 255 156 140 94 255 98 88 59 255 78 70 47 255 +minecraft:stripped_birch_log[axis=y] 191 171 116 255 152 136 92 255 95 85 58 255 76 68 46 255 +minecraft:stripped_birch_log[axis=z] 196 176 118 255 156 140 94 255 98 88 59 255 78 70 47 255 +minecraft:stripped_jungle_log 171 132 84 255 136 105 67 255 85 66 42 255 68 52 33 255 +minecraft:stripped_jungle_log[axis=y] 165 122 81 255 132 97 64 255 82 61 40 255 66 48 32 255 +minecraft:stripped_jungle_log[axis=z] 171 132 84 255 136 105 67 255 85 66 42 255 68 52 33 255 +minecraft:stripped_acacia_log 174 92 59 255 139 73 47 255 87 46 29 255 69 36 23 255 +minecraft:stripped_acacia_log[axis=y] 166 91 51 255 132 72 40 255 83 45 25 255 66 36 20 255 +minecraft:stripped_acacia_log[axis=z] 174 92 59 255 139 73 47 255 87 46 29 255 69 36 23 255 +minecraft:stripped_dark_oak_log 96 76 49 255 76 60 39 255 48 38 24 255 38 30 19 255 +minecraft:stripped_dark_oak_log[axis=y] 65 44 22 255 52 35 17 255 32 22 11 255 26 17 8 255 +minecraft:stripped_dark_oak_log[axis=z] 96 76 49 255 76 60 39 255 48 38 24 255 38 30 19 255 +minecraft:stripped_oak_log 177 144 86 255 141 115 68 255 88 72 43 255 70 57 34 255 +minecraft:stripped_oak_log[axis=y] 160 129 77 255 128 103 61 255 80 64 38 255 64 51 30 255 +minecraft:stripped_oak_log[axis=z] 177 144 86 255 141 115 68 255 88 72 43 255 70 57 34 255 +minecraft:oak_wood 109 85 50 255 87 68 40 255 54 42 25 255 43 34 20 255 +minecraft:oak_wood[axis=y] 109 85 50 255 87 68 40 255 54 42 25 255 43 34 20 255 +minecraft:oak_wood[axis=z] 109 85 50 255 87 68 40 255 54 42 25 255 43 34 20 255 +minecraft:spruce_wood 58 37 16 255 46 29 12 255 29 18 8 255 23 14 6 255 +minecraft:spruce_wood[axis=y] 58 37 16 255 46 29 12 255 29 18 8 255 23 14 6 255 +minecraft:spruce_wood[axis=z] 58 37 16 255 46 29 12 255 29 18 8 255 23 14 6 255 +minecraft:birch_wood 216 215 210 255 172 172 168 255 108 107 105 255 86 86 84 255 +minecraft:birch_wood[axis=y] 216 215 210 255 172 172 168 255 108 107 105 255 86 86 84 255 +minecraft:birch_wood[axis=z] 216 215 210 255 172 172 168 255 108 107 105 255 86 86 84 255 +minecraft:jungle_wood 85 67 25 255 68 53 20 255 42 33 12 255 34 26 10 255 +minecraft:jungle_wood[axis=y] 85 67 25 255 68 53 20 255 42 33 12 255 34 26 10 255 +minecraft:jungle_wood[axis=z] 85 67 25 255 68 53 20 255 42 33 12 255 34 26 10 255 +minecraft:acacia_wood 103 96 86 255 82 76 68 255 51 48 43 255 41 38 34 255 +minecraft:acacia_wood[axis=y] 103 96 86 255 82 76 68 255 51 48 43 255 41 38 34 255 +minecraft:acacia_wood[axis=z] 103 96 86 255 82 76 68 255 51 48 43 255 41 38 34 255 +minecraft:dark_oak_wood 60 46 26 255 48 36 20 255 30 23 13 255 24 18 10 255 +minecraft:dark_oak_wood[axis=y] 60 46 26 255 48 36 20 255 30 23 13 255 24 18 10 255 +minecraft:dark_oak_wood[axis=z] 60 46 26 255 48 36 20 255 30 23 13 255 24 18 10 255 +minecraft:stripped_oak_wood 177 144 86 255 141 115 68 255 88 72 43 255 70 57 34 255 +minecraft:stripped_oak_wood[axis=y] 177 144 86 255 141 115 68 255 88 72 43 255 70 57 34 255 +minecraft:stripped_oak_wood[axis=z] 177 144 86 255 141 115 68 255 88 72 43 255 70 57 34 255 +minecraft:stripped_spruce_wood 115 89 52 255 92 71 41 255 57 44 26 255 46 35 20 255 +minecraft:stripped_spruce_wood[axis=y] 115 89 52 255 92 71 41 255 57 44 26 255 46 35 20 255 +minecraft:stripped_spruce_wood[axis=z] 115 89 52 255 92 71 41 255 57 44 26 255 46 35 20 255 +minecraft:stripped_birch_wood 196 176 118 255 156 140 94 255 98 88 59 255 78 70 47 255 +minecraft:stripped_birch_wood[axis=y] 196 176 118 255 156 140 94 255 98 88 59 255 78 70 47 255 +minecraft:stripped_birch_wood[axis=z] 196 176 118 255 156 140 94 255 98 88 59 255 78 70 47 255 +minecraft:stripped_jungle_wood 171 132 84 255 136 105 67 255 85 66 42 255 68 52 33 255 +minecraft:stripped_jungle_wood[axis=y] 171 132 84 255 136 105 67 255 85 66 42 255 68 52 33 255 +minecraft:stripped_jungle_wood[axis=z] 171 132 84 255 136 105 67 255 85 66 42 255 68 52 33 255 +minecraft:stripped_acacia_wood 174 92 59 255 139 73 47 255 87 46 29 255 69 36 23 255 +minecraft:stripped_acacia_wood[axis=y] 174 92 59 255 139 73 47 255 87 46 29 255 69 36 23 255 +minecraft:stripped_acacia_wood[axis=z] 174 92 59 255 139 73 47 255 87 46 29 255 69 36 23 255 +minecraft:stripped_dark_oak_wood 96 76 49 255 76 60 39 255 48 38 24 255 38 30 19 255 +minecraft:stripped_dark_oak_wood[axis=y] 96 76 49 255 76 60 39 255 48 38 24 255 38 30 19 255 +minecraft:stripped_dark_oak_wood[axis=z] 96 76 49 255 76 60 39 255 48 38 24 255 38 30 19 255 +minecraft:oak_leaves 50 98 27 171 40 78 21 171 25 49 13 171 20 39 10 171 +minecraft:oak_leaves[distance=1,persistent=false] 50 98 27 171 40 78 21 171 25 49 13 171 20 39 10 171 +minecraft:oak_leaves[distance=2,persistent=true] 50 98 27 171 40 78 21 171 25 49 13 171 20 39 10 171 +minecraft:oak_leaves[distance=2,persistent=false] 50 98 27 171 40 78 21 171 25 49 13 171 20 39 10 171 +minecraft:oak_leaves[distance=3,persistent=true] 50 98 27 171 40 78 21 171 25 49 13 171 20 39 10 171 +minecraft:oak_leaves[distance=3,persistent=false] 50 98 27 171 40 78 21 171 25 49 13 171 20 39 10 171 +minecraft:oak_leaves[distance=4,persistent=true] 50 98 27 171 40 78 21 171 25 49 13 171 20 39 10 171 +minecraft:oak_leaves[distance=4,persistent=false] 50 98 27 171 40 78 21 171 25 49 13 171 20 39 10 171 +minecraft:oak_leaves[distance=5,persistent=true] 50 98 27 171 40 78 21 171 25 49 13 171 20 39 10 171 +minecraft:oak_leaves[distance=5,persistent=false] 50 98 27 171 40 78 21 171 25 49 13 171 20 39 10 171 +minecraft:oak_leaves[distance=6,persistent=true] 50 98 27 171 40 78 21 171 25 49 13 171 20 39 10 171 +minecraft:oak_leaves[distance=6,persistent=false] 50 98 27 171 40 78 21 171 25 49 13 171 20 39 10 171 +minecraft:oak_leaves[distance=7,persistent=true] 50 98 27 171 40 78 21 171 25 49 13 171 20 39 10 171 +minecraft:oak_leaves[distance=7,persistent=false] 50 98 27 171 40 78 21 171 25 49 13 171 20 39 10 171 +minecraft:spruce_leaves 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=1,persistent=false] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=2,persistent=true] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=2,persistent=false] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=3,persistent=true] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=3,persistent=false] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=4,persistent=true] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=4,persistent=false] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=5,persistent=true] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=5,persistent=false] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=6,persistent=true] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=6,persistent=false] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=7,persistent=true] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=7,persistent=false] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:birch_leaves 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=1,persistent=false] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=2,persistent=true] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=2,persistent=false] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=3,persistent=true] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=3,persistent=false] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=4,persistent=true] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=4,persistent=false] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=5,persistent=true] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=5,persistent=false] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=6,persistent=true] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=6,persistent=false] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=7,persistent=true] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=7,persistent=false] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:jungle_leaves 54 105 26 177 43 84 20 177 27 52 13 177 21 42 10 177 +minecraft:jungle_leaves[distance=1,persistent=false] 54 105 26 177 43 84 20 177 27 52 13 177 21 42 10 177 +minecraft:jungle_leaves[distance=2,persistent=true] 54 105 26 177 43 84 20 177 27 52 13 177 21 42 10 177 +minecraft:jungle_leaves[distance=2,persistent=false] 54 105 26 177 43 84 20 177 27 52 13 177 21 42 10 177 +minecraft:jungle_leaves[distance=3,persistent=true] 54 105 26 177 43 84 20 177 27 52 13 177 21 42 10 177 +minecraft:jungle_leaves[distance=3,persistent=false] 54 105 26 177 43 84 20 177 27 52 13 177 21 42 10 177 +minecraft:jungle_leaves[distance=4,persistent=true] 54 105 26 177 43 84 20 177 27 52 13 177 21 42 10 177 +minecraft:jungle_leaves[distance=4,persistent=false] 54 105 26 177 43 84 20 177 27 52 13 177 21 42 10 177 +minecraft:jungle_leaves[distance=5,persistent=true] 54 105 26 177 43 84 20 177 27 52 13 177 21 42 10 177 +minecraft:jungle_leaves[distance=5,persistent=false] 54 105 26 177 43 84 20 177 27 52 13 177 21 42 10 177 +minecraft:jungle_leaves[distance=6,persistent=true] 54 105 26 177 43 84 20 177 27 52 13 177 21 42 10 177 +minecraft:jungle_leaves[distance=6,persistent=false] 54 105 26 177 43 84 20 177 27 52 13 177 21 42 10 177 +minecraft:jungle_leaves[distance=7,persistent=true] 54 105 26 177 43 84 20 177 27 52 13 177 21 42 10 177 +minecraft:jungle_leaves[distance=7,persistent=false] 54 105 26 177 43 84 20 177 27 52 13 177 21 42 10 177 +minecraft:acacia_leaves 52 100 27 147 41 80 21 147 26 50 13 147 20 40 10 147 +minecraft:acacia_leaves[distance=1,persistent=false] 52 100 27 147 41 80 21 147 26 50 13 147 20 40 10 147 +minecraft:acacia_leaves[distance=2,persistent=true] 52 100 27 147 41 80 21 147 26 50 13 147 20 40 10 147 +minecraft:acacia_leaves[distance=2,persistent=false] 52 100 27 147 41 80 21 147 26 50 13 147 20 40 10 147 +minecraft:acacia_leaves[distance=3,persistent=true] 52 100 27 147 41 80 21 147 26 50 13 147 20 40 10 147 +minecraft:acacia_leaves[distance=3,persistent=false] 52 100 27 147 41 80 21 147 26 50 13 147 20 40 10 147 +minecraft:acacia_leaves[distance=4,persistent=true] 52 100 27 147 41 80 21 147 26 50 13 147 20 40 10 147 +minecraft:acacia_leaves[distance=4,persistent=false] 52 100 27 147 41 80 21 147 26 50 13 147 20 40 10 147 +minecraft:acacia_leaves[distance=5,persistent=true] 52 100 27 147 41 80 21 147 26 50 13 147 20 40 10 147 +minecraft:acacia_leaves[distance=5,persistent=false] 52 100 27 147 41 80 21 147 26 50 13 147 20 40 10 147 +minecraft:acacia_leaves[distance=6,persistent=true] 52 100 27 147 41 80 21 147 26 50 13 147 20 40 10 147 +minecraft:acacia_leaves[distance=6,persistent=false] 52 100 27 147 41 80 21 147 26 50 13 147 20 40 10 147 +minecraft:acacia_leaves[distance=7,persistent=true] 52 100 27 147 41 80 21 147 26 50 13 147 20 40 10 147 +minecraft:acacia_leaves[distance=7,persistent=false] 52 100 27 147 41 80 21 147 26 50 13 147 20 40 10 147 +minecraft:dark_oak_leaves 52 102 28 178 41 81 22 178 26 51 14 178 20 40 11 178 +minecraft:dark_oak_leaves[distance=1,persistent=false] 52 102 28 178 41 81 22 178 26 51 14 178 20 40 11 178 +minecraft:dark_oak_leaves[distance=2,persistent=true] 52 102 28 178 41 81 22 178 26 51 14 178 20 40 11 178 +minecraft:dark_oak_leaves[distance=2,persistent=false] 52 102 28 178 41 81 22 178 26 51 14 178 20 40 11 178 +minecraft:dark_oak_leaves[distance=3,persistent=true] 52 102 28 178 41 81 22 178 26 51 14 178 20 40 11 178 +minecraft:dark_oak_leaves[distance=3,persistent=false] 52 102 28 178 41 81 22 178 26 51 14 178 20 40 11 178 +minecraft:dark_oak_leaves[distance=4,persistent=true] 52 102 28 178 41 81 22 178 26 51 14 178 20 40 11 178 +minecraft:dark_oak_leaves[distance=4,persistent=false] 52 102 28 178 41 81 22 178 26 51 14 178 20 40 11 178 +minecraft:dark_oak_leaves[distance=5,persistent=true] 52 102 28 178 41 81 22 178 26 51 14 178 20 40 11 178 +minecraft:dark_oak_leaves[distance=5,persistent=false] 52 102 28 178 41 81 22 178 26 51 14 178 20 40 11 178 +minecraft:dark_oak_leaves[distance=6,persistent=true] 52 102 28 178 41 81 22 178 26 51 14 178 20 40 11 178 +minecraft:dark_oak_leaves[distance=6,persistent=false] 52 102 28 178 41 81 22 178 26 51 14 178 20 40 11 178 +minecraft:dark_oak_leaves[distance=7,persistent=true] 52 102 28 178 41 81 22 178 26 51 14 178 20 40 11 178 +minecraft:dark_oak_leaves[distance=7,persistent=false] 52 102 28 178 41 81 22 178 26 51 14 178 20 40 11 178 +minecraft:azalea_leaves 31 77 8 196 24 61 6 196 15 38 4 196 12 30 3 196 +minecraft:azalea_leaves[distance=1,persistent=false] 31 77 8 196 24 61 6 196 15 38 4 196 12 30 3 196 +minecraft:azalea_leaves[distance=2,persistent=true] 31 77 8 196 24 61 6 196 15 38 4 196 12 30 3 196 +minecraft:azalea_leaves[distance=2,persistent=false] 31 77 8 196 24 61 6 196 15 38 4 196 12 30 3 196 +minecraft:azalea_leaves[distance=3,persistent=true] 31 77 8 196 24 61 6 196 15 38 4 196 12 30 3 196 +minecraft:azalea_leaves[distance=3,persistent=false] 31 77 8 196 24 61 6 196 15 38 4 196 12 30 3 196 +minecraft:azalea_leaves[distance=4,persistent=true] 31 77 8 196 24 61 6 196 15 38 4 196 12 30 3 196 +minecraft:azalea_leaves[distance=4,persistent=false] 31 77 8 196 24 61 6 196 15 38 4 196 12 30 3 196 +minecraft:azalea_leaves[distance=5,persistent=true] 31 77 8 196 24 61 6 196 15 38 4 196 12 30 3 196 +minecraft:azalea_leaves[distance=5,persistent=false] 31 77 8 196 24 61 6 196 15 38 4 196 12 30 3 196 +minecraft:azalea_leaves[distance=6,persistent=true] 31 77 8 196 24 61 6 196 15 38 4 196 12 30 3 196 +minecraft:azalea_leaves[distance=6,persistent=false] 31 77 8 196 24 61 6 196 15 38 4 196 12 30 3 196 +minecraft:azalea_leaves[distance=7,persistent=true] 31 77 8 196 24 61 6 196 15 38 4 196 12 30 3 196 +minecraft:azalea_leaves[distance=7,persistent=false] 31 77 8 196 24 61 6 196 15 38 4 196 12 30 3 196 +minecraft:flowering_azalea_leaves 34 75 11 204 27 60 8 204 17 37 5 204 13 30 4 204 +minecraft:flowering_azalea_leaves[distance=1,persistent=false] 34 75 11 204 27 60 8 204 17 37 5 204 13 30 4 204 +minecraft:flowering_azalea_leaves[distance=2,persistent=true] 34 75 11 204 27 60 8 204 17 37 5 204 13 30 4 204 +minecraft:flowering_azalea_leaves[distance=2,persistent=false] 34 75 11 204 27 60 8 204 17 37 5 204 13 30 4 204 +minecraft:flowering_azalea_leaves[distance=3,persistent=true] 34 75 11 204 27 60 8 204 17 37 5 204 13 30 4 204 +minecraft:flowering_azalea_leaves[distance=3,persistent=false] 34 75 11 204 27 60 8 204 17 37 5 204 13 30 4 204 +minecraft:flowering_azalea_leaves[distance=4,persistent=true] 34 75 11 204 27 60 8 204 17 37 5 204 13 30 4 204 +minecraft:flowering_azalea_leaves[distance=4,persistent=false] 34 75 11 204 27 60 8 204 17 37 5 204 13 30 4 204 +minecraft:flowering_azalea_leaves[distance=5,persistent=true] 34 75 11 204 27 60 8 204 17 37 5 204 13 30 4 204 +minecraft:flowering_azalea_leaves[distance=5,persistent=false] 34 75 11 204 27 60 8 204 17 37 5 204 13 30 4 204 +minecraft:flowering_azalea_leaves[distance=6,persistent=true] 34 75 11 204 27 60 8 204 17 37 5 204 13 30 4 204 +minecraft:flowering_azalea_leaves[distance=6,persistent=false] 34 75 11 204 27 60 8 204 17 37 5 204 13 30 4 204 +minecraft:flowering_azalea_leaves[distance=7,persistent=true] 34 75 11 204 27 60 8 204 17 37 5 204 13 30 4 204 +minecraft:flowering_azalea_leaves[distance=7,persistent=false] 34 75 11 204 27 60 8 204 17 37 5 204 13 30 4 204 +minecraft:sponge 195 192 74 255 156 153 59 255 97 96 37 255 78 76 29 255 +minecraft:wet_sponge 171 181 70 255 136 144 56 255 85 90 35 255 68 72 28 255 +minecraft:glass 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:lapis_ore 107 117 141 255 85 93 112 255 53 58 70 255 42 46 56 255 +minecraft:deepslate_lapis_ore 79 90 115 255 63 72 92 255 39 45 57 255 31 36 46 255 +minecraft:lapis_block 30 67 140 255 24 53 112 255 15 33 70 255 12 26 56 255 +minecraft:dispenser 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dispenser[facing=north,triggered=false] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dispenser[facing=east,triggered=true] 98 97 97 255 78 77 77 255 49 48 48 255 39 38 38 255 +minecraft:dispenser[facing=east,triggered=false] 98 97 97 255 78 77 77 255 49 48 48 255 39 38 38 255 +minecraft:dispenser[facing=south,triggered=true] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dispenser[facing=south,triggered=false] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dispenser[facing=west,triggered=true] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dispenser[facing=west,triggered=false] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dispenser[facing=up,triggered=true] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dispenser[facing=up,triggered=false] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dispenser[facing=down,triggered=true] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dispenser[facing=down,triggered=false] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:sandstone 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:chiseled_sandstone 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:cut_sandstone 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:note_block 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=0,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=1,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=1,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=2,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=2,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=3,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=3,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=4,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=4,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=5,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=5,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=6,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=6,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=7,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=7,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=8,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=8,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=9,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=9,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=10,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=10,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=11,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=11,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=12,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=12,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=13,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=13,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=14,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=14,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=15,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=15,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=16,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=16,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=17,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=17,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=18,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=18,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=19,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=19,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=20,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=20,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=21,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=21,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=22,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=22,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=23,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=23,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=24,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=24,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=0,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=0,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=1,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=1,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=2,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=2,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=3,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=3,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=4,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=4,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=5,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=5,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=6,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=6,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=7,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=7,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=8,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=8,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=9,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=9,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=10,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=10,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=11,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=11,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=12,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=12,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=13,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=13,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=14,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=14,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=15,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=15,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=16,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=16,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=17,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=17,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=18,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=18,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=19,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=19,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=20,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=20,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=21,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=21,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=22,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=22,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=23,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=23,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=24,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=24,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=0,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=0,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=1,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=1,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=2,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=2,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=3,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=3,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=4,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=4,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=5,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=5,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=6,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=6,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=7,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=7,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=8,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=8,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=9,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=9,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=10,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=10,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=11,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=11,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=12,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=12,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=13,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=13,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=14,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=14,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=15,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=15,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=16,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=16,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=17,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=17,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=18,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=18,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=19,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=19,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=20,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=20,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=21,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=21,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=22,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=22,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=23,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=23,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=24,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=24,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=0,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=0,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=1,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=1,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=2,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=2,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=3,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=3,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=4,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=4,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=5,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=5,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=6,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=6,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=7,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=7,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=8,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=8,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=9,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=9,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=10,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=10,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=11,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=11,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=12,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=12,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=13,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=13,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=14,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=14,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=15,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=15,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=16,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=16,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=17,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=17,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=18,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=18,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=19,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=19,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=20,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=20,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=21,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=21,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=22,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=22,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=23,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=23,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=24,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=24,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=0,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=0,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=1,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=1,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=2,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=2,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=3,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=3,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=4,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=4,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=5,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=5,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=6,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=6,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=7,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=7,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=8,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=8,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=9,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=9,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=10,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=10,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=11,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=11,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=12,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=12,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=13,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=13,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=14,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=14,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=15,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=15,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=16,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=16,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=17,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=17,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=18,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=18,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=19,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=19,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=20,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=20,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=21,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=21,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=22,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=22,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=23,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=23,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=24,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=24,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=0,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=0,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=1,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=1,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=2,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=2,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=3,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=3,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=4,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=4,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=5,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=5,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=6,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=6,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=7,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=7,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=8,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=8,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=9,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=9,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=10,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=10,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=11,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=11,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=12,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=12,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=13,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=13,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=14,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=14,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=15,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=15,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=16,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=16,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=17,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=17,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=18,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=18,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=19,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=19,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=20,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=20,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=21,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=21,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=22,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=22,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=23,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=23,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=24,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=24,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=0,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=0,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=1,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=1,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=2,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=2,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=3,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=3,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=4,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=4,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=5,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=5,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=6,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=6,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=7,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=7,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=8,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=8,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=9,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=9,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=10,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=10,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=11,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=11,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=12,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=12,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=13,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=13,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=14,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=14,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=15,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=15,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=16,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=16,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=17,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=17,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=18,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=18,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=19,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=19,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=20,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=20,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=21,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=21,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=22,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=22,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=23,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=23,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=24,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=24,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=0,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=0,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=1,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=1,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=2,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=2,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=3,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=3,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=4,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=4,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=5,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=5,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=6,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=6,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=7,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=7,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=8,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=8,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=9,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=9,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=10,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=10,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=11,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=11,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=12,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=12,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=13,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=13,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=14,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=14,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=15,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=15,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=16,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=16,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=17,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=17,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=18,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=18,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=19,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=19,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=20,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=20,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=21,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=21,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=22,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=22,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=23,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=23,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=24,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=24,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=0,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=0,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=1,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=1,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=2,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=2,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=3,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=3,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=4,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=4,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=5,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=5,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=6,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=6,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=7,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=7,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=8,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=8,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=9,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=9,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=10,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=10,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=11,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=11,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=12,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=12,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=13,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=13,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=14,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=14,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=15,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=15,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=16,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=16,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=17,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=17,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=18,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=18,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=19,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=19,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=20,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=20,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=21,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=21,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=22,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=22,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=23,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=23,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=24,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=24,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=0,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=0,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=1,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=1,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=2,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=2,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=3,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=3,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=4,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=4,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=5,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=5,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=6,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=6,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=7,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=7,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=8,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=8,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=9,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=9,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=10,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=10,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=11,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=11,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=12,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=12,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=13,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=13,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=14,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=14,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=15,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=15,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=16,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=16,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=17,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=17,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=18,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=18,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=19,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=19,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=20,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=20,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=21,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=21,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=22,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=22,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=23,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=23,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=24,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=24,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=0,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=0,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=1,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=1,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=2,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=2,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=3,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=3,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=4,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=4,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=5,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=5,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=6,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=6,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=7,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=7,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=8,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=8,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=9,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=9,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=10,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=10,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=11,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=11,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=12,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=12,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=13,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=13,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=14,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=14,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=15,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=15,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=16,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=16,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=17,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=17,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=18,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=18,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=19,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=19,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=20,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=20,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=21,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=21,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=22,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=22,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=23,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=23,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=24,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=24,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=0,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=0,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=1,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=1,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=2,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=2,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=3,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=3,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=4,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=4,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=5,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=5,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=6,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=6,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=7,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=7,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=8,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=8,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=9,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=9,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=10,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=10,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=11,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=11,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=12,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=12,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=13,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=13,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=14,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=14,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=15,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=15,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=16,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=16,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=17,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=17,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=18,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=18,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=19,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=19,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=20,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=20,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=21,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=21,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=22,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=22,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=23,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=23,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=24,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=24,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=0,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=0,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=1,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=1,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=2,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=2,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=3,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=3,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=4,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=4,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=5,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=5,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=6,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=6,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=7,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=7,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=8,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=8,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=9,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=9,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=10,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=10,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=11,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=11,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=12,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=12,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=13,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=13,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=14,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=14,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=15,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=15,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=16,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=16,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=17,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=17,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=18,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=18,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=19,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=19,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=20,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=20,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=21,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=21,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=22,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=22,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=23,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=23,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=24,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=24,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=0,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=0,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=1,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=1,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=2,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=2,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=3,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=3,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=4,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=4,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=5,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=5,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=6,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=6,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=7,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=7,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=8,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=8,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=9,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=9,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=10,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=10,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=11,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=11,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=12,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=12,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=13,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=13,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=14,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=14,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=15,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=15,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=16,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=16,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=17,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=17,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=18,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=18,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=19,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=19,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=20,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=20,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=21,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=21,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=22,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=22,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=23,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=23,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=24,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=24,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=0,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=0,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=1,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=1,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=2,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=2,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=3,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=3,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=4,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=4,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=5,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=5,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=6,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=6,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=7,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=7,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=8,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=8,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=9,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=9,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=10,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=10,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=11,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=11,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=12,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=12,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=13,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=13,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=14,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=14,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=15,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=15,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=16,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=16,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=17,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=17,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=18,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=18,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=19,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=19,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=20,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=20,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=21,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=21,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=22,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=22,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=23,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=23,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=24,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=24,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=0,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=0,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=1,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=1,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=2,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=2,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=3,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=3,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=4,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=4,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=5,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=5,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=6,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=6,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=7,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=7,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=8,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=8,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=9,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=9,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=10,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=10,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=11,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=11,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=12,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=12,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=13,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=13,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=14,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=14,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=15,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=15,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=16,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=16,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=17,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=17,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=18,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=18,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=19,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=19,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=20,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=20,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=21,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=21,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=22,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=22,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=23,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=23,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=24,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=24,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:powered_rail 154 109 74 171 123 87 59 171 77 54 37 171 61 43 29 171 +minecraft:powered_rail[powered=true,shape=north_south,waterlogged=false] 154 109 74 171 123 87 59 171 77 54 37 171 61 43 29 171 +minecraft:powered_rail[powered=true,shape=east_west,waterlogged=true] 154 109 74 171 123 87 59 171 77 54 37 171 61 43 29 171 +minecraft:powered_rail[powered=true,shape=east_west,waterlogged=false] 154 109 74 171 123 87 59 171 77 54 37 171 61 43 29 171 +minecraft:powered_rail[powered=true,shape=ascending_east,waterlogged=true] 154 109 74 171 123 87 59 171 77 54 37 171 61 43 29 171 +minecraft:powered_rail[powered=true,shape=ascending_east,waterlogged=false] 154 109 74 171 123 87 59 171 77 54 37 171 61 43 29 171 +minecraft:powered_rail[powered=true,shape=ascending_west,waterlogged=true] 154 109 74 171 123 87 59 171 77 54 37 171 61 43 29 171 +minecraft:powered_rail[powered=true,shape=ascending_west,waterlogged=false] 154 109 74 171 123 87 59 171 77 54 37 171 61 43 29 171 +minecraft:powered_rail[powered=true,shape=ascending_north,waterlogged=true] 154 109 74 171 123 87 59 171 77 54 37 171 61 43 29 171 +minecraft:powered_rail[powered=true,shape=ascending_north,waterlogged=false] 154 109 74 171 123 87 59 171 77 54 37 171 61 43 29 171 +minecraft:powered_rail[powered=true,shape=ascending_south,waterlogged=true] 154 109 74 171 123 87 59 171 77 54 37 171 61 43 29 171 +minecraft:powered_rail[powered=true,shape=ascending_south,waterlogged=false] 154 109 74 171 123 87 59 171 77 54 37 171 61 43 29 171 +minecraft:powered_rail[powered=false,shape=north_south,waterlogged=true] 137 109 74 171 109 87 59 171 68 54 37 171 54 43 29 171 +minecraft:powered_rail[powered=false,shape=north_south,waterlogged=false] 137 109 74 171 109 87 59 171 68 54 37 171 54 43 29 171 +minecraft:powered_rail[powered=false,shape=east_west,waterlogged=true] 137 109 74 171 109 87 59 171 68 54 37 171 54 43 29 171 +minecraft:powered_rail[powered=false,shape=east_west,waterlogged=false] 137 109 74 171 109 87 59 171 68 54 37 171 54 43 29 171 +minecraft:powered_rail[powered=false,shape=ascending_east,waterlogged=true] 137 109 74 171 109 87 59 171 68 54 37 171 54 43 29 171 +minecraft:powered_rail[powered=false,shape=ascending_east,waterlogged=false] 137 109 74 171 109 87 59 171 68 54 37 171 54 43 29 171 +minecraft:powered_rail[powered=false,shape=ascending_west,waterlogged=true] 137 109 74 171 109 87 59 171 68 54 37 171 54 43 29 171 +minecraft:powered_rail[powered=false,shape=ascending_west,waterlogged=false] 137 109 74 171 109 87 59 171 68 54 37 171 54 43 29 171 +minecraft:powered_rail[powered=false,shape=ascending_north,waterlogged=true] 137 109 74 171 109 87 59 171 68 54 37 171 54 43 29 171 +minecraft:powered_rail[powered=false,shape=ascending_north,waterlogged=false] 137 109 74 171 109 87 59 171 68 54 37 171 54 43 29 171 +minecraft:powered_rail[powered=false,shape=ascending_south,waterlogged=true] 137 109 74 171 109 87 59 171 68 54 37 171 54 43 29 171 +minecraft:powered_rail[powered=false,shape=ascending_south,waterlogged=false] 137 109 74 171 109 87 59 171 68 54 37 171 54 43 29 171 +minecraft:detector_rail 137 103 89 155 109 82 71 155 68 51 44 155 54 41 35 155 +minecraft:detector_rail[powered=true,shape=north_south,waterlogged=false] 137 103 89 155 109 82 71 155 68 51 44 155 54 41 35 155 +minecraft:detector_rail[powered=true,shape=east_west,waterlogged=true] 137 103 89 155 109 82 71 155 68 51 44 155 54 41 35 155 +minecraft:detector_rail[powered=true,shape=east_west,waterlogged=false] 137 103 89 155 109 82 71 155 68 51 44 155 54 41 35 155 +minecraft:detector_rail[powered=true,shape=ascending_east,waterlogged=true] 137 103 89 155 109 82 71 155 68 51 44 155 54 41 35 155 +minecraft:detector_rail[powered=true,shape=ascending_east,waterlogged=false] 137 103 89 155 109 82 71 155 68 51 44 155 54 41 35 155 +minecraft:detector_rail[powered=true,shape=ascending_west,waterlogged=true] 137 103 89 155 109 82 71 155 68 51 44 155 54 41 35 155 +minecraft:detector_rail[powered=true,shape=ascending_west,waterlogged=false] 137 103 89 155 109 82 71 155 68 51 44 155 54 41 35 155 +minecraft:detector_rail[powered=true,shape=ascending_north,waterlogged=true] 137 103 89 155 109 82 71 155 68 51 44 155 54 41 35 155 +minecraft:detector_rail[powered=true,shape=ascending_north,waterlogged=false] 137 103 89 155 109 82 71 155 68 51 44 155 54 41 35 155 +minecraft:detector_rail[powered=true,shape=ascending_south,waterlogged=true] 137 103 89 155 109 82 71 155 68 51 44 155 54 41 35 155 +minecraft:detector_rail[powered=true,shape=ascending_south,waterlogged=false] 137 103 89 155 109 82 71 155 68 51 44 155 54 41 35 155 +minecraft:detector_rail[powered=false,shape=north_south,waterlogged=true] 123 104 90 155 98 83 72 155 61 52 45 155 49 41 36 155 +minecraft:detector_rail[powered=false,shape=north_south,waterlogged=false] 123 104 90 155 98 83 72 155 61 52 45 155 49 41 36 155 +minecraft:detector_rail[powered=false,shape=east_west,waterlogged=true] 123 104 90 155 98 83 72 155 61 52 45 155 49 41 36 155 +minecraft:detector_rail[powered=false,shape=east_west,waterlogged=false] 123 104 90 155 98 83 72 155 61 52 45 155 49 41 36 155 +minecraft:detector_rail[powered=false,shape=ascending_east,waterlogged=true] 123 104 90 155 98 83 72 155 61 52 45 155 49 41 36 155 +minecraft:detector_rail[powered=false,shape=ascending_east,waterlogged=false] 123 104 90 155 98 83 72 155 61 52 45 155 49 41 36 155 +minecraft:detector_rail[powered=false,shape=ascending_west,waterlogged=true] 123 104 90 155 98 83 72 155 61 52 45 155 49 41 36 155 +minecraft:detector_rail[powered=false,shape=ascending_west,waterlogged=false] 123 104 90 155 98 83 72 155 61 52 45 155 49 41 36 155 +minecraft:detector_rail[powered=false,shape=ascending_north,waterlogged=true] 123 104 90 155 98 83 72 155 61 52 45 155 49 41 36 155 +minecraft:detector_rail[powered=false,shape=ascending_north,waterlogged=false] 123 104 90 155 98 83 72 155 61 52 45 155 49 41 36 155 +minecraft:detector_rail[powered=false,shape=ascending_south,waterlogged=true] 123 104 90 155 98 83 72 155 61 52 45 155 49 41 36 155 +minecraft:detector_rail[powered=false,shape=ascending_south,waterlogged=false] 123 104 90 155 98 83 72 155 61 52 45 155 49 41 36 155 +minecraft:sticky_piston 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:sticky_piston[extended=true,facing=east] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:sticky_piston[extended=true,facing=south] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:sticky_piston[extended=true,facing=west] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:sticky_piston[extended=true,facing=up] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:sticky_piston[extended=true,facing=down] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:sticky_piston[extended=false,facing=north] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:sticky_piston[extended=false,facing=east] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:sticky_piston[extended=false,facing=south] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:sticky_piston[extended=false,facing=west] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:sticky_piston[extended=false,facing=up] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:sticky_piston[extended=false,facing=down] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:cobweb 228 233 234 104 182 186 187 104 114 116 117 104 91 93 93 104 +minecraft:grass 68 109 51 139 54 87 40 139 34 54 25 139 27 43 20 139 +minecraft:fern 58 93 43 88 46 74 34 88 29 46 21 88 23 37 17 88 +minecraft:dead_bush 107 78 40 77 85 62 32 77 53 39 20 77 42 31 16 77 +minecraft:seagrass 24 94 2 76 19 75 1 76 12 47 1 76 9 37 0 76 +minecraft:tall_seagrass 27 103 4 72 21 82 3 72 13 51 2 72 10 41 1 72 +minecraft:tall_seagrass[half=lower] 21 88 1 141 16 70 0 141 10 44 0 141 8 35 0 141 +minecraft:piston 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:piston[extended=true,facing=east] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:piston[extended=true,facing=south] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:piston[extended=true,facing=west] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:piston[extended=true,facing=up] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:piston[extended=true,facing=down] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:piston[extended=false,facing=north] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:piston[extended=false,facing=east] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:piston[extended=false,facing=south] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:piston[extended=false,facing=west] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:piston[extended=false,facing=up] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:piston[extended=false,facing=down] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:piston_head 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=north,short=true,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=north,short=false,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=north,short=false,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=east,short=true,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=east,short=true,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=east,short=false,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=east,short=false,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=south,short=true,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=south,short=true,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=south,short=false,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=south,short=false,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=west,short=true,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=west,short=true,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=west,short=false,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=west,short=false,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=up,short=true,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=up,short=true,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=up,short=false,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=up,short=false,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=down,short=true,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=down,short=true,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=down,short=false,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=down,short=false,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:white_wool 233 236 236 255 186 188 188 255 116 118 118 255 93 94 94 255 +minecraft:orange_wool 240 118 19 255 192 94 15 255 120 59 9 255 96 47 7 255 +minecraft:magenta_wool 189 68 179 255 151 54 143 255 94 34 89 255 75 27 71 255 +minecraft:light_blue_wool 58 175 217 255 46 140 173 255 29 87 108 255 23 70 86 255 +minecraft:yellow_wool 248 197 39 255 198 157 31 255 124 98 19 255 99 78 15 255 +minecraft:lime_wool 112 185 25 255 89 148 20 255 56 92 12 255 44 74 10 255 +minecraft:pink_wool 237 141 172 255 189 112 137 255 118 70 86 255 94 56 68 255 +minecraft:gray_wool 62 68 71 255 49 54 56 255 31 34 35 255 24 27 28 255 +minecraft:light_gray_wool 142 142 134 255 113 113 107 255 71 71 67 255 56 56 53 255 +minecraft:cyan_wool 21 137 145 255 16 109 116 255 10 68 72 255 8 54 58 255 +minecraft:purple_wool 121 42 172 255 96 33 137 255 60 21 86 255 48 16 68 255 +minecraft:blue_wool 53 57 157 255 42 45 125 255 26 28 78 255 21 22 62 255 +minecraft:brown_wool 114 71 40 255 91 56 32 255 57 35 20 255 45 28 16 255 +minecraft:green_wool 84 109 27 255 67 87 21 255 42 54 13 255 33 43 10 255 +minecraft:red_wool 160 39 34 255 128 31 27 255 80 19 17 255 64 15 13 255 +minecraft:black_wool 20 21 25 255 16 16 20 255 10 10 12 255 8 8 10 255 +minecraft:dandelion 147 172 43 31 117 137 34 31 73 86 21 31 58 68 17 31 +minecraft:poppy 128 64 37 34 102 51 29 34 64 32 18 34 51 25 14 34 +minecraft:blue_orchid 47 162 168 43 37 129 134 43 23 81 84 43 18 64 67 43 +minecraft:allium 158 137 183 37 126 109 146 37 79 68 91 37 63 54 73 37 +minecraft:azure_bluet 169 204 127 42 135 163 101 42 84 102 63 42 67 81 50 42 +minecraft:red_tulip 89 128 32 48 71 102 25 48 44 64 16 48 35 51 12 48 +minecraft:orange_tulip 93 142 30 40 74 113 24 40 46 71 15 40 37 56 12 40 +minecraft:white_tulip 93 164 71 44 74 131 56 44 46 82 35 44 37 65 28 44 +minecraft:pink_tulip 99 157 78 40 79 125 62 40 49 78 39 40 39 62 31 40 +minecraft:oxeye_daisy 179 202 143 50 143 161 114 50 89 101 71 50 71 80 57 50 +minecraft:cornflower 79 121 146 34 63 96 116 34 39 60 73 34 31 48 58 34 +minecraft:wither_rose 41 44 23 36 32 35 18 36 20 22 11 36 16 17 9 36 +minecraft:lily_of_the_valley 123 174 95 51 98 139 76 51 61 87 47 51 49 69 38 51 +minecraft:brown_mushroom 153 116 92 33 122 92 73 33 76 58 46 33 61 46 36 33 +minecraft:red_mushroom 216 75 67 31 172 60 53 31 108 37 33 31 86 30 26 31 +minecraft:gold_block 246 208 61 255 196 166 48 255 123 104 30 255 98 83 24 255 +minecraft:iron_block 220 220 220 255 176 176 176 255 110 110 110 255 88 88 88 255 +minecraft:bricks 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:tnt 142 62 53 255 113 49 42 255 71 31 26 255 56 24 21 255 +minecraft:tnt[unstable=false] 142 62 53 255 113 49 42 255 71 31 26 255 56 24 21 255 +minecraft:bookshelf 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:mossy_cobblestone 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:obsidian 15 10 24 255 12 8 19 255 7 5 12 255 6 4 9 255 +minecraft:torch 138 113 63 19 110 90 50 19 69 56 31 19 55 45 25 19 +minecraft:wall_torch 138 113 63 19 110 90 50 19 69 56 31 19 55 45 25 19 +minecraft:wall_torch[facing=south] 138 113 63 19 110 90 50 19 69 56 31 19 55 45 25 19 +minecraft:wall_torch[facing=west] 138 113 63 19 110 90 50 19 69 56 31 19 55 45 25 19 +minecraft:wall_torch[facing=east] 138 113 63 19 110 90 50 19 69 56 31 19 55 45 25 19 +minecraft:fire 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=true,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=true,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=true,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=true,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=true,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=true,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=true,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=true,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=true,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=true,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=true,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=true,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=true,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=true,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=true,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=false,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=false,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=false,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=false,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=false,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=false,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=false,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=false,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=false,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=false,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=false,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=false,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=false,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=false,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=false,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=false,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=true,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=true,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=true,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=true,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=true,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=true,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=true,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=true,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=true,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=true,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=true,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=true,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=true,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=true,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=true,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=true,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=false,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=false,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=false,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=false,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=false,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=false,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=false,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=false,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=false,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=false,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=false,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=false,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=false,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=false,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=false,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=false,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=true,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=true,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=true,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=true,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=true,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=true,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=true,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=true,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=true,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=true,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=true,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=true,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=true,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=true,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=true,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=true,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=false,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=false,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=false,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=false,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=false,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=false,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=false,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=false,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=false,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=false,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=false,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=false,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=false,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=false,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=false,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=false,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=true,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=true,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=true,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=true,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=true,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=true,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=true,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=true,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=true,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=true,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=true,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=true,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=true,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=true,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=true,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=true,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=false,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=false,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=false,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=false,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=false,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=false,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=false,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=false,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=false,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=false,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=false,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=false,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=false,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=false,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=false,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=false,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=true,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=true,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=true,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=true,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=true,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=true,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=true,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=true,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=true,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=true,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=true,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=true,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=true,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=true,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=true,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=true,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=false,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=false,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=false,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=false,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=false,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=false,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=false,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=false,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=false,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=false,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=false,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=false,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=false,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=false,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=false,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=false,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=true,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=true,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=true,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=true,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=true,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=true,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=true,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=true,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=true,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=true,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=true,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=true,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=true,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=true,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=true,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=true,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=false,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=false,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=false,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=false,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=false,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=false,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=false,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=false,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=false,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=false,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=false,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=false,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=false,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=false,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=false,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=false,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=true,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=true,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=true,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=true,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=true,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=true,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=true,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=true,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=true,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=true,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=true,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=true,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=true,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=true,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=true,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=true,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=false,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=false,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=false,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=false,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=false,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=false,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=false,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=false,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=false,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=false,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=false,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=false,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=false,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=false,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=false,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=false,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=true,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=true,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=true,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=true,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=true,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=true,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=true,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=true,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=true,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=true,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=true,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=true,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=true,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=true,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=true,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=true,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=false,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=false,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=false,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=false,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=false,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=false,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=false,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=false,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=false,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=false,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=false,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=false,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=false,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=false,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=false,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=false,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=true,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=true,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=true,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=true,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=true,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=true,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=true,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=true,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=true,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=true,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=true,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=true,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=true,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=true,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=true,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=true,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=false,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=false,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=false,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=false,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=false,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=false,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=false,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=false,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=false,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=false,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=false,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=false,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=false,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=false,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=false,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=false,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=true,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=true,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=true,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=true,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=true,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=true,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=true,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=true,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=true,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=true,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=true,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=true,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=true,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=true,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=true,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=true,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=false,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=false,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=false,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=false,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=false,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=false,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=false,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=false,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=false,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=false,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=false,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=false,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=false,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=false,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=false,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=false,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=true,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=true,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=true,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=true,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=true,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=true,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=true,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=true,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=true,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=true,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=true,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=true,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=true,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=true,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=true,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=true,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=false,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=false,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=false,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=false,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=false,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=false,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=false,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=false,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=false,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=false,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=false,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=false,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=false,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=false,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=false,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=false,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=true,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=true,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=true,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=true,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=true,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=true,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=true,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=true,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=true,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=true,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=true,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=true,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=true,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=true,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=true,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=true,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=false,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=false,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=false,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=false,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=false,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=false,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=false,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=false,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=false,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=false,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=false,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=false,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=false,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=false,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=false,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=false,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=true,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=true,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=true,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=true,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=true,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=true,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=true,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=true,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=true,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=true,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=true,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=true,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=true,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=true,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=true,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=true,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=false,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=false,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=false,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=false,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=false,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=false,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=false,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=false,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=false,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=false,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=false,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=false,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=false,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=false,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=false,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=false,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=true,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=true,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=true,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=true,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=true,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=true,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=true,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=true,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=true,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=true,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=true,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=true,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=true,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=true,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=true,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=true,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=false,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=false,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=false,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=false,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=false,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=false,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=false,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=false,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=false,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=false,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=false,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=false,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=false,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=false,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=false,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=false,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=true,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=true,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=true,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=true,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=true,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=true,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=true,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=true,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=true,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=true,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=true,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=true,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=true,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=true,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=true,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=true,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=false,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=false,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=false,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=false,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=false,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=false,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=false,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=false,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=false,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=false,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=false,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=false,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=false,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=false,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=false,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=false,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=true,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=true,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=true,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=true,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=true,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=true,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=true,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=true,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=true,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=true,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=true,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=true,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=true,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=true,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=true,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=true,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=false,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=false,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=false,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=false,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=false,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=false,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=false,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=false,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=false,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=false,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=false,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=false,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=false,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=false,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=false,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=false,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:soul_fire 54 195 200 145 43 156 160 145 27 97 100 145 21 78 80 145 +minecraft:spawner 36 46 62 175 28 36 49 175 18 23 31 175 14 18 24 175 +minecraft:oak_stairs 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=top,shape=straight,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=top,shape=straight,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=top,shape=straight,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=top,shape=straight,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=top,shape=straight,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=top,shape=straight,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=top,shape=straight,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:chest 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=north,type=single,waterlogged=false] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=north,type=left,waterlogged=true] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=north,type=left,waterlogged=false] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=north,type=right,waterlogged=true] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=north,type=right,waterlogged=false] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=south,type=single,waterlogged=true] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=south,type=single,waterlogged=false] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=south,type=left,waterlogged=true] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=south,type=left,waterlogged=false] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=south,type=right,waterlogged=true] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=south,type=right,waterlogged=false] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=west,type=single,waterlogged=true] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=west,type=single,waterlogged=false] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=west,type=left,waterlogged=true] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=west,type=left,waterlogged=false] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=west,type=right,waterlogged=true] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=west,type=right,waterlogged=false] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=east,type=single,waterlogged=true] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=east,type=single,waterlogged=false] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=east,type=left,waterlogged=true] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=east,type=left,waterlogged=false] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=east,type=right,waterlogged=true] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=east,type=right,waterlogged=false] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:redstone_wire 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=0,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=0,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=0,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=0,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=0,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=0,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=0,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=0,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=1,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=1,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=1,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=1,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=1,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=1,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=1,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=1,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=1,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=2,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=2,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=2,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=2,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=2,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=2,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=2,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=2,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=2,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=3,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=3,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=3,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=3,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=3,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=3,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=3,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=3,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=3,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=4,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=4,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=4,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=4,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=4,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=4,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=4,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=4,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=4,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=5,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=5,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=5,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=5,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=5,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=5,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=5,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=5,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=5,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=6,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=6,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=6,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=6,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=6,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=6,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=6,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=6,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=6,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=7,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=7,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=7,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=7,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=7,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=7,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=7,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=7,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=7,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=8,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=8,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=8,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=8,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=8,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=8,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=8,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=8,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=8,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=9,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=9,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=9,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=9,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=9,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=9,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=9,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=9,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=9,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=10,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=10,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=10,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=10,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=10,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=10,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=10,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=10,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=10,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=11,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=11,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=11,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=11,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=11,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=11,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=11,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=11,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=11,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=12,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=12,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=12,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=12,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=12,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=12,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=12,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=12,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=12,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=13,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=13,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=13,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=13,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=13,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=13,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=13,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=13,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=13,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=14,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=14,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=14,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=14,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=14,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=14,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=14,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=14,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=14,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=15,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=15,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=15,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=15,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=15,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=15,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=15,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=15,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=15,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=0,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=0,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=0,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=0,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=0,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=0,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=0,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=0,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=0,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=1,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=1,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=1,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=1,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=1,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=1,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=1,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=1,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=1,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=2,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=2,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=2,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=2,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=2,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=2,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=2,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=2,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=2,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=3,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=3,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=3,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=3,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=3,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=3,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=3,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=3,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=3,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=4,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=4,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=4,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=4,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=4,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=4,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=4,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=4,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=4,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=5,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=5,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=5,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=5,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=5,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=5,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=5,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=5,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=5,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=6,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=6,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=6,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=6,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=6,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=6,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=6,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=6,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=6,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=7,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=7,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=7,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=7,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=7,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=7,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=7,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=7,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=7,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=8,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=8,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=8,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=8,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=8,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=8,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=8,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=8,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=8,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=9,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=9,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=9,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=9,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=9,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=9,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=9,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=9,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=9,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=10,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=10,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=10,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=10,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=10,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=10,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=10,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=10,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=10,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=11,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=11,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=11,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=11,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=11,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=11,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=11,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=11,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=11,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=12,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=12,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=12,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=12,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=12,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=12,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=12,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=12,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=12,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=13,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=13,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=13,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=13,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=13,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=13,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=13,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=13,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=13,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=14,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=14,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=14,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=14,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=14,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=14,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=14,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=14,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=14,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=15,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=15,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=15,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=15,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=15,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=15,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=15,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=15,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=15,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=0,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=0,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=0,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=0,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=0,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=0,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=0,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=0,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=0,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=1,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=1,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=1,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=1,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=1,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=1,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=1,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=1,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=1,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=2,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=2,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=2,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=2,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=2,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=2,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=2,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=2,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=2,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=3,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=3,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=3,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=3,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=3,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=3,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=3,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=3,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=3,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=4,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=4,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=4,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=4,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=4,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=4,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=4,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=4,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=4,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=5,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=5,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=5,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=5,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=5,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=5,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=5,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=5,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=5,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=6,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=6,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=6,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=6,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=6,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=6,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=6,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=6,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=6,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=7,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=7,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=7,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=7,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=7,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=7,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=7,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=7,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=7,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=8,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=8,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=8,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=8,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=8,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=8,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=8,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=8,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=8,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=9,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=9,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=9,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=9,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=9,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=9,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=9,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=9,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=9,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=10,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=10,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=10,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=10,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=10,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=10,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=10,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=10,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=10,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=11,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=11,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=11,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=11,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=11,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=11,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=11,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=11,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=11,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=12,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=12,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=12,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=12,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=12,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=12,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=12,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=12,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=12,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=13,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=13,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=13,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=13,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=13,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=13,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=13,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=13,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=13,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=14,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=14,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=14,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=14,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=14,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=14,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=14,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=14,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=14,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=15,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=15,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=15,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=15,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=15,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=15,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=15,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=15,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=15,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=0,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=0,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=0,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=0,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=0,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=0,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=0,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=0,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=0,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=1,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=1,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=1,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=1,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=1,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=1,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=1,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=1,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=1,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=2,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=2,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=2,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=2,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=2,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=2,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=2,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=2,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=2,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=3,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=3,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=3,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=3,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=3,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=3,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=3,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=3,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=3,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=4,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=4,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=4,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=4,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=4,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=4,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=4,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=4,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=4,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=5,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=5,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=5,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=5,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=5,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=5,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=5,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=5,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=5,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=6,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=6,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=6,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=6,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=6,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=6,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=6,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=6,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=6,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=7,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=7,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=7,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=7,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=7,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=7,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=7,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=7,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=7,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=8,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=8,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=8,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=8,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=8,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=8,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=8,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=8,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=8,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=9,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=9,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=9,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=9,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=9,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=9,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=9,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=9,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=9,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=10,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=10,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=10,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=10,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=10,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=10,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=10,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=10,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=10,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=11,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=11,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=11,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=11,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=11,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=11,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=11,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=11,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=11,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=12,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=12,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=12,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=12,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=12,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=12,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=12,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=12,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=12,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=13,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=13,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=13,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=13,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=13,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=13,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=13,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=13,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=13,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=14,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=14,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=14,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=14,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=14,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=14,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=14,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=14,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=14,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=15,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=15,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=15,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=15,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=15,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=15,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=15,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=15,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=15,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=0,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=0,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=0,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=0,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=0,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=0,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=0,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=0,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=0,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=1,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=1,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=1,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=1,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=1,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=1,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=1,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=1,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=1,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=2,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=2,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=2,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=2,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=2,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=2,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=2,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=2,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=2,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=3,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=3,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=3,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=3,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=3,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=3,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=3,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=3,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=3,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=4,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=4,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=4,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=4,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=4,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=4,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=4,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=4,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=4,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=5,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=5,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=5,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=5,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=5,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=5,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=5,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=5,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=5,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=6,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=6,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=6,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=6,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=6,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=6,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=6,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=6,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=6,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=7,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=7,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=7,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=7,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=7,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=7,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=7,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=7,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=7,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=8,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=8,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=8,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=8,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=8,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=8,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=8,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=8,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=8,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=9,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=9,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=9,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=9,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=9,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=9,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=9,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=9,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=9,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=10,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=10,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=10,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=10,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=10,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=10,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=10,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=10,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=10,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=11,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=11,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=11,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=11,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=11,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=11,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=11,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=11,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=11,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=12,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=12,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=12,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=12,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=12,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=12,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=12,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=12,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=12,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=13,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=13,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=13,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=13,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=13,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=13,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=13,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=13,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=13,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=14,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=14,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=14,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=14,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=14,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=14,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=14,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=14,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=14,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=15,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=15,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=15,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=15,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=15,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=15,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=15,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=15,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=15,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=0,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=0,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=0,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=0,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=0,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=0,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=0,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=0,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=0,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=1,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=1,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=1,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=1,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=1,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=1,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=1,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=1,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=1,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=2,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=2,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=2,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=2,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=2,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=2,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=2,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=2,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=2,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=3,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=3,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=3,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=3,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=3,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=3,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=3,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=3,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=3,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=4,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=4,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=4,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=4,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=4,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=4,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=4,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=4,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=4,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=5,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=5,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=5,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=5,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=5,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=5,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=5,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=5,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=5,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=6,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=6,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=6,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=6,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=6,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=6,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=6,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=6,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=6,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=7,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=7,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=7,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=7,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=7,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=7,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=7,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=7,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=7,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=8,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=8,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=8,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=8,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=8,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=8,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=8,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=8,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=8,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=9,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=9,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=9,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=9,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=9,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=9,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=9,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=9,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=9,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=10,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=10,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=10,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=10,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=10,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=10,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=10,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=10,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=10,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=11,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=11,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=11,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=11,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=11,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=11,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=11,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=11,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=11,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=12,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=12,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=12,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=12,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=12,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=12,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=12,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=12,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=12,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=13,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=13,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=13,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=13,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=13,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=13,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=13,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=13,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=13,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=14,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=14,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=14,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=14,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=14,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=14,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=14,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=14,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=14,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=15,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=15,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=15,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=15,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=15,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=15,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=15,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=15,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=15,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=0,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=0,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=0,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=0,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=0,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=0,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=0,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=0,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=0,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=1,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=1,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=1,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=1,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=1,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=1,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=1,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=1,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=1,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=2,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=2,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=2,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=2,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=2,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=2,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=2,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=2,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=2,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=3,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=3,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=3,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=3,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=3,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=3,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=3,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=3,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=3,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=4,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=4,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=4,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=4,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=4,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=4,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=4,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=4,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=4,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=5,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=5,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=5,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=5,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=5,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=5,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=5,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=5,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=5,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=6,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=6,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=6,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=6,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=6,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=6,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=6,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=6,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=6,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=7,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=7,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=7,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=7,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=7,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=7,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=7,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=7,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=7,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=8,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=8,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=8,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=8,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=8,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=8,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=8,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=8,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=8,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=9,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=9,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=9,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=9,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=9,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=9,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=9,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=9,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=9,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=10,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=10,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=10,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=10,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=10,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=10,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=10,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=10,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=10,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=11,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=11,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=11,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=11,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=11,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=11,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=11,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=11,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=11,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=12,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=12,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=12,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=12,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=12,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=12,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=12,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=12,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=12,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=13,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=13,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=13,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=13,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=13,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=13,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=13,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=13,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=13,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=14,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=14,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=14,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=14,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=14,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=14,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=14,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=14,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=14,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=15,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=15,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=15,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=15,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=15,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=15,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=15,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=15,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=15,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=0,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=0,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=0,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=0,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=0,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=0,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=0,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=0,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=0,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=1,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=1,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=1,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=1,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=1,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=1,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=1,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=1,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=1,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=2,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=2,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=2,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=2,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=2,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=2,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=2,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=2,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=2,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=3,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=3,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=3,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=3,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=3,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=3,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=3,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=3,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=3,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=4,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=4,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=4,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=4,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=4,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=4,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=4,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=4,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=4,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=5,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=5,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=5,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=5,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=5,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=5,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=5,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=5,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=5,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=6,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=6,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=6,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=6,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=6,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=6,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=6,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=6,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=6,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=7,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=7,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=7,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=7,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=7,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=7,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=7,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=7,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=7,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=8,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=8,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=8,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=8,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=8,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=8,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=8,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=8,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=8,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=9,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=9,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=9,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=9,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=9,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=9,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=9,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=9,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=9,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=10,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=10,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=10,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=10,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=10,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=10,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=10,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=10,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=10,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=11,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=11,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=11,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=11,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=11,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=11,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=11,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=11,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=11,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=12,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=12,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=12,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=12,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=12,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=12,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=12,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=12,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=12,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=13,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=13,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=13,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=13,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=13,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=13,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=13,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=13,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=13,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=14,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=14,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=14,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=14,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=14,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=14,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=14,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=14,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=14,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=15,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=15,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=15,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=15,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=15,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=15,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=15,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=15,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=15,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=0,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=0,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=0,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=0,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=0,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=0,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=0,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=0,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=0,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=1,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=1,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=1,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=1,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=1,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=1,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=1,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=1,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=1,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=2,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=2,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=2,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=2,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=2,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=2,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=2,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=2,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=2,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=3,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=3,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=3,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=3,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=3,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=3,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=3,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=3,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=3,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=4,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=4,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=4,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=4,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=4,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=4,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=4,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=4,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=4,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=5,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=5,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=5,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=5,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=5,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=5,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=5,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=5,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=5,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=6,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=6,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=6,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=6,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=6,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=6,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=6,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=6,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=6,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=7,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=7,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=7,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=7,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=7,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=7,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=7,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=7,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=7,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=8,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=8,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=8,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=8,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=8,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=8,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=8,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=8,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=8,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=9,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=9,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=9,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=9,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=9,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=9,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=9,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=9,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=9,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=10,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=10,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=10,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=10,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=10,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=10,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=10,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=10,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=10,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=11,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=11,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=11,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=11,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=11,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=11,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=11,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=11,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=11,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=12,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=12,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=12,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=12,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=12,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=12,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=12,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=12,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=12,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=13,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=13,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=13,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=13,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=13,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=13,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=13,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=13,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=13,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=14,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=14,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=14,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=14,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=14,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=14,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=14,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=14,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=14,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=15,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=15,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=15,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=15,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=15,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=15,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=15,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=15,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=15,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:diamond_ore 121 141 140 255 96 112 112 255 60 70 70 255 48 56 56 255 +minecraft:deepslate_diamond_ore 83 106 106 255 66 84 84 255 41 53 53 255 33 42 42 255 +minecraft:diamond_block 98 237 228 255 78 189 182 255 49 118 114 255 39 94 91 255 +minecraft:crafting_table 119 73 42 255 95 58 33 255 59 36 21 255 47 29 16 255 +minecraft:wheat 8 127 15 6 6 101 12 6 4 63 7 6 3 50 6 6 +minecraft:wheat[age=1] 5 127 7 15 4 101 5 15 2 63 3 15 2 50 2 15 +minecraft:wheat[age=2] 6 133 12 32 4 106 9 32 3 66 6 32 2 53 4 32 +minecraft:wheat[age=3] 10 130 13 57 8 104 10 57 5 65 6 57 4 52 5 57 +minecraft:wheat[age=4] 37 132 18 78 29 105 14 78 18 66 9 78 14 52 7 78 +minecraft:wheat[age=5] 63 129 18 103 50 103 14 103 31 64 9 103 25 51 7 103 +minecraft:wheat[age=6] 141 133 37 125 112 106 29 125 70 66 18 125 56 53 14 125 +minecraft:wheat[age=7] 166 151 73 138 132 120 58 138 83 75 36 138 66 60 29 138 +minecraft:farmland 143 102 70 255 114 81 56 255 71 51 35 255 57 40 28 255 +minecraft:farmland[moisture=1] 81 44 15 255 64 35 12 255 40 22 7 255 32 17 6 255 +minecraft:farmland[moisture=2] 81 44 15 255 64 35 12 255 40 22 7 255 32 17 6 255 +minecraft:farmland[moisture=3] 81 44 15 255 64 35 12 255 40 22 7 255 32 17 6 255 +minecraft:farmland[moisture=4] 81 44 15 255 64 35 12 255 40 22 7 255 32 17 6 255 +minecraft:farmland[moisture=5] 81 44 15 255 64 35 12 255 40 22 7 255 32 17 6 255 +minecraft:farmland[moisture=6] 81 44 15 255 64 35 12 255 40 22 7 255 32 17 6 255 +minecraft:farmland[moisture=7] 81 44 15 255 64 35 12 255 40 22 7 255 32 17 6 255 +minecraft:furnace 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:furnace[facing=north,lit=false] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:furnace[facing=south,lit=true] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:furnace[facing=south,lit=false] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:furnace[facing=west,lit=true] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:furnace[facing=west,lit=false] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:furnace[facing=east,lit=true] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:furnace[facing=east,lit=false] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:oak_sign 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=0,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=1,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=1,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=2,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=2,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=3,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=3,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=4,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=4,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=5,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=5,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=6,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=6,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=7,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=7,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=8,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=8,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=9,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=9,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=10,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=10,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=11,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=11,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=12,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=12,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=13,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=13,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=14,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=14,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=15,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=15,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:spruce_sign 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=0,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=1,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=1,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=2,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=2,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=3,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=3,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=4,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=4,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=5,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=5,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=6,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=6,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=7,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=7,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=8,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=8,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=9,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=9,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=10,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=10,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=11,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=11,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=12,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=12,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=13,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=13,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=14,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=14,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=15,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=15,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:birch_sign 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=0,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=1,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=1,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=2,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=2,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=3,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=3,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=4,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=4,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=5,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=5,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=6,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=6,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=7,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=7,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=8,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=8,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=9,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=9,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=10,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=10,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=11,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=11,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=12,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=12,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=13,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=13,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=14,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=14,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=15,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=15,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:acacia_sign 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=0,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=1,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=1,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=2,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=2,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=3,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=3,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=4,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=4,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=5,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=5,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=6,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=6,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=7,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=7,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=8,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=8,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=9,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=9,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=10,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=10,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=11,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=11,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=12,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=12,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=13,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=13,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=14,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=14,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=15,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=15,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:jungle_sign 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=0,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=1,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=1,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=2,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=2,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=3,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=3,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=4,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=4,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=5,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=5,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=6,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=6,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=7,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=7,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=8,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=8,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=9,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=9,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=10,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=10,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=11,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=11,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=12,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=12,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=13,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=13,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=14,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=14,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=15,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=15,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:dark_oak_sign 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=0,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=1,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=1,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=2,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=2,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=3,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=3,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=4,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=4,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=5,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=5,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=6,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=6,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=7,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=7,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=8,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=8,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=9,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=9,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=10,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=10,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=11,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=11,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=12,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=12,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=13,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=13,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=14,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=14,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=15,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=15,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:oak_door 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=upper,hinge=left,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=upper,hinge=left,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=upper,hinge=left,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=upper,hinge=right,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=upper,hinge=right,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=upper,hinge=right,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=upper,hinge=right,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=lower,hinge=left,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=lower,hinge=left,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=lower,hinge=left,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=lower,hinge=left,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=lower,hinge=right,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=lower,hinge=right,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=lower,hinge=right,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=lower,hinge=right,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=upper,hinge=left,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=upper,hinge=left,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=upper,hinge=left,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=upper,hinge=left,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=upper,hinge=right,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=upper,hinge=right,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=upper,hinge=right,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=upper,hinge=right,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=lower,hinge=left,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=lower,hinge=left,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=lower,hinge=left,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=lower,hinge=left,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=lower,hinge=right,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=lower,hinge=right,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=lower,hinge=right,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=lower,hinge=right,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=upper,hinge=left,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=upper,hinge=left,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=upper,hinge=left,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=upper,hinge=left,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=upper,hinge=right,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=upper,hinge=right,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=upper,hinge=right,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=upper,hinge=right,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=lower,hinge=left,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=lower,hinge=left,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=lower,hinge=left,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=lower,hinge=left,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=lower,hinge=right,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=lower,hinge=right,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=lower,hinge=right,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=lower,hinge=right,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=upper,hinge=left,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=upper,hinge=left,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=upper,hinge=left,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=upper,hinge=left,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=upper,hinge=right,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=upper,hinge=right,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=upper,hinge=right,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=upper,hinge=right,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=lower,hinge=left,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=lower,hinge=left,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=lower,hinge=left,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=lower,hinge=left,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=lower,hinge=right,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=lower,hinge=right,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=lower,hinge=right,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=lower,hinge=right,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:ladder 124 96 54 143 99 76 43 143 62 48 27 143 49 38 21 143 +minecraft:ladder[facing=north,waterlogged=false] 124 96 54 143 99 76 43 143 62 48 27 143 49 38 21 143 +minecraft:ladder[facing=south,waterlogged=true] 124 96 54 143 99 76 43 143 62 48 27 143 49 38 21 143 +minecraft:ladder[facing=south,waterlogged=false] 124 96 54 143 99 76 43 143 62 48 27 143 49 38 21 143 +minecraft:ladder[facing=west,waterlogged=true] 124 96 54 143 99 76 43 143 62 48 27 143 49 38 21 143 +minecraft:ladder[facing=west,waterlogged=false] 124 96 54 143 99 76 43 143 62 48 27 143 49 38 21 143 +minecraft:ladder[facing=east,waterlogged=true] 124 96 54 143 99 76 43 143 62 48 27 143 49 38 21 143 +minecraft:ladder[facing=east,waterlogged=false] 124 96 54 143 99 76 43 143 62 48 27 143 49 38 21 143 +minecraft:rail 125 111 88 143 100 88 70 143 62 55 44 143 50 44 35 143 +minecraft:rail[shape=north_south,waterlogged=false] 125 111 88 143 100 88 70 143 62 55 44 143 50 44 35 143 +minecraft:rail[shape=east_west,waterlogged=true] 125 111 88 143 100 88 70 143 62 55 44 143 50 44 35 143 +minecraft:rail[shape=east_west,waterlogged=false] 125 111 88 143 100 88 70 143 62 55 44 143 50 44 35 143 +minecraft:rail[shape=ascending_east,waterlogged=true] 125 111 88 143 100 88 70 143 62 55 44 143 50 44 35 143 +minecraft:rail[shape=ascending_east,waterlogged=false] 125 111 88 143 100 88 70 143 62 55 44 143 50 44 35 143 +minecraft:rail[shape=ascending_west,waterlogged=true] 125 111 88 143 100 88 70 143 62 55 44 143 50 44 35 143 +minecraft:rail[shape=ascending_west,waterlogged=false] 125 111 88 143 100 88 70 143 62 55 44 143 50 44 35 143 +minecraft:rail[shape=ascending_north,waterlogged=true] 125 111 88 143 100 88 70 143 62 55 44 143 50 44 35 143 +minecraft:rail[shape=ascending_north,waterlogged=false] 125 111 88 143 100 88 70 143 62 55 44 143 50 44 35 143 +minecraft:rail[shape=ascending_south,waterlogged=true] 125 111 88 143 100 88 70 143 62 55 44 143 50 44 35 143 +minecraft:rail[shape=ascending_south,waterlogged=false] 125 111 88 143 100 88 70 143 62 55 44 143 50 44 35 143 +minecraft:rail[shape=south_east,waterlogged=true] 130 115 89 107 104 92 71 107 65 57 44 107 52 46 35 107 +minecraft:rail[shape=south_east,waterlogged=false] 130 115 89 107 104 92 71 107 65 57 44 107 52 46 35 107 +minecraft:rail[shape=south_west,waterlogged=true] 130 115 89 107 104 92 71 107 65 57 44 107 52 46 35 107 +minecraft:rail[shape=south_west,waterlogged=false] 130 115 89 107 104 92 71 107 65 57 44 107 52 46 35 107 +minecraft:rail[shape=north_west,waterlogged=true] 130 115 89 107 104 92 71 107 65 57 44 107 52 46 35 107 +minecraft:rail[shape=north_west,waterlogged=false] 130 115 89 107 104 92 71 107 65 57 44 107 52 46 35 107 +minecraft:rail[shape=north_east,waterlogged=true] 130 115 89 107 104 92 71 107 65 57 44 107 52 46 35 107 +minecraft:rail[shape=north_east,waterlogged=false] 130 115 89 107 104 92 71 107 65 57 44 107 52 46 35 107 +minecraft:cobblestone_stairs 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=top,shape=straight,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=top,shape=straight,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=top,shape=straight,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=top,shape=straight,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=top,shape=straight,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=top,shape=straight,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=top,shape=straight,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:oak_wall_sign 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_wall_sign[facing=north,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_wall_sign[facing=south,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_wall_sign[facing=south,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_wall_sign[facing=west,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_wall_sign[facing=west,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_wall_sign[facing=east,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_wall_sign[facing=east,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:spruce_wall_sign 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_wall_sign[facing=north,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_wall_sign[facing=south,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_wall_sign[facing=south,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_wall_sign[facing=west,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_wall_sign[facing=west,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_wall_sign[facing=east,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_wall_sign[facing=east,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:birch_wall_sign 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_wall_sign[facing=north,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_wall_sign[facing=south,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_wall_sign[facing=south,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_wall_sign[facing=west,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_wall_sign[facing=west,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_wall_sign[facing=east,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_wall_sign[facing=east,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:acacia_wall_sign 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_wall_sign[facing=north,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_wall_sign[facing=south,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_wall_sign[facing=south,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_wall_sign[facing=west,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_wall_sign[facing=west,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_wall_sign[facing=east,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_wall_sign[facing=east,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:jungle_wall_sign 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_wall_sign[facing=north,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_wall_sign[facing=south,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_wall_sign[facing=south,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_wall_sign[facing=west,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_wall_sign[facing=west,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_wall_sign[facing=east,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_wall_sign[facing=east,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:dark_oak_wall_sign 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_wall_sign[facing=north,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_wall_sign[facing=south,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_wall_sign[facing=south,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_wall_sign[facing=west,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_wall_sign[facing=west,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_wall_sign[facing=east,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_wall_sign[facing=east,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:lever 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=floor,facing=north,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=floor,facing=south,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=floor,facing=south,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=floor,facing=west,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=floor,facing=west,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=floor,facing=east,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=floor,facing=east,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=wall,facing=north,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=wall,facing=north,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=wall,facing=south,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=wall,facing=south,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=wall,facing=west,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=wall,facing=west,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=wall,facing=east,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=wall,facing=east,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=ceiling,facing=north,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=ceiling,facing=north,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=ceiling,facing=south,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=ceiling,facing=south,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=ceiling,facing=west,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=ceiling,facing=west,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=ceiling,facing=east,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=ceiling,facing=east,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:stone_pressure_plate 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_pressure_plate[powered=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:iron_door 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=upper,hinge=left,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=upper,hinge=left,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=upper,hinge=left,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=upper,hinge=right,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=upper,hinge=right,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=upper,hinge=right,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=upper,hinge=right,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=lower,hinge=left,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=lower,hinge=left,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=lower,hinge=left,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=lower,hinge=left,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=lower,hinge=right,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=lower,hinge=right,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=lower,hinge=right,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=lower,hinge=right,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=upper,hinge=left,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=upper,hinge=left,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=upper,hinge=left,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=upper,hinge=left,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=upper,hinge=right,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=upper,hinge=right,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=upper,hinge=right,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=upper,hinge=right,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=lower,hinge=left,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=lower,hinge=left,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=lower,hinge=left,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=lower,hinge=left,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=lower,hinge=right,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=lower,hinge=right,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=lower,hinge=right,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=lower,hinge=right,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=upper,hinge=left,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=upper,hinge=left,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=upper,hinge=left,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=upper,hinge=left,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=upper,hinge=right,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=upper,hinge=right,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=upper,hinge=right,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=upper,hinge=right,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=lower,hinge=left,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=lower,hinge=left,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=lower,hinge=left,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=lower,hinge=left,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=lower,hinge=right,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=lower,hinge=right,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=lower,hinge=right,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=lower,hinge=right,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=upper,hinge=left,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=upper,hinge=left,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=upper,hinge=left,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=upper,hinge=left,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=upper,hinge=right,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=upper,hinge=right,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=upper,hinge=right,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=upper,hinge=right,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=lower,hinge=left,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=lower,hinge=left,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=lower,hinge=left,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=lower,hinge=left,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=lower,hinge=right,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=lower,hinge=right,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=lower,hinge=right,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=lower,hinge=right,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:oak_pressure_plate 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_pressure_plate[powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:spruce_pressure_plate 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_pressure_plate[powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:birch_pressure_plate 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_pressure_plate[powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:jungle_pressure_plate 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_pressure_plate[powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:acacia_pressure_plate 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_pressure_plate[powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:dark_oak_pressure_plate 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_pressure_plate[powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:redstone_ore 140 109 109 255 112 87 87 255 70 54 54 255 56 43 43 255 +minecraft:redstone_ore[lit=false] 140 109 109 255 112 87 87 255 70 54 54 255 56 43 43 255 +minecraft:deepslate_redstone_ore 104 73 74 255 83 58 59 255 52 36 37 255 41 29 29 255 +minecraft:deepslate_redstone_ore[lit=false] 104 73 74 255 83 58 59 255 52 36 37 255 41 29 29 255 +minecraft:redstone_torch 171 79 44 25 136 63 35 25 85 39 22 25 68 31 17 25 +minecraft:redstone_torch[lit=false] 101 69 43 19 80 55 34 19 50 34 21 19 40 27 17 19 +minecraft:redstone_wall_torch 171 79 44 25 136 63 35 25 85 39 22 25 68 31 17 25 +minecraft:redstone_wall_torch[facing=north,lit=false] 101 69 43 19 80 55 34 19 50 34 21 19 40 27 17 19 +minecraft:redstone_wall_torch[facing=south,lit=true] 171 79 44 25 136 63 35 25 85 39 22 25 68 31 17 25 +minecraft:redstone_wall_torch[facing=south,lit=false] 101 69 43 19 80 55 34 19 50 34 21 19 40 27 17 19 +minecraft:redstone_wall_torch[facing=west,lit=true] 171 79 44 25 136 63 35 25 85 39 22 25 68 31 17 25 +minecraft:redstone_wall_torch[facing=west,lit=false] 101 69 43 19 80 55 34 19 50 34 21 19 40 27 17 19 +minecraft:redstone_wall_torch[facing=east,lit=true] 171 79 44 25 136 63 35 25 85 39 22 25 68 31 17 25 +minecraft:redstone_wall_torch[facing=east,lit=false] 101 69 43 19 80 55 34 19 50 34 21 19 40 27 17 19 +minecraft:stone_button 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=floor,facing=north,powered=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=floor,facing=south,powered=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=floor,facing=south,powered=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=floor,facing=west,powered=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=floor,facing=west,powered=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=floor,facing=east,powered=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=floor,facing=east,powered=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=wall,facing=north,powered=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=wall,facing=north,powered=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=wall,facing=south,powered=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=wall,facing=south,powered=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=wall,facing=west,powered=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=wall,facing=west,powered=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=wall,facing=east,powered=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=wall,facing=east,powered=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=ceiling,facing=north,powered=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=ceiling,facing=north,powered=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=ceiling,facing=south,powered=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=ceiling,facing=south,powered=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=ceiling,facing=west,powered=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=ceiling,facing=west,powered=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=ceiling,facing=east,powered=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=ceiling,facing=east,powered=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:snow 249 254 254 255 199 203 203 255 124 127 127 255 99 101 101 255 +minecraft:snow[layers=2] 249 254 254 255 199 203 203 255 124 127 127 255 99 101 101 255 +minecraft:snow[layers=3] 249 254 254 255 199 203 203 255 124 127 127 255 99 101 101 255 +minecraft:snow[layers=4] 249 254 254 255 199 203 203 255 124 127 127 255 99 101 101 255 +minecraft:snow[layers=5] 249 254 254 255 199 203 203 255 124 127 127 255 99 101 101 255 +minecraft:snow[layers=6] 249 254 254 255 199 203 203 255 124 127 127 255 99 101 101 255 +minecraft:snow[layers=7] 249 254 254 255 199 203 203 255 124 127 127 255 99 101 101 255 +minecraft:snow[layers=8] 249 254 254 255 199 203 203 255 124 127 127 255 99 101 101 255 +minecraft:ice 145 183 253 190 116 146 202 190 72 91 126 190 58 73 101 190 +minecraft:snow_block 249 254 254 255 199 203 203 255 124 127 127 255 99 101 101 255 +minecraft:cactus 85 127 43 195 68 101 34 195 42 63 21 195 34 50 17 195 +minecraft:cactus[age=1] 85 127 43 195 68 101 34 195 42 63 21 195 34 50 17 195 +minecraft:cactus[age=2] 85 127 43 195 68 101 34 195 42 63 21 195 34 50 17 195 +minecraft:cactus[age=3] 85 127 43 195 68 101 34 195 42 63 21 195 34 50 17 195 +minecraft:cactus[age=4] 85 127 43 195 68 101 34 195 42 63 21 195 34 50 17 195 +minecraft:cactus[age=5] 85 127 43 195 68 101 34 195 42 63 21 195 34 50 17 195 +minecraft:cactus[age=6] 85 127 43 195 68 101 34 195 42 63 21 195 34 50 17 195 +minecraft:cactus[age=7] 85 127 43 195 68 101 34 195 42 63 21 195 34 50 17 195 +minecraft:cactus[age=8] 85 127 43 195 68 101 34 195 42 63 21 195 34 50 17 195 +minecraft:cactus[age=9] 85 127 43 195 68 101 34 195 42 63 21 195 34 50 17 195 +minecraft:cactus[age=10] 85 127 43 195 68 101 34 195 42 63 21 195 34 50 17 195 +minecraft:cactus[age=11] 85 127 43 195 68 101 34 195 42 63 21 195 34 50 17 195 +minecraft:cactus[age=12] 85 127 43 195 68 101 34 195 42 63 21 195 34 50 17 195 +minecraft:cactus[age=13] 85 127 43 195 68 101 34 195 42 63 21 195 34 50 17 195 +minecraft:cactus[age=14] 85 127 43 195 68 101 34 195 42 63 21 195 34 50 17 195 +minecraft:cactus[age=15] 85 127 43 195 68 101 34 195 42 63 21 195 34 50 17 195 +minecraft:clay 160 166 179 255 128 132 143 255 80 83 89 255 64 66 71 255 +minecraft:sugar_cane 148 192 101 140 118 153 80 140 74 96 50 140 59 76 40 140 +minecraft:sugar_cane[age=1] 148 192 101 140 118 153 80 140 74 96 50 140 59 76 40 140 +minecraft:sugar_cane[age=2] 148 192 101 140 118 153 80 140 74 96 50 140 59 76 40 140 +minecraft:sugar_cane[age=3] 148 192 101 140 118 153 80 140 74 96 50 140 59 76 40 140 +minecraft:sugar_cane[age=4] 148 192 101 140 118 153 80 140 74 96 50 140 59 76 40 140 +minecraft:sugar_cane[age=5] 148 192 101 140 118 153 80 140 74 96 50 140 59 76 40 140 +minecraft:sugar_cane[age=6] 148 192 101 140 118 153 80 140 74 96 50 140 59 76 40 140 +minecraft:sugar_cane[age=7] 148 192 101 140 118 153 80 140 74 96 50 140 59 76 40 140 +minecraft:sugar_cane[age=8] 148 192 101 140 118 153 80 140 74 96 50 140 59 76 40 140 +minecraft:sugar_cane[age=9] 148 192 101 140 118 153 80 140 74 96 50 140 59 76 40 140 +minecraft:sugar_cane[age=10] 148 192 101 140 118 153 80 140 74 96 50 140 59 76 40 140 +minecraft:sugar_cane[age=11] 148 192 101 140 118 153 80 140 74 96 50 140 59 76 40 140 +minecraft:sugar_cane[age=12] 148 192 101 140 118 153 80 140 74 96 50 140 59 76 40 140 +minecraft:sugar_cane[age=13] 148 192 101 140 118 153 80 140 74 96 50 140 59 76 40 140 +minecraft:sugar_cane[age=14] 148 192 101 140 118 153 80 140 74 96 50 140 59 76 40 140 +minecraft:sugar_cane[age=15] 148 192 101 140 118 153 80 140 74 96 50 140 59 76 40 140 +minecraft:jukebox 93 64 47 255 74 51 37 255 46 32 23 255 37 25 18 255 +minecraft:jukebox[has_record=false] 93 64 47 255 74 51 37 255 46 32 23 255 37 25 18 255 +minecraft:oak_fence 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=true,north=true,south=true,waterlogged=true,west=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=true,north=true,south=true,waterlogged=false,west=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=true,north=true,south=true,waterlogged=false,west=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=true,north=true,south=false,waterlogged=true,west=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=true,north=true,south=false,waterlogged=true,west=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=true,north=true,south=false,waterlogged=false,west=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=true,north=true,south=false,waterlogged=false,west=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=true,north=false,south=true,waterlogged=true,west=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=true,north=false,south=true,waterlogged=true,west=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=true,north=false,south=true,waterlogged=false,west=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=true,north=false,south=true,waterlogged=false,west=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=true,north=false,south=false,waterlogged=true,west=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=true,north=false,south=false,waterlogged=true,west=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=true,north=false,south=false,waterlogged=false,west=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=true,north=false,south=false,waterlogged=false,west=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=false,north=true,south=true,waterlogged=true,west=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=false,north=true,south=true,waterlogged=true,west=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=false,north=true,south=true,waterlogged=false,west=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=false,north=true,south=true,waterlogged=false,west=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=false,north=true,south=false,waterlogged=true,west=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=false,north=true,south=false,waterlogged=true,west=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=false,north=true,south=false,waterlogged=false,west=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=false,north=true,south=false,waterlogged=false,west=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=false,north=false,south=true,waterlogged=true,west=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=false,north=false,south=true,waterlogged=true,west=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=false,north=false,south=true,waterlogged=false,west=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=false,north=false,south=true,waterlogged=false,west=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=false,north=false,south=false,waterlogged=true,west=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=false,north=false,south=false,waterlogged=true,west=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=false,north=false,south=false,waterlogged=false,west=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=false,north=false,south=false,waterlogged=false,west=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pumpkin 198 118 24 255 158 94 19 255 99 59 12 255 79 47 9 255 +minecraft:netherrack 97 38 38 255 77 30 30 255 48 19 19 255 38 15 15 255 +minecraft:soul_sand 81 62 50 255 64 49 40 255 40 31 25 255 32 24 20 255 +minecraft:soul_soil 75 57 46 255 60 45 36 255 37 28 23 255 30 22 18 255 +minecraft:basalt 73 72 77 255 58 57 61 255 36 36 38 255 29 28 30 255 +minecraft:basalt[axis=y] 80 81 86 255 64 64 68 255 40 40 43 255 32 32 34 255 +minecraft:basalt[axis=z] 73 72 77 255 58 57 61 255 36 36 38 255 29 28 30 255 +minecraft:polished_basalt 88 88 91 255 70 70 72 255 44 44 45 255 35 35 36 255 +minecraft:polished_basalt[axis=y] 99 98 100 255 79 78 80 255 49 49 50 255 39 39 40 255 +minecraft:polished_basalt[axis=z] 88 88 91 255 70 70 72 255 44 44 45 255 35 35 36 255 +minecraft:soul_torch 109 115 89 19 87 92 71 19 54 57 44 19 43 46 35 19 +minecraft:soul_wall_torch 109 115 89 19 87 92 71 19 54 57 44 19 43 46 35 19 +minecraft:soul_wall_torch[facing=south] 109 115 89 19 87 92 71 19 54 57 44 19 43 46 35 19 +minecraft:soul_wall_torch[facing=west] 109 115 89 19 87 92 71 19 54 57 44 19 43 46 35 19 +minecraft:soul_wall_torch[facing=east] 109 115 89 19 87 92 71 19 54 57 44 19 43 46 35 19 +minecraft:glowstone 171 131 84 255 136 104 67 255 85 65 42 255 68 52 33 255 +minecraft:nether_portal 91 13 193 192 72 10 154 192 45 6 96 192 36 5 77 192 +minecraft:nether_portal[axis=z] 91 13 193 192 72 10 154 192 45 6 96 192 36 5 77 192 +minecraft:carved_pumpkin 198 118 24 255 158 94 19 255 99 59 12 255 79 47 9 255 +minecraft:carved_pumpkin[facing=south] 198 118 24 255 158 94 19 255 99 59 12 255 79 47 9 255 +minecraft:carved_pumpkin[facing=west] 198 118 24 255 158 94 19 255 99 59 12 255 79 47 9 255 +minecraft:carved_pumpkin[facing=east] 198 118 24 255 158 94 19 255 99 59 12 255 79 47 9 255 +minecraft:jack_o_lantern 198 118 24 255 158 94 19 255 99 59 12 255 79 47 9 255 +minecraft:jack_o_lantern[facing=south] 198 118 24 255 158 94 19 255 99 59 12 255 79 47 9 255 +minecraft:jack_o_lantern[facing=west] 198 118 24 255 158 94 19 255 99 59 12 255 79 47 9 255 +minecraft:jack_o_lantern[facing=east] 198 118 24 255 158 94 19 255 99 59 12 255 79 47 9 255 +minecraft:cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:cake[bites=1] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:cake[bites=2] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:cake[bites=3] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:cake[bites=4] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:cake[bites=5] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:cake[bites=6] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:repeater 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=1,facing=north,locked=true,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=1,facing=north,locked=false,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=1,facing=north,locked=false,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=1,facing=south,locked=true,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=1,facing=south,locked=true,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=1,facing=south,locked=false,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=1,facing=south,locked=false,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=1,facing=west,locked=true,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=1,facing=west,locked=true,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=1,facing=west,locked=false,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=1,facing=west,locked=false,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=1,facing=east,locked=true,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=1,facing=east,locked=true,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=1,facing=east,locked=false,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=1,facing=east,locked=false,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=2,facing=north,locked=true,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=2,facing=north,locked=true,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=2,facing=north,locked=false,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=2,facing=north,locked=false,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=2,facing=south,locked=true,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=2,facing=south,locked=true,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=2,facing=south,locked=false,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=2,facing=south,locked=false,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=2,facing=west,locked=true,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=2,facing=west,locked=true,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=2,facing=west,locked=false,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=2,facing=west,locked=false,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=2,facing=east,locked=true,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=2,facing=east,locked=true,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=2,facing=east,locked=false,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=2,facing=east,locked=false,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=3,facing=north,locked=true,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=3,facing=north,locked=true,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=3,facing=north,locked=false,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=3,facing=north,locked=false,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=3,facing=south,locked=true,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=3,facing=south,locked=true,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=3,facing=south,locked=false,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=3,facing=south,locked=false,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=3,facing=west,locked=true,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=3,facing=west,locked=true,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=3,facing=west,locked=false,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=3,facing=west,locked=false,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=3,facing=east,locked=true,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=3,facing=east,locked=true,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=3,facing=east,locked=false,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=3,facing=east,locked=false,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=4,facing=north,locked=true,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=4,facing=north,locked=true,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=4,facing=north,locked=false,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=4,facing=north,locked=false,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=4,facing=south,locked=true,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=4,facing=south,locked=true,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=4,facing=south,locked=false,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=4,facing=south,locked=false,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=4,facing=west,locked=true,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=4,facing=west,locked=true,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=4,facing=west,locked=false,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=4,facing=west,locked=false,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=4,facing=east,locked=true,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=4,facing=east,locked=true,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=4,facing=east,locked=false,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=4,facing=east,locked=false,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:white_stained_glass 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:orange_stained_glass 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:magenta_stained_glass 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:light_blue_stained_glass 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:yellow_stained_glass 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:lime_stained_glass 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:pink_stained_glass 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:gray_stained_glass 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:light_gray_stained_glass 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:cyan_stained_glass 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:purple_stained_glass 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:blue_stained_glass 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:brown_stained_glass 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:green_stained_glass 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:red_stained_glass 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:black_stained_glass 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:oak_trapdoor 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:spruce_trapdoor 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:birch_trapdoor 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:jungle_trapdoor 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:acacia_trapdoor 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:dark_oak_trapdoor 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:stone_bricks 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:mossy_stone_bricks 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:cracked_stone_bricks 118 117 118 255 94 93 94 255 59 58 59 255 47 46 47 255 +minecraft:chiseled_stone_bricks 119 118 119 255 95 94 95 255 59 59 59 255 47 47 47 255 +minecraft:infested_stone 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:infested_cobblestone 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:infested_stone_bricks 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:infested_mossy_stone_bricks 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:infested_cracked_stone_bricks 118 117 118 255 94 93 94 255 59 58 59 255 47 46 47 255 +minecraft:infested_chiseled_stone_bricks 119 118 119 255 95 94 95 255 59 59 59 255 47 47 47 255 +minecraft:brown_mushroom_block 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=true,north=true,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=true,north=true,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=true,north=true,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=true,north=true,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=true,north=true,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=true,north=true,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=true,north=true,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=true,north=false,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=true,north=false,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=true,north=false,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=true,north=false,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=true,north=false,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=true,north=false,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=true,north=false,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=true,north=false,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=false,north=true,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=false,north=true,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=false,north=true,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=false,north=true,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=false,north=true,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=false,north=true,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=false,north=true,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=false,north=true,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=false,north=false,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=false,north=false,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=false,north=false,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=false,north=false,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=false,north=false,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=false,north=false,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=false,north=false,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=false,north=false,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=true,north=true,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=true,north=true,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=true,north=true,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=true,north=true,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=true,north=true,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=true,north=true,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=true,north=true,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=true,north=true,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=true,north=false,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=true,north=false,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=true,north=false,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=true,north=false,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=true,north=false,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=true,north=false,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=true,north=false,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=true,north=false,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=false,north=true,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=false,north=true,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=false,north=true,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=false,north=true,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=false,north=true,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=false,north=true,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=false,north=true,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=false,north=true,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=false,north=false,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=false,north=false,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=false,north=false,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=false,north=false,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=false,north=false,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=false,north=false,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=false,north=false,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=false,north=false,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=true,north=true,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=true,north=true,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=true,north=true,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=true,north=true,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=true,north=true,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=true,north=true,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=true,north=true,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=true,north=false,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=true,north=false,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=true,north=false,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=true,north=false,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=true,north=false,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=true,north=false,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=true,north=false,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=true,north=false,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=false,north=true,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=false,north=true,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=false,north=true,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=false,north=true,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=false,north=true,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=false,north=true,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=false,north=true,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=false,north=true,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=false,north=false,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=false,north=false,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=false,north=false,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=false,north=false,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=false,north=false,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=false,north=false,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=false,north=false,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=false,north=false,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=true,north=true,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=true,north=true,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=true,north=true,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=true,north=true,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=true,north=true,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=true,north=true,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=true,north=true,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=true,north=true,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=true,north=false,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=true,north=false,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=true,north=false,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=true,north=false,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=true,north=false,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=true,north=false,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=true,north=false,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=true,north=false,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=false,north=true,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=false,north=true,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=false,north=true,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=false,north=true,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=false,north=true,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=false,north=true,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=false,north=true,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=false,north=true,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=false,north=false,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=false,north=false,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=false,north=false,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=false,north=false,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=false,north=false,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=false,north=false,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=false,north=false,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=false,north=false,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=true,north=true,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=true,north=true,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=true,north=true,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=true,north=true,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=true,north=true,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=true,north=true,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=true,north=true,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=true,north=false,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=true,north=false,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=true,north=false,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=true,north=false,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=true,north=false,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=true,north=false,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=true,north=false,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=true,north=false,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=false,north=true,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=false,north=true,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=false,north=true,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=false,north=true,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=false,north=true,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=false,north=true,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=false,north=true,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=false,north=true,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=false,north=false,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=false,north=false,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=false,north=false,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=false,north=false,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=false,north=false,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=false,north=false,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=false,north=false,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=false,north=false,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=true,north=true,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=true,north=true,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=true,north=true,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=true,north=true,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=true,north=true,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=true,north=true,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=true,north=true,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=true,north=true,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=true,north=false,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=true,north=false,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=true,north=false,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=true,north=false,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=true,north=false,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=true,north=false,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=true,north=false,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=true,north=false,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=false,north=true,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=false,north=true,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=false,north=true,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=false,north=true,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=false,north=true,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=false,north=true,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=false,north=true,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=false,north=true,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=false,north=false,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=false,north=false,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=false,north=false,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=false,north=false,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=false,north=false,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=false,north=false,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=false,north=false,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=false,north=false,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:iron_bars 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=true,north=true,south=true,waterlogged=true,west=false] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=true,north=true,south=true,waterlogged=false,west=true] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=true,north=true,south=true,waterlogged=false,west=false] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=true,north=true,south=false,waterlogged=true,west=true] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=true,north=true,south=false,waterlogged=true,west=false] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=true,north=true,south=false,waterlogged=false,west=true] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=true,north=true,south=false,waterlogged=false,west=false] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=true,north=false,south=true,waterlogged=true,west=true] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=true,north=false,south=true,waterlogged=true,west=false] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=true,north=false,south=true,waterlogged=false,west=true] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=true,north=false,south=true,waterlogged=false,west=false] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=true,north=false,south=false,waterlogged=true,west=true] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=true,north=false,south=false,waterlogged=true,west=false] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=true,north=false,south=false,waterlogged=false,west=true] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=true,north=false,south=false,waterlogged=false,west=false] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=false,north=true,south=true,waterlogged=true,west=true] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=false,north=true,south=true,waterlogged=true,west=false] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=false,north=true,south=true,waterlogged=false,west=true] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=false,north=true,south=true,waterlogged=false,west=false] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=false,north=true,south=false,waterlogged=true,west=true] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=false,north=true,south=false,waterlogged=true,west=false] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=false,north=true,south=false,waterlogged=false,west=true] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=false,north=true,south=false,waterlogged=false,west=false] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=false,north=false,south=true,waterlogged=true,west=true] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=false,north=false,south=true,waterlogged=true,west=false] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=false,north=false,south=true,waterlogged=false,west=true] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=false,north=false,south=true,waterlogged=false,west=false] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=false,north=false,south=false,waterlogged=true,west=true] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=false,north=false,south=false,waterlogged=true,west=false] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=false,north=false,south=false,waterlogged=false,west=true] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=false,north=false,south=false,waterlogged=false,west=false] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:chain 52 59 75 25 41 47 60 25 26 29 37 25 20 23 30 25 +minecraft:chain[axis=x,waterlogged=false] 52 59 75 25 41 47 60 25 26 29 37 25 20 23 30 25 +minecraft:chain[axis=y,waterlogged=true] 52 59 75 25 41 47 60 25 26 29 37 25 20 23 30 25 +minecraft:chain[axis=y,waterlogged=false] 52 59 75 25 41 47 60 25 26 29 37 25 20 23 30 25 +minecraft:chain[axis=z,waterlogged=true] 52 59 75 25 41 47 60 25 26 29 37 25 20 23 30 25 +minecraft:chain[axis=z,waterlogged=false] 52 59 75 25 41 47 60 25 26 29 37 25 20 23 30 25 +minecraft:glass_pane 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=true,north=true,south=true,waterlogged=false,west=false] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=true,north=true,south=false,waterlogged=true,west=true] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=true,north=true,south=false,waterlogged=true,west=false] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=true,north=true,south=false,waterlogged=false,west=true] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=true,north=true,south=false,waterlogged=false,west=false] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=true,north=false,south=true,waterlogged=true,west=true] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=true,north=false,south=true,waterlogged=true,west=false] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=true,north=false,south=true,waterlogged=false,west=true] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=true,north=false,south=true,waterlogged=false,west=false] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=true,north=false,south=false,waterlogged=true,west=true] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=true,north=false,south=false,waterlogged=true,west=false] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=true,north=false,south=false,waterlogged=false,west=true] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=true,north=false,south=false,waterlogged=false,west=false] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=false,north=true,south=true,waterlogged=true,west=true] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=false,north=true,south=true,waterlogged=true,west=false] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=false,north=true,south=true,waterlogged=false,west=true] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=false,north=true,south=true,waterlogged=false,west=false] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=false,north=true,south=false,waterlogged=true,west=true] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=false,north=true,south=false,waterlogged=true,west=false] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=false,north=true,south=false,waterlogged=false,west=true] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=false,north=true,south=false,waterlogged=false,west=false] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=false,north=false,south=true,waterlogged=true,west=true] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=false,north=false,south=true,waterlogged=true,west=false] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=false,north=false,south=true,waterlogged=false,west=true] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=false,north=false,south=true,waterlogged=false,west=false] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=false,north=false,south=false,waterlogged=true,west=true] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=false,north=false,south=false,waterlogged=true,west=false] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:melon 111 144 30 255 88 115 24 255 55 72 15 255 44 57 12 255 +minecraft:attached_pumpkin_stem 65 104 49 32 52 83 39 32 32 52 24 32 26 41 19 32 +minecraft:attached_pumpkin_stem[facing=south] 65 104 49 32 52 83 39 32 32 52 24 32 26 41 19 32 +minecraft:attached_pumpkin_stem[facing=west] 65 104 49 32 52 83 39 32 32 52 24 32 26 41 19 32 +minecraft:attached_pumpkin_stem[facing=east] 65 104 49 32 52 83 39 32 32 52 24 32 26 41 19 32 +minecraft:attached_melon_stem 66 106 49 32 52 84 39 32 33 53 24 32 26 42 19 32 +minecraft:attached_melon_stem[facing=south] 66 106 49 32 52 84 39 32 33 53 24 32 26 42 19 32 +minecraft:attached_melon_stem[facing=west] 66 106 49 32 52 84 39 32 33 53 24 32 26 42 19 32 +minecraft:attached_melon_stem[facing=east] 66 106 49 32 52 84 39 32 33 53 24 32 26 42 19 32 +minecraft:pumpkin_stem 73 115 54 34 58 92 43 34 36 57 27 34 29 46 21 34 +minecraft:pumpkin_stem[age=1] 73 115 54 34 58 92 43 34 36 57 27 34 29 46 21 34 +minecraft:pumpkin_stem[age=2] 73 115 54 34 58 92 43 34 36 57 27 34 29 46 21 34 +minecraft:pumpkin_stem[age=3] 73 115 54 34 58 92 43 34 36 57 27 34 29 46 21 34 +minecraft:pumpkin_stem[age=4] 73 115 54 34 58 92 43 34 36 57 27 34 29 46 21 34 +minecraft:pumpkin_stem[age=5] 73 115 54 34 58 92 43 34 36 57 27 34 29 46 21 34 +minecraft:pumpkin_stem[age=6] 73 115 54 34 58 92 43 34 36 57 27 34 29 46 21 34 +minecraft:pumpkin_stem[age=7] 73 115 54 34 58 92 43 34 36 57 27 34 29 46 21 34 +minecraft:melon_stem 72 115 54 34 57 92 43 34 36 57 27 34 28 46 21 34 +minecraft:melon_stem[age=1] 72 115 54 34 57 92 43 34 36 57 27 34 28 46 21 34 +minecraft:melon_stem[age=2] 72 115 54 34 57 92 43 34 36 57 27 34 28 46 21 34 +minecraft:melon_stem[age=3] 72 115 54 34 57 92 43 34 36 57 27 34 28 46 21 34 +minecraft:melon_stem[age=4] 72 115 54 34 57 92 43 34 36 57 27 34 28 46 21 34 +minecraft:melon_stem[age=5] 72 115 54 34 57 92 43 34 36 57 27 34 28 46 21 34 +minecraft:melon_stem[age=6] 72 115 54 34 57 92 43 34 36 57 27 34 28 46 21 34 +minecraft:melon_stem[age=7] 72 115 54 34 57 92 43 34 36 57 27 34 28 46 21 34 +minecraft:vine 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=true,north=true,south=true,up=true,west=false] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=true,north=true,south=true,up=false,west=true] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=true,north=true,south=true,up=false,west=false] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=true,north=true,south=false,up=true,west=true] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=true,north=true,south=false,up=true,west=false] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=true,north=true,south=false,up=false,west=true] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=true,north=true,south=false,up=false,west=false] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=true,north=false,south=true,up=true,west=true] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=true,north=false,south=true,up=true,west=false] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=true,north=false,south=true,up=false,west=true] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=true,north=false,south=true,up=false,west=false] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=true,north=false,south=false,up=true,west=true] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=true,north=false,south=false,up=true,west=false] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=true,north=false,south=false,up=false,west=true] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=true,north=false,south=false,up=false,west=false] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=false,north=true,south=true,up=true,west=true] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=false,north=true,south=true,up=true,west=false] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=false,north=true,south=true,up=false,west=true] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=false,north=true,south=true,up=false,west=false] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=false,north=true,south=false,up=true,west=true] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=false,north=true,south=false,up=true,west=false] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=false,north=true,south=false,up=false,west=true] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=false,north=true,south=false,up=false,west=false] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=false,north=false,south=true,up=true,west=true] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=false,north=false,south=true,up=true,west=false] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=false,north=false,south=true,up=false,west=true] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=false,north=false,south=true,up=false,west=false] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=false,north=false,south=false,up=true,west=true] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=false,north=false,south=false,up=true,west=false] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=false,north=false,south=false,up=false,west=true] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=false,north=false,south=false,up=false,west=false] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:glow_lichen 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:oak_fence_gate 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=north,in_wall=true,open=true,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=north,in_wall=true,open=false,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=north,in_wall=true,open=false,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=north,in_wall=false,open=true,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=north,in_wall=false,open=true,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=north,in_wall=false,open=false,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=north,in_wall=false,open=false,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=south,in_wall=true,open=true,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=south,in_wall=true,open=true,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=south,in_wall=true,open=false,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=south,in_wall=true,open=false,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=south,in_wall=false,open=true,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=south,in_wall=false,open=true,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=south,in_wall=false,open=false,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=south,in_wall=false,open=false,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=west,in_wall=true,open=true,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=west,in_wall=true,open=true,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=west,in_wall=true,open=false,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=west,in_wall=true,open=false,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=west,in_wall=false,open=true,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=west,in_wall=false,open=true,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=west,in_wall=false,open=false,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=west,in_wall=false,open=false,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=east,in_wall=true,open=true,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=east,in_wall=true,open=true,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=east,in_wall=true,open=false,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=east,in_wall=true,open=false,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=east,in_wall=false,open=true,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=east,in_wall=false,open=true,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=east,in_wall=false,open=false,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=east,in_wall=false,open=false,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brick_stairs 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=top,shape=straight,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=top,shape=straight,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=top,shape=straight,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=top,shape=straight,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=top,shape=straight,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=top,shape=straight,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=top,shape=straight,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:stone_brick_stairs 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:mycelium 69 110 51 255 55 88 40 255 34 55 25 255 27 44 20 255 +minecraft:mycelium[snowy=false] 111 98 101 255 88 78 80 255 55 49 50 255 44 39 40 255 +minecraft:lily_pad 16 66 25 149 12 52 20 149 8 33 12 149 6 26 10 149 +minecraft:nether_bricks 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=true,north=true,south=true,waterlogged=true,west=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=true,north=true,south=true,waterlogged=false,west=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=true,north=true,south=true,waterlogged=false,west=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=true,north=true,south=false,waterlogged=true,west=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=true,north=true,south=false,waterlogged=true,west=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=true,north=true,south=false,waterlogged=false,west=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=true,north=true,south=false,waterlogged=false,west=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=true,north=false,south=true,waterlogged=true,west=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=true,north=false,south=true,waterlogged=true,west=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=true,north=false,south=true,waterlogged=false,west=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=true,north=false,south=true,waterlogged=false,west=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=true,north=false,south=false,waterlogged=true,west=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=true,north=false,south=false,waterlogged=true,west=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=true,north=false,south=false,waterlogged=false,west=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=true,north=false,south=false,waterlogged=false,west=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=false,north=true,south=true,waterlogged=true,west=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=false,north=true,south=true,waterlogged=true,west=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=false,north=true,south=true,waterlogged=false,west=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=false,north=true,south=true,waterlogged=false,west=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=false,north=true,south=false,waterlogged=true,west=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=false,north=true,south=false,waterlogged=true,west=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=false,north=true,south=false,waterlogged=false,west=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=false,north=true,south=false,waterlogged=false,west=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=false,north=false,south=true,waterlogged=true,west=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=false,north=false,south=true,waterlogged=true,west=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=false,north=false,south=true,waterlogged=false,west=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=false,north=false,south=true,waterlogged=false,west=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=false,north=false,south=false,waterlogged=true,west=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=false,north=false,south=false,waterlogged=true,west=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=false,north=false,south=false,waterlogged=false,west=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=false,north=false,south=false,waterlogged=false,west=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_wart 117 18 21 43 93 14 16 43 58 9 10 43 46 7 8 43 +minecraft:nether_wart[age=1] 115 17 18 118 92 13 14 118 57 8 9 118 46 6 7 118 +minecraft:nether_wart[age=2] 115 17 18 118 92 13 14 118 57 8 9 118 46 6 7 118 +minecraft:nether_wart[age=3] 111 18 19 159 88 14 15 159 55 9 9 159 44 7 7 159 +minecraft:enchanting_table 128 75 85 255 102 60 68 255 64 37 42 255 51 30 34 255 +minecraft:brewing_stand 123 101 81 125 98 80 64 125 61 50 40 125 49 40 32 125 +minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=true,has_bottle_2=false] 123 101 81 125 98 80 64 125 61 50 40 125 49 40 32 125 +minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=false,has_bottle_2=true] 123 101 81 125 98 80 64 125 61 50 40 125 49 40 32 125 +minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=false,has_bottle_2=false] 123 101 81 125 98 80 64 125 61 50 40 125 49 40 32 125 +minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=true,has_bottle_2=true] 123 101 81 125 98 80 64 125 61 50 40 125 49 40 32 125 +minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=true,has_bottle_2=false] 123 101 81 125 98 80 64 125 61 50 40 125 49 40 32 125 +minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=false,has_bottle_2=true] 123 101 81 125 98 80 64 125 61 50 40 125 49 40 32 125 +minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=false,has_bottle_2=false] 123 101 81 125 98 80 64 125 61 50 40 125 49 40 32 125 +minecraft:cauldron 73 72 74 155 58 57 59 155 36 36 37 155 29 28 29 155 +minecraft:water_cauldron 73 72 74 155 58 57 59 155 36 36 37 155 29 28 29 155 +minecraft:water_cauldron[level=2] 73 72 74 155 58 57 59 155 36 36 37 155 29 28 29 155 +minecraft:water_cauldron[level=3] 73 72 74 155 58 57 59 155 36 36 37 155 29 28 29 155 +minecraft:lava_cauldron 73 72 74 155 58 57 59 155 36 36 37 155 29 28 29 155 +minecraft:powder_snow_cauldron 73 72 74 155 58 57 59 155 36 36 37 155 29 28 29 155 +minecraft:powder_snow_cauldron[level=2] 73 72 74 155 58 57 59 155 36 36 37 155 29 28 29 155 +minecraft:powder_snow_cauldron[level=3] 73 72 74 155 58 57 59 155 36 36 37 155 29 28 29 155 +minecraft:end_portal 117 90 156 255 93 72 124 255 58 45 78 255 46 36 62 255 +minecraft:end_portal_frame 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255 +minecraft:end_portal_frame[eye=true,facing=south] 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255 +minecraft:end_portal_frame[eye=true,facing=west] 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255 +minecraft:end_portal_frame[eye=true,facing=east] 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255 +minecraft:end_portal_frame[eye=false,facing=north] 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255 +minecraft:end_portal_frame[eye=false,facing=south] 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255 +minecraft:end_portal_frame[eye=false,facing=west] 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255 +minecraft:end_portal_frame[eye=false,facing=east] 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255 +minecraft:end_stone 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255 +minecraft:dragon_egg 12 9 15 255 9 7 12 255 6 4 7 255 4 3 6 255 +minecraft:redstone_lamp 142 101 60 255 113 80 48 255 71 50 30 255 56 40 24 255 +minecraft:redstone_lamp[lit=false] 95 54 30 255 76 43 24 255 47 27 15 255 38 21 12 255 +minecraft:cocoa 156 94 43 131 124 75 34 131 78 47 21 131 62 37 17 131 +minecraft:cocoa[age=0,facing=south] 156 94 43 131 124 75 34 131 78 47 21 131 62 37 17 131 +minecraft:cocoa[age=0,facing=west] 156 94 43 131 124 75 34 131 78 47 21 131 62 37 17 131 +minecraft:cocoa[age=0,facing=east] 156 94 43 131 124 75 34 131 78 47 21 131 62 37 17 131 +minecraft:cocoa[age=1,facing=north] 156 94 43 131 124 75 34 131 78 47 21 131 62 37 17 131 +minecraft:cocoa[age=1,facing=south] 156 94 43 131 124 75 34 131 78 47 21 131 62 37 17 131 +minecraft:cocoa[age=1,facing=west] 156 94 43 131 124 75 34 131 78 47 21 131 62 37 17 131 +minecraft:cocoa[age=1,facing=east] 156 94 43 131 124 75 34 131 78 47 21 131 62 37 17 131 +minecraft:cocoa[age=2,facing=north] 156 94 43 131 124 75 34 131 78 47 21 131 62 37 17 131 +minecraft:cocoa[age=2,facing=south] 156 94 43 131 124 75 34 131 78 47 21 131 62 37 17 131 +minecraft:cocoa[age=2,facing=west] 156 94 43 131 124 75 34 131 78 47 21 131 62 37 17 131 +minecraft:cocoa[age=2,facing=east] 156 94 43 131 124 75 34 131 78 47 21 131 62 37 17 131 +minecraft:sandstone_stairs 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=top,shape=straight,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:emerald_ore 108 136 115 255 86 108 92 255 54 68 57 255 43 54 46 255 +minecraft:deepslate_emerald_ore 78 104 87 255 62 83 69 255 39 52 43 255 31 41 34 255 +minecraft:ender_chest 25 45 45 195 20 36 36 195 12 22 22 195 10 18 18 195 +minecraft:ender_chest[facing=north,waterlogged=false] 25 45 45 195 20 36 36 195 12 22 22 195 10 18 18 195 +minecraft:ender_chest[facing=south,waterlogged=true] 25 45 45 195 20 36 36 195 12 22 22 195 10 18 18 195 +minecraft:ender_chest[facing=south,waterlogged=false] 25 45 45 195 20 36 36 195 12 22 22 195 10 18 18 195 +minecraft:ender_chest[facing=west,waterlogged=true] 25 45 45 195 20 36 36 195 12 22 22 195 10 18 18 195 +minecraft:ender_chest[facing=west,waterlogged=false] 25 45 45 195 20 36 36 195 12 22 22 195 10 18 18 195 +minecraft:ender_chest[facing=east,waterlogged=true] 25 45 45 195 20 36 36 195 12 22 22 195 10 18 18 195 +minecraft:ender_chest[facing=east,waterlogged=false] 25 45 45 195 20 36 36 195 12 22 22 195 10 18 18 195 +minecraft:tripwire_hook 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:tripwire_hook[attached=true,facing=north,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:tripwire_hook[attached=true,facing=south,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:tripwire_hook[attached=true,facing=south,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:tripwire_hook[attached=true,facing=west,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:tripwire_hook[attached=true,facing=west,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:tripwire_hook[attached=true,facing=east,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:tripwire_hook[attached=true,facing=east,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:tripwire_hook[attached=false,facing=north,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:tripwire_hook[attached=false,facing=north,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:tripwire_hook[attached=false,facing=south,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:tripwire_hook[attached=false,facing=south,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:tripwire_hook[attached=false,facing=west,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:tripwire_hook[attached=false,facing=west,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:tripwire_hook[attached=false,facing=east,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:tripwire_hook[attached=false,facing=east,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:emerald_block 42 203 87 255 33 162 69 255 21 101 43 255 16 81 34 255 +minecraft:spruce_stairs 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=top,shape=straight,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=top,shape=straight,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=top,shape=straight,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=top,shape=straight,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=top,shape=straight,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=top,shape=straight,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=top,shape=straight,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:birch_stairs 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=top,shape=straight,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=top,shape=straight,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=top,shape=straight,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=top,shape=straight,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=top,shape=straight,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=top,shape=straight,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=top,shape=straight,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:jungle_stairs 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=top,shape=straight,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=top,shape=straight,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=top,shape=straight,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=top,shape=straight,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=top,shape=straight,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=top,shape=straight,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=top,shape=straight,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:command_block 173 131 106 255 138 104 84 255 86 65 53 255 69 52 42 255 +minecraft:command_block[conditional=true,facing=east] 180 135 108 255 144 108 86 255 90 67 54 255 72 54 43 255 +minecraft:command_block[conditional=true,facing=south] 178 133 105 255 142 106 84 255 89 66 52 255 71 53 42 255 +minecraft:command_block[conditional=true,facing=west] 178 133 105 255 142 106 84 255 89 66 52 255 71 53 42 255 +minecraft:command_block[conditional=true,facing=up] 178 133 105 255 142 106 84 255 89 66 52 255 71 53 42 255 +minecraft:command_block[conditional=true,facing=down] 178 133 105 255 142 106 84 255 89 66 52 255 71 53 42 255 +minecraft:command_block[conditional=false,facing=north] 173 131 106 255 138 104 84 255 86 65 53 255 69 52 42 255 +minecraft:command_block[conditional=false,facing=east] 180 135 108 255 144 108 86 255 90 67 54 255 72 54 43 255 +minecraft:command_block[conditional=false,facing=south] 177 133 107 255 141 106 85 255 88 66 53 255 70 53 42 255 +minecraft:command_block[conditional=false,facing=west] 177 133 107 255 141 106 85 255 88 66 53 255 70 53 42 255 +minecraft:command_block[conditional=false,facing=up] 177 133 107 255 141 106 85 255 88 66 53 255 70 53 42 255 +minecraft:command_block[conditional=false,facing=down] 177 133 107 255 141 106 85 255 88 66 53 255 70 53 42 255 +minecraft:beacon 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:cobblestone_wall 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:mossy_cobblestone_wall 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:flower_pot 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_oak_sapling 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_spruce_sapling 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_birch_sapling 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_jungle_sapling 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_acacia_sapling 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_dark_oak_sapling 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_fern 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_dandelion 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_poppy 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_blue_orchid 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_allium 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_azure_bluet 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_red_tulip 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_orange_tulip 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_white_tulip 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_pink_tulip 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_oxeye_daisy 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_cornflower 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_lily_of_the_valley 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_wither_rose 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_red_mushroom 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_brown_mushroom 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_dead_bush 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_cactus 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:carrots 44 110 39 16 35 88 31 16 22 55 19 16 17 44 15 16 +minecraft:carrots[age=1] 44 110 39 16 35 88 31 16 22 55 19 16 17 44 15 16 +minecraft:carrots[age=2] 52 120 40 41 41 96 32 41 26 60 20 41 20 48 16 41 +minecraft:carrots[age=3] 52 120 40 41 41 96 32 41 26 60 20 41 20 48 16 41 +minecraft:carrots[age=4] 56 113 37 81 44 90 29 81 28 56 18 81 22 45 14 81 +minecraft:carrots[age=5] 56 113 37 81 44 90 29 81 28 56 18 81 22 45 14 81 +minecraft:carrots[age=6] 56 113 37 81 44 90 29 81 28 56 18 81 22 45 14 81 +minecraft:carrots[age=7] 81 123 37 110 64 98 29 110 40 61 18 110 32 49 14 110 +minecraft:potatoes 58 129 40 14 46 103 32 14 29 64 20 14 23 51 16 14 +minecraft:potatoes[age=1] 58 129 40 14 46 103 32 14 29 64 20 14 23 51 16 14 +minecraft:potatoes[age=2] 68 131 42 25 54 104 33 25 34 65 21 25 27 52 16 25 +minecraft:potatoes[age=3] 68 131 42 25 54 104 33 25 34 65 21 25 27 52 16 25 +minecraft:potatoes[age=4] 85 129 47 44 68 103 37 44 42 64 23 44 34 51 18 44 +minecraft:potatoes[age=5] 85 129 47 44 68 103 37 44 42 64 23 44 34 51 18 44 +minecraft:potatoes[age=6] 85 129 47 44 68 103 37 44 42 64 23 44 34 51 18 44 +minecraft:potatoes[age=7] 84 135 47 80 67 108 37 80 42 67 23 80 33 54 18 80 +minecraft:oak_button 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=floor,facing=north,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=floor,facing=south,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=floor,facing=south,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=floor,facing=west,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=floor,facing=west,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=floor,facing=east,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=floor,facing=east,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=wall,facing=north,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=wall,facing=north,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=wall,facing=south,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=wall,facing=south,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=wall,facing=west,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=wall,facing=west,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=wall,facing=east,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=wall,facing=east,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=ceiling,facing=north,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=ceiling,facing=north,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=ceiling,facing=south,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=ceiling,facing=south,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=ceiling,facing=west,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=ceiling,facing=west,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=ceiling,facing=east,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=ceiling,facing=east,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:spruce_button 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=floor,facing=north,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=floor,facing=south,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=floor,facing=south,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=floor,facing=west,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=floor,facing=west,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=floor,facing=east,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=floor,facing=east,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=wall,facing=north,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=wall,facing=north,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=wall,facing=south,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=wall,facing=south,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=wall,facing=west,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=wall,facing=west,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=wall,facing=east,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=wall,facing=east,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=ceiling,facing=north,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=ceiling,facing=north,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=ceiling,facing=south,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=ceiling,facing=south,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=ceiling,facing=west,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=ceiling,facing=west,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=ceiling,facing=east,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=ceiling,facing=east,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:birch_button 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=floor,facing=north,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=floor,facing=south,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=floor,facing=south,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=floor,facing=west,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=floor,facing=west,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=floor,facing=east,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=floor,facing=east,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=wall,facing=north,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=wall,facing=north,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=wall,facing=south,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=wall,facing=south,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=wall,facing=west,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=wall,facing=west,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=wall,facing=east,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=wall,facing=east,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=ceiling,facing=north,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=ceiling,facing=north,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=ceiling,facing=south,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=ceiling,facing=south,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=ceiling,facing=west,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=ceiling,facing=west,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=ceiling,facing=east,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=ceiling,facing=east,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:jungle_button 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=floor,facing=north,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=floor,facing=south,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=floor,facing=south,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=floor,facing=west,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=floor,facing=west,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=floor,facing=east,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=floor,facing=east,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=wall,facing=north,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=wall,facing=north,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=wall,facing=south,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=wall,facing=south,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=wall,facing=west,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=wall,facing=west,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=wall,facing=east,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=wall,facing=east,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=ceiling,facing=north,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=ceiling,facing=north,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=ceiling,facing=south,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=ceiling,facing=south,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=ceiling,facing=west,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=ceiling,facing=west,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=ceiling,facing=east,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=ceiling,facing=east,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:acacia_button 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=floor,facing=north,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=floor,facing=south,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=floor,facing=south,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=floor,facing=west,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=floor,facing=west,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=floor,facing=east,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=floor,facing=east,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=wall,facing=north,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=wall,facing=north,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=wall,facing=south,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=wall,facing=south,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=wall,facing=west,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=wall,facing=west,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=wall,facing=east,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=wall,facing=east,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=ceiling,facing=north,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=ceiling,facing=north,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=ceiling,facing=south,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=ceiling,facing=south,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=ceiling,facing=west,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=ceiling,facing=west,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=ceiling,facing=east,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=ceiling,facing=east,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:dark_oak_button 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=floor,facing=north,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=floor,facing=south,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=floor,facing=south,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=floor,facing=west,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=floor,facing=west,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=floor,facing=east,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=floor,facing=east,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=wall,facing=north,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=wall,facing=north,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=wall,facing=south,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=wall,facing=south,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=wall,facing=west,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=wall,facing=west,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=wall,facing=east,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=wall,facing=east,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=ceiling,facing=north,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=ceiling,facing=north,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=ceiling,facing=south,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=ceiling,facing=south,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=ceiling,facing=west,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=ceiling,facing=west,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=ceiling,facing=east,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=ceiling,facing=east,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:skeleton_skull 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_skull[rotation=1] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_skull[rotation=2] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_skull[rotation=3] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_skull[rotation=4] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_skull[rotation=5] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_skull[rotation=6] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_skull[rotation=7] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_skull[rotation=8] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_skull[rotation=9] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_skull[rotation=10] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_skull[rotation=11] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_skull[rotation=12] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_skull[rotation=13] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_skull[rotation=14] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_skull[rotation=15] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_wall_skull 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_wall_skull[facing=south] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_wall_skull[facing=west] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_wall_skull[facing=east] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:wither_skeleton_skull 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_skull[rotation=1] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_skull[rotation=2] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_skull[rotation=3] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_skull[rotation=4] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_skull[rotation=5] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_skull[rotation=6] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_skull[rotation=7] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_skull[rotation=8] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_skull[rotation=9] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_skull[rotation=10] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_skull[rotation=11] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_skull[rotation=12] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_skull[rotation=13] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_skull[rotation=14] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_skull[rotation=15] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_wall_skull 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_wall_skull[facing=south] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_wall_skull[facing=west] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_wall_skull[facing=east] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:zombie_head 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_head[rotation=1] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_head[rotation=2] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_head[rotation=3] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_head[rotation=4] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_head[rotation=5] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_head[rotation=6] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_head[rotation=7] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_head[rotation=8] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_head[rotation=9] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_head[rotation=10] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_head[rotation=11] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_head[rotation=12] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_head[rotation=13] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_head[rotation=14] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_head[rotation=15] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_wall_head 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_wall_head[facing=south] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_wall_head[facing=west] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_wall_head[facing=east] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:player_head 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_head[rotation=1] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_head[rotation=2] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_head[rotation=3] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_head[rotation=4] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_head[rotation=5] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_head[rotation=6] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_head[rotation=7] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_head[rotation=8] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_head[rotation=9] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_head[rotation=10] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_head[rotation=11] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_head[rotation=12] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_head[rotation=13] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_head[rotation=14] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_head[rotation=15] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_wall_head 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_wall_head[facing=south] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_wall_head[facing=west] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_wall_head[facing=east] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:creeper_head 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_head[rotation=1] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_head[rotation=2] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_head[rotation=3] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_head[rotation=4] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_head[rotation=5] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_head[rotation=6] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_head[rotation=7] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_head[rotation=8] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_head[rotation=9] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_head[rotation=10] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_head[rotation=11] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_head[rotation=12] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_head[rotation=13] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_head[rotation=14] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_head[rotation=15] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_wall_head 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_wall_head[facing=south] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_wall_head[facing=west] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_wall_head[facing=east] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_head 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_head[rotation=1] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_head[rotation=2] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_head[rotation=3] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_head[rotation=4] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_head[rotation=5] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_head[rotation=6] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_head[rotation=7] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_head[rotation=8] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_head[rotation=9] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_head[rotation=10] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_head[rotation=11] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_head[rotation=12] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_head[rotation=13] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_head[rotation=14] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_head[rotation=15] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_wall_head 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_wall_head[facing=south] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_wall_head[facing=west] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_wall_head[facing=east] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:anvil 68 68 68 255 54 54 54 255 34 34 34 255 27 27 27 255 +minecraft:anvil[facing=south] 68 68 68 255 54 54 54 255 34 34 34 255 27 27 27 255 +minecraft:anvil[facing=west] 68 68 68 255 54 54 54 255 34 34 34 255 27 27 27 255 +minecraft:anvil[facing=east] 68 68 68 255 54 54 54 255 34 34 34 255 27 27 27 255 +minecraft:chipped_anvil 68 68 68 255 54 54 54 255 34 34 34 255 27 27 27 255 +minecraft:chipped_anvil[facing=south] 68 68 68 255 54 54 54 255 34 34 34 255 27 27 27 255 +minecraft:chipped_anvil[facing=west] 68 68 68 255 54 54 54 255 34 34 34 255 27 27 27 255 +minecraft:chipped_anvil[facing=east] 68 68 68 255 54 54 54 255 34 34 34 255 27 27 27 255 +minecraft:damaged_anvil 68 68 68 255 54 54 54 255 34 34 34 255 27 27 27 255 +minecraft:damaged_anvil[facing=south] 68 68 68 255 54 54 54 255 34 34 34 255 27 27 27 255 +minecraft:damaged_anvil[facing=west] 68 68 68 255 54 54 54 255 34 34 34 255 27 27 27 255 +minecraft:damaged_anvil[facing=east] 68 68 68 255 54 54 54 255 34 34 34 255 27 27 27 255 +minecraft:trapped_chest 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=north,type=single,waterlogged=false] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=north,type=left,waterlogged=true] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=north,type=left,waterlogged=false] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=north,type=right,waterlogged=true] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=north,type=right,waterlogged=false] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=south,type=single,waterlogged=true] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=south,type=single,waterlogged=false] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=south,type=left,waterlogged=true] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=south,type=left,waterlogged=false] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=south,type=right,waterlogged=true] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=south,type=right,waterlogged=false] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=west,type=single,waterlogged=true] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=west,type=single,waterlogged=false] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=west,type=left,waterlogged=true] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=west,type=left,waterlogged=false] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=west,type=right,waterlogged=true] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=west,type=right,waterlogged=false] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=east,type=single,waterlogged=true] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=east,type=single,waterlogged=false] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=east,type=left,waterlogged=true] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=east,type=left,waterlogged=false] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=east,type=right,waterlogged=true] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=east,type=right,waterlogged=false] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:light_weighted_pressure_plate 246 208 61 255 196 166 48 255 123 104 30 255 98 83 24 255 +minecraft:light_weighted_pressure_plate[power=1] 246 208 61 255 196 166 48 255 123 104 30 255 98 83 24 255 +minecraft:light_weighted_pressure_plate[power=2] 246 208 61 255 196 166 48 255 123 104 30 255 98 83 24 255 +minecraft:light_weighted_pressure_plate[power=3] 246 208 61 255 196 166 48 255 123 104 30 255 98 83 24 255 +minecraft:light_weighted_pressure_plate[power=4] 246 208 61 255 196 166 48 255 123 104 30 255 98 83 24 255 +minecraft:light_weighted_pressure_plate[power=5] 246 208 61 255 196 166 48 255 123 104 30 255 98 83 24 255 +minecraft:light_weighted_pressure_plate[power=6] 246 208 61 255 196 166 48 255 123 104 30 255 98 83 24 255 +minecraft:light_weighted_pressure_plate[power=7] 246 208 61 255 196 166 48 255 123 104 30 255 98 83 24 255 +minecraft:light_weighted_pressure_plate[power=8] 246 208 61 255 196 166 48 255 123 104 30 255 98 83 24 255 +minecraft:light_weighted_pressure_plate[power=9] 246 208 61 255 196 166 48 255 123 104 30 255 98 83 24 255 +minecraft:light_weighted_pressure_plate[power=10] 246 208 61 255 196 166 48 255 123 104 30 255 98 83 24 255 +minecraft:light_weighted_pressure_plate[power=11] 246 208 61 255 196 166 48 255 123 104 30 255 98 83 24 255 +minecraft:light_weighted_pressure_plate[power=12] 246 208 61 255 196 166 48 255 123 104 30 255 98 83 24 255 +minecraft:light_weighted_pressure_plate[power=13] 246 208 61 255 196 166 48 255 123 104 30 255 98 83 24 255 +minecraft:light_weighted_pressure_plate[power=14] 246 208 61 255 196 166 48 255 123 104 30 255 98 83 24 255 +minecraft:light_weighted_pressure_plate[power=15] 246 208 61 255 196 166 48 255 123 104 30 255 98 83 24 255 +minecraft:heavy_weighted_pressure_plate 220 220 220 255 176 176 176 255 110 110 110 255 88 88 88 255 +minecraft:heavy_weighted_pressure_plate[power=1] 220 220 220 255 176 176 176 255 110 110 110 255 88 88 88 255 +minecraft:heavy_weighted_pressure_plate[power=2] 220 220 220 255 176 176 176 255 110 110 110 255 88 88 88 255 +minecraft:heavy_weighted_pressure_plate[power=3] 220 220 220 255 176 176 176 255 110 110 110 255 88 88 88 255 +minecraft:heavy_weighted_pressure_plate[power=4] 220 220 220 255 176 176 176 255 110 110 110 255 88 88 88 255 +minecraft:heavy_weighted_pressure_plate[power=5] 220 220 220 255 176 176 176 255 110 110 110 255 88 88 88 255 +minecraft:heavy_weighted_pressure_plate[power=6] 220 220 220 255 176 176 176 255 110 110 110 255 88 88 88 255 +minecraft:heavy_weighted_pressure_plate[power=7] 220 220 220 255 176 176 176 255 110 110 110 255 88 88 88 255 +minecraft:heavy_weighted_pressure_plate[power=8] 220 220 220 255 176 176 176 255 110 110 110 255 88 88 88 255 +minecraft:heavy_weighted_pressure_plate[power=9] 220 220 220 255 176 176 176 255 110 110 110 255 88 88 88 255 +minecraft:heavy_weighted_pressure_plate[power=10] 220 220 220 255 176 176 176 255 110 110 110 255 88 88 88 255 +minecraft:heavy_weighted_pressure_plate[power=11] 220 220 220 255 176 176 176 255 110 110 110 255 88 88 88 255 +minecraft:heavy_weighted_pressure_plate[power=12] 220 220 220 255 176 176 176 255 110 110 110 255 88 88 88 255 +minecraft:heavy_weighted_pressure_plate[power=13] 220 220 220 255 176 176 176 255 110 110 110 255 88 88 88 255 +minecraft:heavy_weighted_pressure_plate[power=14] 220 220 220 255 176 176 176 255 110 110 110 255 88 88 88 255 +minecraft:heavy_weighted_pressure_plate[power=15] 220 220 220 255 176 176 176 255 110 110 110 255 88 88 88 255 +minecraft:comparator 175 161 159 255 140 128 127 255 87 80 79 255 70 64 63 255 +minecraft:comparator[facing=north,mode=compare,powered=false] 166 161 159 255 132 128 127 255 83 80 79 255 66 64 63 255 +minecraft:comparator[facing=north,mode=subtract,powered=true] 175 161 159 255 140 128 127 255 87 80 79 255 70 64 63 255 +minecraft:comparator[facing=north,mode=subtract,powered=false] 166 161 159 255 132 128 127 255 83 80 79 255 66 64 63 255 +minecraft:comparator[facing=south,mode=compare,powered=true] 175 161 159 255 140 128 127 255 87 80 79 255 70 64 63 255 +minecraft:comparator[facing=south,mode=compare,powered=false] 166 161 159 255 132 128 127 255 83 80 79 255 66 64 63 255 +minecraft:comparator[facing=south,mode=subtract,powered=true] 175 161 159 255 140 128 127 255 87 80 79 255 70 64 63 255 +minecraft:comparator[facing=south,mode=subtract,powered=false] 166 161 159 255 132 128 127 255 83 80 79 255 66 64 63 255 +minecraft:comparator[facing=west,mode=compare,powered=true] 175 161 159 255 140 128 127 255 87 80 79 255 70 64 63 255 +minecraft:comparator[facing=west,mode=compare,powered=false] 166 161 159 255 132 128 127 255 83 80 79 255 66 64 63 255 +minecraft:comparator[facing=west,mode=subtract,powered=true] 175 161 159 255 140 128 127 255 87 80 79 255 70 64 63 255 +minecraft:comparator[facing=west,mode=subtract,powered=false] 166 161 159 255 132 128 127 255 83 80 79 255 66 64 63 255 +minecraft:comparator[facing=east,mode=compare,powered=true] 175 161 159 255 140 128 127 255 87 80 79 255 70 64 63 255 +minecraft:comparator[facing=east,mode=compare,powered=false] 166 161 159 255 132 128 127 255 83 80 79 255 66 64 63 255 +minecraft:comparator[facing=east,mode=subtract,powered=true] 175 161 159 255 140 128 127 255 87 80 79 255 70 64 63 255 +minecraft:comparator[facing=east,mode=subtract,powered=false] 166 161 159 255 132 128 127 255 83 80 79 255 66 64 63 255 +minecraft:daylight_detector 106 109 112 255 84 87 89 255 53 54 56 255 42 43 44 255 +minecraft:daylight_detector[inverted=true,power=1] 106 109 112 255 84 87 89 255 53 54 56 255 42 43 44 255 +minecraft:daylight_detector[inverted=true,power=2] 106 109 112 255 84 87 89 255 53 54 56 255 42 43 44 255 +minecraft:daylight_detector[inverted=true,power=3] 106 109 112 255 84 87 89 255 53 54 56 255 42 43 44 255 +minecraft:daylight_detector[inverted=true,power=4] 106 109 112 255 84 87 89 255 53 54 56 255 42 43 44 255 +minecraft:daylight_detector[inverted=true,power=5] 106 109 112 255 84 87 89 255 53 54 56 255 42 43 44 255 +minecraft:daylight_detector[inverted=true,power=6] 106 109 112 255 84 87 89 255 53 54 56 255 42 43 44 255 +minecraft:daylight_detector[inverted=true,power=7] 106 109 112 255 84 87 89 255 53 54 56 255 42 43 44 255 +minecraft:daylight_detector[inverted=true,power=8] 106 109 112 255 84 87 89 255 53 54 56 255 42 43 44 255 +minecraft:daylight_detector[inverted=true,power=9] 106 109 112 255 84 87 89 255 53 54 56 255 42 43 44 255 +minecraft:daylight_detector[inverted=true,power=10] 106 109 112 255 84 87 89 255 53 54 56 255 42 43 44 255 +minecraft:daylight_detector[inverted=true,power=11] 106 109 112 255 84 87 89 255 53 54 56 255 42 43 44 255 +minecraft:daylight_detector[inverted=true,power=12] 106 109 112 255 84 87 89 255 53 54 56 255 42 43 44 255 +minecraft:daylight_detector[inverted=true,power=13] 106 109 112 255 84 87 89 255 53 54 56 255 42 43 44 255 +minecraft:daylight_detector[inverted=true,power=14] 106 109 112 255 84 87 89 255 53 54 56 255 42 43 44 255 +minecraft:daylight_detector[inverted=true,power=15] 106 109 112 255 84 87 89 255 53 54 56 255 42 43 44 255 +minecraft:daylight_detector[inverted=false,power=0] 130 116 94 255 104 92 75 255 65 58 47 255 52 46 37 255 +minecraft:daylight_detector[inverted=false,power=1] 130 116 94 255 104 92 75 255 65 58 47 255 52 46 37 255 +minecraft:daylight_detector[inverted=false,power=2] 130 116 94 255 104 92 75 255 65 58 47 255 52 46 37 255 +minecraft:daylight_detector[inverted=false,power=3] 130 116 94 255 104 92 75 255 65 58 47 255 52 46 37 255 +minecraft:daylight_detector[inverted=false,power=4] 130 116 94 255 104 92 75 255 65 58 47 255 52 46 37 255 +minecraft:daylight_detector[inverted=false,power=5] 130 116 94 255 104 92 75 255 65 58 47 255 52 46 37 255 +minecraft:daylight_detector[inverted=false,power=6] 130 116 94 255 104 92 75 255 65 58 47 255 52 46 37 255 +minecraft:daylight_detector[inverted=false,power=7] 130 116 94 255 104 92 75 255 65 58 47 255 52 46 37 255 +minecraft:daylight_detector[inverted=false,power=8] 130 116 94 255 104 92 75 255 65 58 47 255 52 46 37 255 +minecraft:daylight_detector[inverted=false,power=9] 130 116 94 255 104 92 75 255 65 58 47 255 52 46 37 255 +minecraft:daylight_detector[inverted=false,power=10] 130 116 94 255 104 92 75 255 65 58 47 255 52 46 37 255 +minecraft:daylight_detector[inverted=false,power=11] 130 116 94 255 104 92 75 255 65 58 47 255 52 46 37 255 +minecraft:daylight_detector[inverted=false,power=12] 130 116 94 255 104 92 75 255 65 58 47 255 52 46 37 255 +minecraft:daylight_detector[inverted=false,power=13] 130 116 94 255 104 92 75 255 65 58 47 255 52 46 37 255 +minecraft:daylight_detector[inverted=false,power=14] 130 116 94 255 104 92 75 255 65 58 47 255 52 46 37 255 +minecraft:daylight_detector[inverted=false,power=15] 130 116 94 255 104 92 75 255 65 58 47 255 52 46 37 255 +minecraft:redstone_block 175 24 5 255 140 19 4 255 87 12 2 255 70 9 2 255 +minecraft:nether_quartz_ore 117 65 62 255 93 52 49 255 58 32 31 255 46 26 24 255 +minecraft:hopper 49 49 53 255 39 39 42 255 24 24 26 255 19 19 21 255 +minecraft:hopper[enabled=true,facing=north] 49 49 53 255 39 39 42 255 24 24 26 255 19 19 21 255 +minecraft:hopper[enabled=true,facing=south] 49 49 53 255 39 39 42 255 24 24 26 255 19 19 21 255 +minecraft:hopper[enabled=true,facing=west] 49 49 53 255 39 39 42 255 24 24 26 255 19 19 21 255 +minecraft:hopper[enabled=true,facing=east] 49 49 53 255 39 39 42 255 24 24 26 255 19 19 21 255 +minecraft:hopper[enabled=false,facing=down] 49 49 53 255 39 39 42 255 24 24 26 255 19 19 21 255 +minecraft:hopper[enabled=false,facing=north] 49 49 53 255 39 39 42 255 24 24 26 255 19 19 21 255 +minecraft:hopper[enabled=false,facing=south] 49 49 53 255 39 39 42 255 24 24 26 255 19 19 21 255 +minecraft:hopper[enabled=false,facing=west] 49 49 53 255 39 39 42 255 24 24 26 255 19 19 21 255 +minecraft:hopper[enabled=false,facing=east] 49 49 53 255 39 39 42 255 24 24 26 255 19 19 21 255 +minecraft:quartz_block 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:chiseled_quartz_block 231 226 217 255 184 180 173 255 115 113 108 255 92 90 86 255 +minecraft:quartz_pillar 235 230 224 255 188 184 179 255 117 115 112 255 94 92 89 255 +minecraft:quartz_pillar[axis=y] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_pillar[axis=z] 235 230 224 255 188 184 179 255 117 115 112 255 94 92 89 255 +minecraft:quartz_stairs 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=top,shape=straight,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=top,shape=straight,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=top,shape=straight,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=top,shape=straight,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=top,shape=straight,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=top,shape=straight,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=top,shape=straight,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:activator_rail 143 87 74 155 114 69 59 155 71 43 37 155 57 34 29 155 +minecraft:activator_rail[powered=true,shape=north_south,waterlogged=false] 143 87 74 155 114 69 59 155 71 43 37 155 57 34 29 155 +minecraft:activator_rail[powered=true,shape=east_west,waterlogged=true] 143 87 74 155 114 69 59 155 71 43 37 155 57 34 29 155 +minecraft:activator_rail[powered=true,shape=east_west,waterlogged=false] 143 87 74 155 114 69 59 155 71 43 37 155 57 34 29 155 +minecraft:activator_rail[powered=true,shape=ascending_east,waterlogged=true] 143 87 74 155 114 69 59 155 71 43 37 155 57 34 29 155 +minecraft:activator_rail[powered=true,shape=ascending_east,waterlogged=false] 143 87 74 155 114 69 59 155 71 43 37 155 57 34 29 155 +minecraft:activator_rail[powered=true,shape=ascending_west,waterlogged=true] 143 87 74 155 114 69 59 155 71 43 37 155 57 34 29 155 +minecraft:activator_rail[powered=true,shape=ascending_west,waterlogged=false] 143 87 74 155 114 69 59 155 71 43 37 155 57 34 29 155 +minecraft:activator_rail[powered=true,shape=ascending_north,waterlogged=true] 143 87 74 155 114 69 59 155 71 43 37 155 57 34 29 155 +minecraft:activator_rail[powered=true,shape=ascending_north,waterlogged=false] 143 87 74 155 114 69 59 155 71 43 37 155 57 34 29 155 +minecraft:activator_rail[powered=true,shape=ascending_south,waterlogged=true] 143 87 74 155 114 69 59 155 71 43 37 155 57 34 29 155 +minecraft:activator_rail[powered=true,shape=ascending_south,waterlogged=false] 143 87 74 155 114 69 59 155 71 43 37 155 57 34 29 155 +minecraft:activator_rail[powered=false,shape=north_south,waterlogged=true] 115 87 74 155 92 69 59 155 57 43 37 155 46 34 29 155 +minecraft:activator_rail[powered=false,shape=north_south,waterlogged=false] 115 87 74 155 92 69 59 155 57 43 37 155 46 34 29 155 +minecraft:activator_rail[powered=false,shape=east_west,waterlogged=true] 115 87 74 155 92 69 59 155 57 43 37 155 46 34 29 155 +minecraft:activator_rail[powered=false,shape=east_west,waterlogged=false] 115 87 74 155 92 69 59 155 57 43 37 155 46 34 29 155 +minecraft:activator_rail[powered=false,shape=ascending_east,waterlogged=true] 115 87 74 155 92 69 59 155 57 43 37 155 46 34 29 155 +minecraft:activator_rail[powered=false,shape=ascending_east,waterlogged=false] 115 87 74 155 92 69 59 155 57 43 37 155 46 34 29 155 +minecraft:activator_rail[powered=false,shape=ascending_west,waterlogged=true] 115 87 74 155 92 69 59 155 57 43 37 155 46 34 29 155 +minecraft:activator_rail[powered=false,shape=ascending_west,waterlogged=false] 115 87 74 155 92 69 59 155 57 43 37 155 46 34 29 155 +minecraft:activator_rail[powered=false,shape=ascending_north,waterlogged=true] 115 87 74 155 92 69 59 155 57 43 37 155 46 34 29 155 +minecraft:activator_rail[powered=false,shape=ascending_north,waterlogged=false] 115 87 74 155 92 69 59 155 57 43 37 155 46 34 29 155 +minecraft:activator_rail[powered=false,shape=ascending_south,waterlogged=true] 115 87 74 155 92 69 59 155 57 43 37 155 46 34 29 155 +minecraft:activator_rail[powered=false,shape=ascending_south,waterlogged=false] 115 87 74 155 92 69 59 155 57 43 37 155 46 34 29 155 +minecraft:dropper 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dropper[facing=north,triggered=false] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dropper[facing=east,triggered=true] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 +minecraft:dropper[facing=east,triggered=false] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 +minecraft:dropper[facing=south,triggered=true] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dropper[facing=south,triggered=false] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dropper[facing=west,triggered=true] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dropper[facing=west,triggered=false] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dropper[facing=up,triggered=true] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dropper[facing=up,triggered=false] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dropper[facing=down,triggered=true] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dropper[facing=down,triggered=false] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:white_terracotta 209 178 161 255 167 142 128 255 104 89 80 255 83 71 64 255 +minecraft:orange_terracotta 161 83 37 255 128 66 29 255 80 41 18 255 64 33 14 255 +minecraft:magenta_terracotta 149 88 108 255 119 70 86 255 74 44 54 255 59 35 43 255 +minecraft:light_blue_terracotta 113 108 137 255 90 86 109 255 56 54 68 255 45 43 54 255 +minecraft:yellow_terracotta 186 133 35 255 148 106 28 255 93 66 17 255 74 53 14 255 +minecraft:lime_terracotta 103 117 52 255 82 93 41 255 51 58 26 255 41 46 20 255 +minecraft:pink_terracotta 161 78 78 255 128 62 62 255 80 39 39 255 64 31 31 255 +minecraft:gray_terracotta 57 42 35 255 45 33 28 255 28 21 17 255 22 16 14 255 +minecraft:light_gray_terracotta 135 106 97 255 108 84 77 255 67 53 48 255 54 42 38 255 +minecraft:cyan_terracotta 86 91 91 255 68 72 72 255 43 45 45 255 34 36 36 255 +minecraft:purple_terracotta 118 70 86 255 94 56 68 255 59 35 43 255 47 28 34 255 +minecraft:blue_terracotta 74 59 91 255 59 47 72 255 37 29 45 255 29 23 36 255 +minecraft:brown_terracotta 77 51 35 255 61 40 28 255 38 25 17 255 30 20 14 255 +minecraft:green_terracotta 76 83 42 255 60 66 33 255 38 41 21 255 30 33 16 255 +minecraft:red_terracotta 143 61 46 255 114 48 36 255 71 30 23 255 57 24 18 255 +minecraft:black_terracotta 37 22 16 255 29 17 12 255 18 11 8 255 14 8 6 255 +minecraft:white_stained_glass_pane 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:orange_stained_glass_pane 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:magenta_stained_glass_pane 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:light_blue_stained_glass_pane 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:yellow_stained_glass_pane 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:lime_stained_glass_pane 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:pink_stained_glass_pane 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:gray_stained_glass_pane 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:light_gray_stained_glass_pane 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:cyan_stained_glass_pane 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:purple_stained_glass_pane 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:blue_stained_glass_pane 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:brown_stained_glass_pane 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:green_stained_glass_pane 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:red_stained_glass_pane 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:black_stained_glass_pane 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:acacia_stairs 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=top,shape=straight,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=top,shape=straight,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=top,shape=straight,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=top,shape=straight,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=top,shape=straight,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=top,shape=straight,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=top,shape=straight,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:dark_oak_stairs 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=top,shape=straight,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=top,shape=straight,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=top,shape=straight,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=top,shape=straight,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=top,shape=straight,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=top,shape=straight,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=top,shape=straight,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:slime_block 111 192 91 180 88 153 72 180 55 96 45 180 44 76 36 180 +minecraft:iron_trapdoor 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:prismarine 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_bricks 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:dark_prismarine 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:prismarine_stairs 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=top,shape=straight,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=top,shape=straight,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=top,shape=straight,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=top,shape=straight,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=top,shape=straight,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=top,shape=straight,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=top,shape=straight,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_brick_stairs 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:dark_prismarine_stairs 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=top,shape=straight,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=top,shape=straight,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=top,shape=straight,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=top,shape=straight,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=top,shape=straight,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=top,shape=straight,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=top,shape=straight,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:prismarine_slab 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_slab[type=top,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_slab[type=bottom,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_slab[type=bottom,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_slab[type=double,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_slab[type=double,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_brick_slab 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_slab[type=top,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_slab[type=bottom,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_slab[type=bottom,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_slab[type=double,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_slab[type=double,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:dark_prismarine_slab 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_slab[type=top,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_slab[type=bottom,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_slab[type=bottom,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_slab[type=double,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_slab[type=double,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:sea_lantern 172 200 190 255 137 160 152 255 86 100 95 255 68 80 76 255 +minecraft:hay_block 166 136 38 255 132 108 30 255 83 68 19 255 66 54 15 255 +minecraft:hay_block[axis=y] 165 139 12 255 132 111 9 255 82 69 6 255 66 55 4 255 +minecraft:hay_block[axis=z] 166 136 38 255 132 108 30 255 83 68 19 255 66 54 15 255 +minecraft:white_carpet 233 236 236 255 186 188 188 255 116 118 118 255 93 94 94 255 +minecraft:orange_carpet 240 118 19 255 192 94 15 255 120 59 9 255 96 47 7 255 +minecraft:magenta_carpet 189 68 179 255 151 54 143 255 94 34 89 255 75 27 71 255 +minecraft:light_blue_carpet 58 175 217 255 46 140 173 255 29 87 108 255 23 70 86 255 +minecraft:yellow_carpet 248 197 39 255 198 157 31 255 124 98 19 255 99 78 15 255 +minecraft:lime_carpet 112 185 25 255 89 148 20 255 56 92 12 255 44 74 10 255 +minecraft:pink_carpet 237 141 172 255 189 112 137 255 118 70 86 255 94 56 68 255 +minecraft:gray_carpet 62 68 71 255 49 54 56 255 31 34 35 255 24 27 28 255 +minecraft:light_gray_carpet 142 142 134 255 113 113 107 255 71 71 67 255 56 56 53 255 +minecraft:cyan_carpet 21 137 145 255 16 109 116 255 10 68 72 255 8 54 58 255 +minecraft:purple_carpet 121 42 172 255 96 33 137 255 60 21 86 255 48 16 68 255 +minecraft:blue_carpet 53 57 157 255 42 45 125 255 26 28 78 255 21 22 62 255 +minecraft:brown_carpet 114 71 40 255 91 56 32 255 57 35 20 255 45 28 16 255 +minecraft:green_carpet 84 109 27 255 67 87 21 255 42 54 13 255 33 43 10 255 +minecraft:red_carpet 160 39 34 255 128 31 27 255 80 19 17 255 64 15 13 255 +minecraft:black_carpet 20 21 25 255 16 16 20 255 10 10 12 255 8 8 10 255 +minecraft:terracotta 152 94 67 255 121 75 53 255 76 47 33 255 60 37 26 255 +minecraft:coal_block 16 15 15 255 12 12 12 255 8 7 7 255 6 6 6 255 +minecraft:packed_ice 141 180 250 255 112 144 200 255 70 90 125 255 56 72 100 255 +minecraft:sunflower 49 129 27 30 39 103 21 30 24 64 13 30 19 51 10 30 +minecraft:sunflower[half=lower] 56 135 30 56 44 108 24 56 28 67 15 56 22 54 12 56 +minecraft:lilac 154 125 147 74 123 100 117 74 77 62 73 74 61 50 58 74 +minecraft:lilac[half=lower] 137 124 126 89 109 99 100 89 68 62 63 89 54 49 50 89 +minecraft:rose_bush 131 66 37 92 104 52 29 92 65 33 18 92 52 26 14 92 +minecraft:rose_bush[half=lower] 97 83 37 178 77 66 29 178 48 41 18 178 38 33 14 178 +minecraft:peony 129 126 139 109 103 100 111 109 64 63 69 109 51 50 55 109 +minecraft:peony[half=lower] 86 101 93 140 68 80 74 140 43 50 46 140 34 40 37 140 +minecraft:tall_grass 71 112 53 89 56 89 42 89 35 56 26 89 28 44 21 89 +minecraft:tall_grass[half=lower] 60 96 45 186 48 76 36 186 30 48 22 186 24 38 18 186 +minecraft:large_fern 59 94 44 103 47 75 35 103 29 47 22 103 23 37 17 103 +minecraft:large_fern[half=lower] 62 98 46 175 49 78 36 175 31 49 23 175 24 39 18 175 +minecraft:white_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_banner[rotation=1] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_banner[rotation=2] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_banner[rotation=3] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_banner[rotation=4] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_banner[rotation=5] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_banner[rotation=6] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_banner[rotation=7] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_banner[rotation=8] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_banner[rotation=9] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_banner[rotation=10] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_banner[rotation=11] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_banner[rotation=12] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_banner[rotation=13] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_banner[rotation=14] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_banner[rotation=15] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_banner[rotation=1] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_banner[rotation=2] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_banner[rotation=3] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_banner[rotation=4] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_banner[rotation=5] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_banner[rotation=6] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_banner[rotation=7] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_banner[rotation=8] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_banner[rotation=9] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_banner[rotation=10] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_banner[rotation=11] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_banner[rotation=12] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_banner[rotation=13] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_banner[rotation=14] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_banner[rotation=15] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_banner[rotation=1] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_banner[rotation=2] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_banner[rotation=3] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_banner[rotation=4] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_banner[rotation=5] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_banner[rotation=6] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_banner[rotation=7] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_banner[rotation=8] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_banner[rotation=9] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_banner[rotation=10] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_banner[rotation=11] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_banner[rotation=12] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_banner[rotation=13] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_banner[rotation=14] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_banner[rotation=15] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_banner[rotation=1] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_banner[rotation=2] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_banner[rotation=3] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_banner[rotation=4] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_banner[rotation=5] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_banner[rotation=6] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_banner[rotation=7] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_banner[rotation=8] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_banner[rotation=9] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_banner[rotation=10] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_banner[rotation=11] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_banner[rotation=12] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_banner[rotation=13] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_banner[rotation=14] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_banner[rotation=15] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_banner[rotation=1] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_banner[rotation=2] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_banner[rotation=3] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_banner[rotation=4] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_banner[rotation=5] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_banner[rotation=6] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_banner[rotation=7] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_banner[rotation=8] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_banner[rotation=9] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_banner[rotation=10] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_banner[rotation=11] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_banner[rotation=12] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_banner[rotation=13] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_banner[rotation=14] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_banner[rotation=15] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_banner[rotation=1] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_banner[rotation=2] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_banner[rotation=3] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_banner[rotation=4] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_banner[rotation=5] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_banner[rotation=6] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_banner[rotation=7] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_banner[rotation=8] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_banner[rotation=9] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_banner[rotation=10] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_banner[rotation=11] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_banner[rotation=12] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_banner[rotation=13] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_banner[rotation=14] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_banner[rotation=15] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_banner[rotation=1] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_banner[rotation=2] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_banner[rotation=3] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_banner[rotation=4] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_banner[rotation=5] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_banner[rotation=6] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_banner[rotation=7] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_banner[rotation=8] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_banner[rotation=9] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_banner[rotation=10] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_banner[rotation=11] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_banner[rotation=12] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_banner[rotation=13] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_banner[rotation=14] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_banner[rotation=15] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_banner[rotation=1] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_banner[rotation=2] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_banner[rotation=3] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_banner[rotation=4] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_banner[rotation=5] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_banner[rotation=6] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_banner[rotation=7] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_banner[rotation=8] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_banner[rotation=9] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_banner[rotation=10] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_banner[rotation=11] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_banner[rotation=12] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_banner[rotation=13] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_banner[rotation=14] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_banner[rotation=15] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_banner[rotation=1] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_banner[rotation=2] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_banner[rotation=3] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_banner[rotation=4] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_banner[rotation=5] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_banner[rotation=6] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_banner[rotation=7] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_banner[rotation=8] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_banner[rotation=9] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_banner[rotation=10] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_banner[rotation=11] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_banner[rotation=12] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_banner[rotation=13] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_banner[rotation=14] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_banner[rotation=15] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_banner[rotation=1] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_banner[rotation=2] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_banner[rotation=3] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_banner[rotation=4] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_banner[rotation=5] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_banner[rotation=6] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_banner[rotation=7] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_banner[rotation=8] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_banner[rotation=9] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_banner[rotation=10] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_banner[rotation=11] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_banner[rotation=12] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_banner[rotation=13] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_banner[rotation=14] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_banner[rotation=15] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_banner[rotation=1] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_banner[rotation=2] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_banner[rotation=3] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_banner[rotation=4] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_banner[rotation=5] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_banner[rotation=6] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_banner[rotation=7] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_banner[rotation=8] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_banner[rotation=9] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_banner[rotation=10] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_banner[rotation=11] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_banner[rotation=12] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_banner[rotation=13] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_banner[rotation=14] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_banner[rotation=15] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_banner[rotation=1] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_banner[rotation=2] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_banner[rotation=3] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_banner[rotation=4] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_banner[rotation=5] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_banner[rotation=6] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_banner[rotation=7] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_banner[rotation=8] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_banner[rotation=9] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_banner[rotation=10] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_banner[rotation=11] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_banner[rotation=12] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_banner[rotation=13] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_banner[rotation=14] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_banner[rotation=15] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_banner[rotation=1] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_banner[rotation=2] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_banner[rotation=3] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_banner[rotation=4] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_banner[rotation=5] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_banner[rotation=6] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_banner[rotation=7] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_banner[rotation=8] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_banner[rotation=9] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_banner[rotation=10] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_banner[rotation=11] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_banner[rotation=12] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_banner[rotation=13] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_banner[rotation=14] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_banner[rotation=15] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_banner[rotation=1] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_banner[rotation=2] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_banner[rotation=3] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_banner[rotation=4] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_banner[rotation=5] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_banner[rotation=6] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_banner[rotation=7] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_banner[rotation=8] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_banner[rotation=9] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_banner[rotation=10] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_banner[rotation=11] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_banner[rotation=12] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_banner[rotation=13] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_banner[rotation=14] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_banner[rotation=15] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_banner[rotation=1] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_banner[rotation=2] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_banner[rotation=3] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_banner[rotation=4] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_banner[rotation=5] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_banner[rotation=6] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_banner[rotation=7] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_banner[rotation=8] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_banner[rotation=9] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_banner[rotation=10] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_banner[rotation=11] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_banner[rotation=12] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_banner[rotation=13] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_banner[rotation=14] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_banner[rotation=15] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_banner[rotation=1] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_banner[rotation=2] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_banner[rotation=3] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_banner[rotation=4] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_banner[rotation=5] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_banner[rotation=6] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_banner[rotation=7] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_banner[rotation=8] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_banner[rotation=9] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_banner[rotation=10] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_banner[rotation=11] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_banner[rotation=12] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_banner[rotation=13] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_banner[rotation=14] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_banner[rotation=15] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_wall_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_wall_banner[facing=south] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_wall_banner[facing=west] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_wall_banner[facing=east] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_wall_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_wall_banner[facing=south] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_wall_banner[facing=west] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_wall_banner[facing=east] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_wall_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_wall_banner[facing=south] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_wall_banner[facing=west] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_wall_banner[facing=east] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_wall_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_wall_banner[facing=south] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_wall_banner[facing=west] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_wall_banner[facing=east] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_wall_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_wall_banner[facing=south] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_wall_banner[facing=west] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_wall_banner[facing=east] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_wall_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_wall_banner[facing=south] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_wall_banner[facing=west] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_wall_banner[facing=east] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_wall_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_wall_banner[facing=south] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_wall_banner[facing=west] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_wall_banner[facing=east] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_wall_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_wall_banner[facing=south] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_wall_banner[facing=west] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_wall_banner[facing=east] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_wall_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_wall_banner[facing=south] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_wall_banner[facing=west] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_wall_banner[facing=east] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_wall_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_wall_banner[facing=south] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_wall_banner[facing=west] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_wall_banner[facing=east] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_wall_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_wall_banner[facing=south] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_wall_banner[facing=west] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_wall_banner[facing=east] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_wall_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_wall_banner[facing=south] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_wall_banner[facing=west] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_wall_banner[facing=east] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_wall_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_wall_banner[facing=south] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_wall_banner[facing=west] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_wall_banner[facing=east] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_wall_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_wall_banner[facing=south] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_wall_banner[facing=west] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_wall_banner[facing=east] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_wall_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_wall_banner[facing=south] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_wall_banner[facing=west] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_wall_banner[facing=east] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_wall_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_wall_banner[facing=south] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_wall_banner[facing=west] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_wall_banner[facing=east] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_sandstone 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:chiseled_red_sandstone 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:cut_red_sandstone 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:red_sandstone_stairs 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=top,shape=straight,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:oak_slab 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_slab[type=top,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_slab[type=bottom,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_slab[type=bottom,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_slab[type=double,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_slab[type=double,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:spruce_slab 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_slab[type=top,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_slab[type=bottom,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_slab[type=bottom,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_slab[type=double,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_slab[type=double,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:birch_slab 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_slab[type=top,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_slab[type=bottom,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_slab[type=bottom,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_slab[type=double,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_slab[type=double,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:jungle_slab 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_slab[type=top,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_slab[type=bottom,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_slab[type=bottom,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_slab[type=double,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_slab[type=double,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:acacia_slab 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_slab[type=top,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_slab[type=bottom,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_slab[type=bottom,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_slab[type=double,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_slab[type=double,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:dark_oak_slab 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_slab[type=top,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_slab[type=bottom,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_slab[type=bottom,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_slab[type=double,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_slab[type=double,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:stone_slab 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_slab[type=top,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_slab[type=bottom,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_slab[type=bottom,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_slab[type=double,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_slab[type=double,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:smooth_stone_slab 158 158 158 255 126 126 126 255 79 79 79 255 63 63 63 255 +minecraft:smooth_stone_slab[type=top,waterlogged=false] 158 158 158 255 126 126 126 255 79 79 79 255 63 63 63 255 +minecraft:smooth_stone_slab[type=bottom,waterlogged=true] 158 158 158 255 126 126 126 255 79 79 79 255 63 63 63 255 +minecraft:smooth_stone_slab[type=bottom,waterlogged=false] 158 158 158 255 126 126 126 255 79 79 79 255 63 63 63 255 +minecraft:smooth_stone_slab[type=double,waterlogged=true] 158 158 158 255 126 126 126 255 79 79 79 255 63 63 63 255 +minecraft:smooth_stone_slab[type=double,waterlogged=false] 158 158 158 255 126 126 126 255 79 79 79 255 63 63 63 255 +minecraft:sandstone_slab 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:sandstone_slab[type=top,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:sandstone_slab[type=bottom,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:sandstone_slab[type=bottom,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:sandstone_slab[type=double,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:sandstone_slab[type=double,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:cut_sandstone_slab 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:cut_sandstone_slab[type=top,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:cut_sandstone_slab[type=bottom,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:cut_sandstone_slab[type=bottom,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:cut_sandstone_slab[type=double,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:cut_sandstone_slab[type=double,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:petrified_oak_slab 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:petrified_oak_slab[type=top,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:petrified_oak_slab[type=bottom,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:petrified_oak_slab[type=bottom,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:petrified_oak_slab[type=double,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:petrified_oak_slab[type=double,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cobblestone_slab 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_slab[type=top,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_slab[type=bottom,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_slab[type=bottom,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_slab[type=double,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_slab[type=double,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:brick_slab 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_slab[type=top,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_slab[type=bottom,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_slab[type=bottom,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_slab[type=double,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_slab[type=double,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:stone_brick_slab 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_slab[type=top,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_slab[type=bottom,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_slab[type=bottom,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_slab[type=double,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_slab[type=double,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:nether_brick_slab 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_slab[type=top,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_slab[type=bottom,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_slab[type=bottom,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_slab[type=double,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_slab[type=double,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:quartz_slab 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_slab[type=top,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_slab[type=bottom,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_slab[type=bottom,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_slab[type=double,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_slab[type=double,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:red_sandstone_slab 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:red_sandstone_slab[type=top,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:red_sandstone_slab[type=bottom,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:red_sandstone_slab[type=bottom,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:red_sandstone_slab[type=double,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:red_sandstone_slab[type=double,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:cut_red_sandstone_slab 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:cut_red_sandstone_slab[type=top,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:cut_red_sandstone_slab[type=bottom,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:cut_red_sandstone_slab[type=bottom,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:cut_red_sandstone_slab[type=double,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:cut_red_sandstone_slab[type=double,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:purpur_slab 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_slab[type=top,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_slab[type=bottom,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_slab[type=bottom,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_slab[type=double,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_slab[type=double,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:smooth_stone 159 159 159 255 127 127 127 255 79 79 79 255 63 63 63 255 +minecraft:smooth_sandstone 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_quartz 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:smooth_red_sandstone 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:spruce_fence_gate 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=north,in_wall=true,open=true,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=north,in_wall=true,open=false,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=north,in_wall=true,open=false,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=north,in_wall=false,open=true,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=north,in_wall=false,open=true,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=north,in_wall=false,open=false,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=north,in_wall=false,open=false,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=south,in_wall=true,open=true,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=south,in_wall=true,open=true,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=south,in_wall=true,open=false,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=south,in_wall=true,open=false,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=south,in_wall=false,open=true,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=south,in_wall=false,open=true,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=south,in_wall=false,open=false,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=south,in_wall=false,open=false,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=west,in_wall=true,open=true,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=west,in_wall=true,open=true,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=west,in_wall=true,open=false,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=west,in_wall=true,open=false,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=west,in_wall=false,open=true,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=west,in_wall=false,open=true,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=west,in_wall=false,open=false,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=west,in_wall=false,open=false,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=east,in_wall=true,open=true,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=east,in_wall=true,open=true,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=east,in_wall=true,open=false,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=east,in_wall=true,open=false,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=east,in_wall=false,open=true,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=east,in_wall=false,open=true,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=east,in_wall=false,open=false,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=east,in_wall=false,open=false,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:birch_fence_gate 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=north,in_wall=true,open=true,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=north,in_wall=true,open=false,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=north,in_wall=true,open=false,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=north,in_wall=false,open=true,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=north,in_wall=false,open=true,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=north,in_wall=false,open=false,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=north,in_wall=false,open=false,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=south,in_wall=true,open=true,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=south,in_wall=true,open=true,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=south,in_wall=true,open=false,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=south,in_wall=true,open=false,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=south,in_wall=false,open=true,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=south,in_wall=false,open=true,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=south,in_wall=false,open=false,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=south,in_wall=false,open=false,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=west,in_wall=true,open=true,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=west,in_wall=true,open=true,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=west,in_wall=true,open=false,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=west,in_wall=true,open=false,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=west,in_wall=false,open=true,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=west,in_wall=false,open=true,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=west,in_wall=false,open=false,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=west,in_wall=false,open=false,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=east,in_wall=true,open=true,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=east,in_wall=true,open=true,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=east,in_wall=true,open=false,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=east,in_wall=true,open=false,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=east,in_wall=false,open=true,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=east,in_wall=false,open=true,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=east,in_wall=false,open=false,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=east,in_wall=false,open=false,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:jungle_fence_gate 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=north,in_wall=true,open=true,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=north,in_wall=true,open=false,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=north,in_wall=true,open=false,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=north,in_wall=false,open=true,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=north,in_wall=false,open=true,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=north,in_wall=false,open=false,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=north,in_wall=false,open=false,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=south,in_wall=true,open=true,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=south,in_wall=true,open=true,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=south,in_wall=true,open=false,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=south,in_wall=true,open=false,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=south,in_wall=false,open=true,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=south,in_wall=false,open=true,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=south,in_wall=false,open=false,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=south,in_wall=false,open=false,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=west,in_wall=true,open=true,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=west,in_wall=true,open=true,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=west,in_wall=true,open=false,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=west,in_wall=true,open=false,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=west,in_wall=false,open=true,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=west,in_wall=false,open=true,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=west,in_wall=false,open=false,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=west,in_wall=false,open=false,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=east,in_wall=true,open=true,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=east,in_wall=true,open=true,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=east,in_wall=true,open=false,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=east,in_wall=true,open=false,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=east,in_wall=false,open=true,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=east,in_wall=false,open=true,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=east,in_wall=false,open=false,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=east,in_wall=false,open=false,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:acacia_fence_gate 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=north,in_wall=true,open=true,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=north,in_wall=true,open=false,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=north,in_wall=true,open=false,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=north,in_wall=false,open=true,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=north,in_wall=false,open=true,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=north,in_wall=false,open=false,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=north,in_wall=false,open=false,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=south,in_wall=true,open=true,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=south,in_wall=true,open=true,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=south,in_wall=true,open=false,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=south,in_wall=true,open=false,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=south,in_wall=false,open=true,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=south,in_wall=false,open=true,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=south,in_wall=false,open=false,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=south,in_wall=false,open=false,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=west,in_wall=true,open=true,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=west,in_wall=true,open=true,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=west,in_wall=true,open=false,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=west,in_wall=true,open=false,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=west,in_wall=false,open=true,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=west,in_wall=false,open=true,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=west,in_wall=false,open=false,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=west,in_wall=false,open=false,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=east,in_wall=true,open=true,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=east,in_wall=true,open=true,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=east,in_wall=true,open=false,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=east,in_wall=true,open=false,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=east,in_wall=false,open=true,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=east,in_wall=false,open=true,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=east,in_wall=false,open=false,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=east,in_wall=false,open=false,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:dark_oak_fence_gate 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=north,in_wall=true,open=true,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=north,in_wall=true,open=false,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=north,in_wall=true,open=false,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=north,in_wall=false,open=true,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=north,in_wall=false,open=true,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=north,in_wall=false,open=false,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=north,in_wall=false,open=false,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=south,in_wall=true,open=true,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=south,in_wall=true,open=true,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=south,in_wall=true,open=false,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=south,in_wall=true,open=false,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=south,in_wall=false,open=true,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=south,in_wall=false,open=true,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=south,in_wall=false,open=false,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=south,in_wall=false,open=false,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=west,in_wall=true,open=true,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=west,in_wall=true,open=true,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=west,in_wall=true,open=false,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=west,in_wall=true,open=false,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=west,in_wall=false,open=true,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=west,in_wall=false,open=true,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=west,in_wall=false,open=false,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=west,in_wall=false,open=false,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=east,in_wall=true,open=true,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=east,in_wall=true,open=true,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=east,in_wall=true,open=false,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=east,in_wall=true,open=false,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=east,in_wall=false,open=true,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=east,in_wall=false,open=true,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=east,in_wall=false,open=false,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=east,in_wall=false,open=false,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:spruce_fence 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=true,north=true,south=true,waterlogged=true,west=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=true,north=true,south=true,waterlogged=false,west=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=true,north=true,south=true,waterlogged=false,west=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=true,north=true,south=false,waterlogged=true,west=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=true,north=true,south=false,waterlogged=true,west=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=true,north=true,south=false,waterlogged=false,west=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=true,north=true,south=false,waterlogged=false,west=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=true,north=false,south=true,waterlogged=true,west=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=true,north=false,south=true,waterlogged=true,west=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=true,north=false,south=true,waterlogged=false,west=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=true,north=false,south=true,waterlogged=false,west=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=true,north=false,south=false,waterlogged=true,west=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=true,north=false,south=false,waterlogged=true,west=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=true,north=false,south=false,waterlogged=false,west=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=true,north=false,south=false,waterlogged=false,west=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=false,north=true,south=true,waterlogged=true,west=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=false,north=true,south=true,waterlogged=true,west=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=false,north=true,south=true,waterlogged=false,west=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=false,north=true,south=true,waterlogged=false,west=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=false,north=true,south=false,waterlogged=true,west=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=false,north=true,south=false,waterlogged=true,west=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=false,north=true,south=false,waterlogged=false,west=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=false,north=true,south=false,waterlogged=false,west=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=false,north=false,south=true,waterlogged=true,west=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=false,north=false,south=true,waterlogged=true,west=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=false,north=false,south=true,waterlogged=false,west=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=false,north=false,south=true,waterlogged=false,west=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=false,north=false,south=false,waterlogged=true,west=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=false,north=false,south=false,waterlogged=true,west=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=false,north=false,south=false,waterlogged=false,west=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=false,north=false,south=false,waterlogged=false,west=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:birch_fence 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=true,north=true,south=true,waterlogged=true,west=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=true,north=true,south=true,waterlogged=false,west=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=true,north=true,south=true,waterlogged=false,west=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=true,north=true,south=false,waterlogged=true,west=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=true,north=true,south=false,waterlogged=true,west=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=true,north=true,south=false,waterlogged=false,west=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=true,north=true,south=false,waterlogged=false,west=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=true,north=false,south=true,waterlogged=true,west=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=true,north=false,south=true,waterlogged=true,west=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=true,north=false,south=true,waterlogged=false,west=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=true,north=false,south=true,waterlogged=false,west=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=true,north=false,south=false,waterlogged=true,west=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=true,north=false,south=false,waterlogged=true,west=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=true,north=false,south=false,waterlogged=false,west=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=true,north=false,south=false,waterlogged=false,west=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=false,north=true,south=true,waterlogged=true,west=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=false,north=true,south=true,waterlogged=true,west=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=false,north=true,south=true,waterlogged=false,west=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=false,north=true,south=true,waterlogged=false,west=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=false,north=true,south=false,waterlogged=true,west=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=false,north=true,south=false,waterlogged=true,west=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=false,north=true,south=false,waterlogged=false,west=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=false,north=true,south=false,waterlogged=false,west=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=false,north=false,south=true,waterlogged=true,west=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=false,north=false,south=true,waterlogged=true,west=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=false,north=false,south=true,waterlogged=false,west=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=false,north=false,south=true,waterlogged=false,west=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=false,north=false,south=false,waterlogged=true,west=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=false,north=false,south=false,waterlogged=true,west=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=false,north=false,south=false,waterlogged=false,west=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=false,north=false,south=false,waterlogged=false,west=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:jungle_fence 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=true,north=true,south=true,waterlogged=true,west=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=true,north=true,south=true,waterlogged=false,west=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=true,north=true,south=true,waterlogged=false,west=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=true,north=true,south=false,waterlogged=true,west=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=true,north=true,south=false,waterlogged=true,west=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=true,north=true,south=false,waterlogged=false,west=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=true,north=true,south=false,waterlogged=false,west=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=true,north=false,south=true,waterlogged=true,west=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=true,north=false,south=true,waterlogged=true,west=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=true,north=false,south=true,waterlogged=false,west=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=true,north=false,south=true,waterlogged=false,west=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=true,north=false,south=false,waterlogged=true,west=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=true,north=false,south=false,waterlogged=true,west=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=true,north=false,south=false,waterlogged=false,west=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=true,north=false,south=false,waterlogged=false,west=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=false,north=true,south=true,waterlogged=true,west=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=false,north=true,south=true,waterlogged=true,west=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=false,north=true,south=true,waterlogged=false,west=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=false,north=true,south=true,waterlogged=false,west=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=false,north=true,south=false,waterlogged=true,west=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=false,north=true,south=false,waterlogged=true,west=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=false,north=true,south=false,waterlogged=false,west=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=false,north=true,south=false,waterlogged=false,west=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=false,north=false,south=true,waterlogged=true,west=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=false,north=false,south=true,waterlogged=true,west=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=false,north=false,south=true,waterlogged=false,west=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=false,north=false,south=true,waterlogged=false,west=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=false,north=false,south=false,waterlogged=true,west=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=false,north=false,south=false,waterlogged=true,west=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=false,north=false,south=false,waterlogged=false,west=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=false,north=false,south=false,waterlogged=false,west=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:acacia_fence 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=true,north=true,south=true,waterlogged=true,west=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=true,north=true,south=true,waterlogged=false,west=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=true,north=true,south=true,waterlogged=false,west=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=true,north=true,south=false,waterlogged=true,west=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=true,north=true,south=false,waterlogged=true,west=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=true,north=true,south=false,waterlogged=false,west=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=true,north=true,south=false,waterlogged=false,west=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=true,north=false,south=true,waterlogged=true,west=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=true,north=false,south=true,waterlogged=true,west=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=true,north=false,south=true,waterlogged=false,west=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=true,north=false,south=true,waterlogged=false,west=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=true,north=false,south=false,waterlogged=true,west=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=true,north=false,south=false,waterlogged=true,west=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=true,north=false,south=false,waterlogged=false,west=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=true,north=false,south=false,waterlogged=false,west=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=false,north=true,south=true,waterlogged=true,west=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=false,north=true,south=true,waterlogged=true,west=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=false,north=true,south=true,waterlogged=false,west=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=false,north=true,south=true,waterlogged=false,west=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=false,north=true,south=false,waterlogged=true,west=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=false,north=true,south=false,waterlogged=true,west=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=false,north=true,south=false,waterlogged=false,west=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=false,north=true,south=false,waterlogged=false,west=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=false,north=false,south=true,waterlogged=true,west=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=false,north=false,south=true,waterlogged=true,west=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=false,north=false,south=true,waterlogged=false,west=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=false,north=false,south=true,waterlogged=false,west=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=false,north=false,south=false,waterlogged=true,west=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=false,north=false,south=false,waterlogged=true,west=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=false,north=false,south=false,waterlogged=false,west=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=false,north=false,south=false,waterlogged=false,west=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:dark_oak_fence 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=true,north=true,south=true,waterlogged=true,west=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=true,north=true,south=true,waterlogged=false,west=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=true,north=true,south=true,waterlogged=false,west=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=true,north=true,south=false,waterlogged=true,west=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=true,north=true,south=false,waterlogged=true,west=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=true,north=true,south=false,waterlogged=false,west=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=true,north=true,south=false,waterlogged=false,west=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=true,north=false,south=true,waterlogged=true,west=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=true,north=false,south=true,waterlogged=true,west=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=true,north=false,south=true,waterlogged=false,west=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=true,north=false,south=true,waterlogged=false,west=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=true,north=false,south=false,waterlogged=true,west=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=true,north=false,south=false,waterlogged=true,west=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=true,north=false,south=false,waterlogged=false,west=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=true,north=false,south=false,waterlogged=false,west=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=false,north=true,south=true,waterlogged=true,west=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=false,north=true,south=true,waterlogged=true,west=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=false,north=true,south=true,waterlogged=false,west=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=false,north=true,south=true,waterlogged=false,west=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=false,north=true,south=false,waterlogged=true,west=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=false,north=true,south=false,waterlogged=true,west=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=false,north=true,south=false,waterlogged=false,west=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=false,north=true,south=false,waterlogged=false,west=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=false,north=false,south=true,waterlogged=true,west=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=false,north=false,south=true,waterlogged=true,west=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=false,north=false,south=true,waterlogged=false,west=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=false,north=false,south=true,waterlogged=false,west=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=false,north=false,south=false,waterlogged=true,west=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=false,north=false,south=false,waterlogged=true,west=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=false,north=false,south=false,waterlogged=false,west=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=false,north=false,south=false,waterlogged=false,west=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:spruce_door 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=upper,hinge=left,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=upper,hinge=left,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=upper,hinge=left,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=upper,hinge=right,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=upper,hinge=right,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=upper,hinge=right,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=upper,hinge=right,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=lower,hinge=left,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=lower,hinge=left,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=lower,hinge=left,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=lower,hinge=left,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=lower,hinge=right,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=lower,hinge=right,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=lower,hinge=right,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=lower,hinge=right,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=upper,hinge=left,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=upper,hinge=left,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=upper,hinge=left,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=upper,hinge=left,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=upper,hinge=right,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=upper,hinge=right,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=upper,hinge=right,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=upper,hinge=right,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=lower,hinge=left,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=lower,hinge=left,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=lower,hinge=left,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=lower,hinge=left,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=lower,hinge=right,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=lower,hinge=right,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=lower,hinge=right,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=lower,hinge=right,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=upper,hinge=left,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=upper,hinge=left,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=upper,hinge=left,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=upper,hinge=left,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=upper,hinge=right,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=upper,hinge=right,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=upper,hinge=right,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=upper,hinge=right,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=lower,hinge=left,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=lower,hinge=left,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=lower,hinge=left,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=lower,hinge=left,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=lower,hinge=right,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=lower,hinge=right,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=lower,hinge=right,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=lower,hinge=right,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=upper,hinge=left,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=upper,hinge=left,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=upper,hinge=left,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=upper,hinge=left,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=upper,hinge=right,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=upper,hinge=right,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=upper,hinge=right,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=upper,hinge=right,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=lower,hinge=left,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=lower,hinge=left,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=lower,hinge=left,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=lower,hinge=left,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=lower,hinge=right,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=lower,hinge=right,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=lower,hinge=right,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=lower,hinge=right,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:birch_door 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=upper,hinge=left,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=upper,hinge=left,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=upper,hinge=left,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=upper,hinge=right,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=upper,hinge=right,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=upper,hinge=right,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=upper,hinge=right,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=lower,hinge=left,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=lower,hinge=left,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=lower,hinge=left,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=lower,hinge=left,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=lower,hinge=right,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=lower,hinge=right,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=lower,hinge=right,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=lower,hinge=right,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=upper,hinge=left,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=upper,hinge=left,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=upper,hinge=left,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=upper,hinge=left,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=upper,hinge=right,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=upper,hinge=right,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=upper,hinge=right,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=upper,hinge=right,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=lower,hinge=left,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=lower,hinge=left,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=lower,hinge=left,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=lower,hinge=left,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=lower,hinge=right,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=lower,hinge=right,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=lower,hinge=right,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=lower,hinge=right,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=upper,hinge=left,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=upper,hinge=left,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=upper,hinge=left,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=upper,hinge=left,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=upper,hinge=right,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=upper,hinge=right,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=upper,hinge=right,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=upper,hinge=right,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=lower,hinge=left,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=lower,hinge=left,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=lower,hinge=left,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=lower,hinge=left,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=lower,hinge=right,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=lower,hinge=right,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=lower,hinge=right,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=lower,hinge=right,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=upper,hinge=left,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=upper,hinge=left,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=upper,hinge=left,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=upper,hinge=left,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=upper,hinge=right,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=upper,hinge=right,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=upper,hinge=right,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=upper,hinge=right,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=lower,hinge=left,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=lower,hinge=left,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=lower,hinge=left,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=lower,hinge=left,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=lower,hinge=right,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=lower,hinge=right,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=lower,hinge=right,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=lower,hinge=right,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:jungle_door 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=upper,hinge=left,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=upper,hinge=left,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=upper,hinge=left,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=upper,hinge=right,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=upper,hinge=right,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=upper,hinge=right,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=upper,hinge=right,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=lower,hinge=left,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=lower,hinge=left,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=lower,hinge=left,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=lower,hinge=left,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=lower,hinge=right,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=lower,hinge=right,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=lower,hinge=right,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=lower,hinge=right,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=upper,hinge=left,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=upper,hinge=left,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=upper,hinge=left,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=upper,hinge=left,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=upper,hinge=right,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=upper,hinge=right,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=upper,hinge=right,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=upper,hinge=right,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=lower,hinge=left,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=lower,hinge=left,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=lower,hinge=left,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=lower,hinge=left,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=lower,hinge=right,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=lower,hinge=right,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=lower,hinge=right,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=lower,hinge=right,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=upper,hinge=left,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=upper,hinge=left,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=upper,hinge=left,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=upper,hinge=left,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=upper,hinge=right,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=upper,hinge=right,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=upper,hinge=right,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=upper,hinge=right,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=lower,hinge=left,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=lower,hinge=left,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=lower,hinge=left,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=lower,hinge=left,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=lower,hinge=right,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=lower,hinge=right,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=lower,hinge=right,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=lower,hinge=right,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=upper,hinge=left,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=upper,hinge=left,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=upper,hinge=left,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=upper,hinge=left,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=upper,hinge=right,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=upper,hinge=right,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=upper,hinge=right,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=upper,hinge=right,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=lower,hinge=left,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=lower,hinge=left,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=lower,hinge=left,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=lower,hinge=left,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=lower,hinge=right,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=lower,hinge=right,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=lower,hinge=right,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=lower,hinge=right,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:acacia_door 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=upper,hinge=left,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=upper,hinge=left,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=upper,hinge=left,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=upper,hinge=right,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=upper,hinge=right,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=upper,hinge=right,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=upper,hinge=right,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=lower,hinge=left,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=lower,hinge=left,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=lower,hinge=left,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=lower,hinge=left,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=lower,hinge=right,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=lower,hinge=right,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=lower,hinge=right,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=lower,hinge=right,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=upper,hinge=left,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=upper,hinge=left,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=upper,hinge=left,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=upper,hinge=left,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=upper,hinge=right,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=upper,hinge=right,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=upper,hinge=right,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=upper,hinge=right,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=lower,hinge=left,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=lower,hinge=left,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=lower,hinge=left,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=lower,hinge=left,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=lower,hinge=right,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=lower,hinge=right,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=lower,hinge=right,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=lower,hinge=right,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=upper,hinge=left,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=upper,hinge=left,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=upper,hinge=left,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=upper,hinge=left,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=upper,hinge=right,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=upper,hinge=right,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=upper,hinge=right,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=upper,hinge=right,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=lower,hinge=left,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=lower,hinge=left,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=lower,hinge=left,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=lower,hinge=left,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=lower,hinge=right,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=lower,hinge=right,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=lower,hinge=right,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=lower,hinge=right,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=upper,hinge=left,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=upper,hinge=left,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=upper,hinge=left,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=upper,hinge=left,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=upper,hinge=right,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=upper,hinge=right,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=upper,hinge=right,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=upper,hinge=right,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=lower,hinge=left,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=lower,hinge=left,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=lower,hinge=left,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=lower,hinge=left,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=lower,hinge=right,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=lower,hinge=right,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=lower,hinge=right,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=lower,hinge=right,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:dark_oak_door 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=upper,hinge=left,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=upper,hinge=left,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=upper,hinge=left,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=upper,hinge=right,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=upper,hinge=right,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=upper,hinge=right,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=upper,hinge=right,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=lower,hinge=left,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=lower,hinge=left,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=lower,hinge=left,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=lower,hinge=left,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=lower,hinge=right,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=lower,hinge=right,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=lower,hinge=right,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=lower,hinge=right,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=upper,hinge=left,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=upper,hinge=left,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=upper,hinge=left,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=upper,hinge=left,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=upper,hinge=right,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=upper,hinge=right,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=upper,hinge=right,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=upper,hinge=right,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=lower,hinge=left,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=lower,hinge=left,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=lower,hinge=left,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=lower,hinge=left,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=lower,hinge=right,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=lower,hinge=right,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=lower,hinge=right,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=lower,hinge=right,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=upper,hinge=left,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=upper,hinge=left,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=upper,hinge=left,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=upper,hinge=left,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=upper,hinge=right,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=upper,hinge=right,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=upper,hinge=right,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=upper,hinge=right,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=lower,hinge=left,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=lower,hinge=left,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=lower,hinge=left,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=lower,hinge=left,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=lower,hinge=right,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=lower,hinge=right,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=lower,hinge=right,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=lower,hinge=right,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=upper,hinge=left,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=upper,hinge=left,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=upper,hinge=left,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=upper,hinge=left,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=upper,hinge=right,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=upper,hinge=right,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=upper,hinge=right,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=upper,hinge=right,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=lower,hinge=left,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=lower,hinge=left,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=lower,hinge=left,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=lower,hinge=left,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=lower,hinge=right,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=lower,hinge=right,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=lower,hinge=right,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=lower,hinge=right,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:end_rod 205 196 185 65 164 156 148 65 102 98 92 65 82 78 74 65 +minecraft:end_rod[facing=east] 205 196 185 65 164 156 148 65 102 98 92 65 82 78 74 65 +minecraft:end_rod[facing=south] 205 196 185 65 164 156 148 65 102 98 92 65 82 78 74 65 +minecraft:end_rod[facing=west] 205 196 185 65 164 156 148 65 102 98 92 65 82 78 74 65 +minecraft:end_rod[facing=up] 205 196 185 65 164 156 148 65 102 98 92 65 82 78 74 65 +minecraft:end_rod[facing=down] 205 196 185 65 164 156 148 65 102 98 92 65 82 78 74 65 +minecraft:chorus_plant 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=true,north=true,south=true,up=true,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=true,north=true,south=true,up=false,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=true,north=true,south=true,up=false,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=true,north=true,south=false,up=true,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=true,north=true,south=false,up=true,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=true,north=true,south=false,up=false,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=true,north=true,south=false,up=false,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=true,north=false,south=true,up=true,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=true,north=false,south=true,up=true,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=true,north=false,south=true,up=false,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=true,north=false,south=true,up=false,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=true,north=false,south=false,up=true,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=true,north=false,south=false,up=true,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=true,north=false,south=false,up=false,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=true,north=false,south=false,up=false,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=false,north=true,south=true,up=true,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=false,north=true,south=true,up=true,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=false,north=true,south=true,up=false,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=false,north=true,south=true,up=false,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=false,north=true,south=false,up=true,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=false,north=true,south=false,up=true,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=false,north=true,south=false,up=false,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=false,north=true,south=false,up=false,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=false,north=false,south=true,up=true,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=false,north=false,south=true,up=true,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=false,north=false,south=true,up=false,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=false,north=false,south=true,up=false,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=false,north=false,south=false,up=true,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=false,north=false,south=false,up=true,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=false,north=false,south=false,up=false,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=false,north=false,south=false,up=false,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=true,north=true,south=true,up=true,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=true,north=true,south=true,up=true,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=true,north=true,south=true,up=false,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=true,north=true,south=true,up=false,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=true,north=true,south=false,up=true,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=true,north=true,south=false,up=true,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=true,north=true,south=false,up=false,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=true,north=true,south=false,up=false,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=true,north=false,south=true,up=true,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=true,north=false,south=true,up=true,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=true,north=false,south=true,up=false,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=true,north=false,south=true,up=false,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=true,north=false,south=false,up=true,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=true,north=false,south=false,up=true,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=true,north=false,south=false,up=false,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=true,north=false,south=false,up=false,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=false,north=true,south=true,up=true,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=false,north=true,south=true,up=true,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=false,north=true,south=true,up=false,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=false,north=true,south=true,up=false,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=false,north=true,south=false,up=true,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=false,north=true,south=false,up=true,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=false,north=true,south=false,up=false,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=false,north=true,south=false,up=false,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=false,north=false,south=true,up=true,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=false,north=false,south=true,up=true,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=false,north=false,south=true,up=false,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=false,north=false,south=true,up=false,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=false,north=false,south=false,up=true,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=false,north=false,south=false,up=true,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=false,north=false,south=false,up=false,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=false,north=false,south=false,up=false,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_flower 151 120 151 255 120 96 120 255 75 60 75 255 60 48 60 255 +minecraft:chorus_flower[age=1] 151 120 151 255 120 96 120 255 75 60 75 255 60 48 60 255 +minecraft:chorus_flower[age=2] 151 120 151 255 120 96 120 255 75 60 75 255 60 48 60 255 +minecraft:chorus_flower[age=3] 151 120 151 255 120 96 120 255 75 60 75 255 60 48 60 255 +minecraft:chorus_flower[age=4] 151 120 151 255 120 96 120 255 75 60 75 255 60 48 60 255 +minecraft:chorus_flower[age=5] 96 61 94 255 76 48 75 255 48 30 47 255 38 24 37 255 +minecraft:purpur_block 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_pillar 171 129 171 255 136 103 136 255 85 64 85 255 68 51 68 255 +minecraft:purpur_pillar[axis=y] 171 128 171 255 136 102 136 255 85 64 85 255 68 51 68 255 +minecraft:purpur_pillar[axis=z] 171 129 171 255 136 103 136 255 85 64 85 255 68 51 68 255 +minecraft:purpur_stairs 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=top,shape=straight,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=top,shape=straight,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=top,shape=straight,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=top,shape=straight,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=top,shape=straight,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=top,shape=straight,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=top,shape=straight,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:end_stone_bricks 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:beetroots 65 137 41 14 52 109 32 14 32 68 20 14 26 54 16 14 +minecraft:beetroots[age=1] 66 138 41 29 52 110 32 29 33 69 20 29 26 55 16 29 +minecraft:beetroots[age=2] 69 130 39 87 55 104 31 87 34 65 19 87 27 52 15 87 +minecraft:beetroots[age=3] 93 91 30 115 74 72 24 115 46 45 15 115 37 36 12 115 +minecraft:dirt_path 148 121 65 255 118 96 52 255 74 60 32 255 59 48 26 255 +minecraft:end_gateway 117 90 156 255 93 72 124 255 58 45 78 255 46 36 62 255 +minecraft:repeating_command_block 127 109 166 255 101 87 132 255 63 54 83 255 50 43 66 255 +minecraft:repeating_command_block[conditional=true,facing=east] 129 111 176 255 103 88 140 255 64 55 88 255 51 44 70 255 +minecraft:repeating_command_block[conditional=true,facing=south] 128 110 170 255 102 88 136 255 64 55 85 255 51 44 68 255 +minecraft:repeating_command_block[conditional=true,facing=west] 128 110 170 255 102 88 136 255 64 55 85 255 51 44 68 255 +minecraft:repeating_command_block[conditional=true,facing=up] 128 110 170 255 102 88 136 255 64 55 85 255 51 44 68 255 +minecraft:repeating_command_block[conditional=true,facing=down] 128 110 170 255 102 88 136 255 64 55 85 255 51 44 68 255 +minecraft:repeating_command_block[conditional=false,facing=north] 127 109 166 255 101 87 132 255 63 54 83 255 50 43 66 255 +minecraft:repeating_command_block[conditional=false,facing=east] 129 111 176 255 103 88 140 255 64 55 88 255 51 44 70 255 +minecraft:repeating_command_block[conditional=false,facing=south] 127 109 171 255 101 87 136 255 63 54 85 255 50 43 68 255 +minecraft:repeating_command_block[conditional=false,facing=west] 127 109 171 255 101 87 136 255 63 54 85 255 50 43 68 255 +minecraft:repeating_command_block[conditional=false,facing=up] 127 109 171 255 101 87 136 255 63 54 85 255 50 43 68 255 +minecraft:repeating_command_block[conditional=false,facing=down] 127 109 171 255 101 87 136 255 63 54 85 255 50 43 68 255 +minecraft:chain_command_block 129 156 144 255 103 124 115 255 64 78 72 255 51 62 57 255 +minecraft:chain_command_block[conditional=true,facing=east] 132 165 150 255 105 132 120 255 66 82 75 255 52 66 60 255 +minecraft:chain_command_block[conditional=true,facing=south] 131 161 147 255 104 128 117 255 65 80 73 255 52 64 58 255 +minecraft:chain_command_block[conditional=true,facing=west] 131 161 147 255 104 128 117 255 65 80 73 255 52 64 58 255 +minecraft:chain_command_block[conditional=true,facing=up] 131 161 147 255 104 128 117 255 65 80 73 255 52 64 58 255 +minecraft:chain_command_block[conditional=true,facing=down] 131 161 147 255 104 128 117 255 65 80 73 255 52 64 58 255 +minecraft:chain_command_block[conditional=false,facing=north] 129 156 144 255 103 124 115 255 64 78 72 255 51 62 57 255 +minecraft:chain_command_block[conditional=false,facing=east] 132 165 150 255 105 132 120 255 66 82 75 255 52 66 60 255 +minecraft:chain_command_block[conditional=false,facing=south] 129 161 147 255 103 128 117 255 64 80 73 255 51 64 58 255 +minecraft:chain_command_block[conditional=false,facing=west] 129 161 147 255 103 128 117 255 64 80 73 255 51 64 58 255 +minecraft:chain_command_block[conditional=false,facing=up] 129 161 147 255 103 128 117 255 64 80 73 255 51 64 58 255 +minecraft:chain_command_block[conditional=false,facing=down] 129 161 147 255 103 128 117 255 64 80 73 255 51 64 58 255 +minecraft:frosted_ice 140 181 252 190 112 144 201 190 70 90 126 190 56 72 100 190 +minecraft:frosted_ice[age=1] 139 180 252 193 111 144 201 193 69 90 126 193 55 72 100 193 +minecraft:frosted_ice[age=2] 137 179 252 199 109 143 201 199 68 89 126 199 54 71 100 199 +minecraft:frosted_ice[age=3] 134 177 252 212 107 141 201 212 67 88 126 212 53 70 100 212 +minecraft:magma_block 141 62 30 255 112 49 24 255 70 31 15 255 56 24 12 255 +minecraft:nether_wart_block 114 2 2 255 91 1 1 255 57 1 1 255 45 0 0 255 +minecraft:red_nether_bricks 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:bone_block 229 225 207 255 183 180 165 255 114 112 103 255 91 90 82 255 +minecraft:bone_block[axis=y] 209 206 179 255 167 164 143 255 104 103 89 255 83 82 71 255 +minecraft:bone_block[axis=z] 229 225 207 255 183 180 165 255 114 112 103 255 91 90 82 255 +minecraft:observer 71 69 69 255 56 55 55 255 35 34 34 255 28 27 27 255 +minecraft:observer[facing=north,powered=false] 71 69 69 255 56 55 55 255 35 34 34 255 28 27 27 255 +minecraft:observer[facing=east,powered=true] 103 103 103 255 82 82 82 255 51 51 51 255 41 41 41 255 +minecraft:observer[facing=east,powered=false] 103 103 103 255 82 82 82 255 51 51 51 255 41 41 41 255 +minecraft:observer[facing=south,powered=true] 98 98 98 255 78 78 78 255 49 49 49 255 39 39 39 255 +minecraft:observer[facing=south,powered=false] 98 98 98 255 78 78 78 255 49 49 49 255 39 39 39 255 +minecraft:observer[facing=west,powered=true] 98 98 98 255 78 78 78 255 49 49 49 255 39 39 39 255 +minecraft:observer[facing=west,powered=false] 98 98 98 255 78 78 78 255 49 49 49 255 39 39 39 255 +minecraft:observer[facing=up,powered=true] 98 98 98 255 78 78 78 255 49 49 49 255 39 39 39 255 +minecraft:observer[facing=up,powered=false] 98 98 98 255 78 78 78 255 49 49 49 255 39 39 39 255 +minecraft:observer[facing=down,powered=true] 98 98 98 255 78 78 78 255 49 49 49 255 39 39 39 255 +minecraft:observer[facing=down,powered=false] 98 98 98 255 78 78 78 255 49 49 49 255 39 39 39 255 +minecraft:shulker_box 121 83 121 255 96 66 96 255 60 41 60 255 48 33 48 255 +minecraft:shulker_box[facing=east] 139 96 139 255 111 76 111 255 69 48 69 255 55 38 55 255 +minecraft:shulker_box[facing=south] 139 97 139 255 111 77 111 255 69 48 69 255 55 38 55 255 +minecraft:shulker_box[facing=west] 139 97 139 255 111 77 111 255 69 48 69 255 55 38 55 255 +minecraft:shulker_box[facing=up] 139 97 139 255 111 77 111 255 69 48 69 255 55 38 55 255 +minecraft:shulker_box[facing=down] 139 97 139 255 111 77 111 255 69 48 69 255 55 38 55 255 +minecraft:white_shulker_box 168 173 174 255 134 138 139 255 84 86 87 255 67 69 69 255 +minecraft:white_shulker_box[facing=east] 215 220 221 255 172 176 176 255 107 110 110 255 86 88 88 255 +minecraft:white_shulker_box[facing=south] 202 207 208 255 161 165 166 255 101 103 104 255 80 82 83 255 +minecraft:white_shulker_box[facing=west] 202 207 208 255 161 165 166 255 101 103 104 255 80 82 83 255 +minecraft:white_shulker_box[facing=up] 202 207 208 255 161 165 166 255 101 103 104 255 80 82 83 255 +minecraft:white_shulker_box[facing=down] 202 207 208 255 161 165 166 255 101 103 104 255 80 82 83 255 +minecraft:orange_shulker_box 165 70 0 255 132 56 0 255 82 35 0 255 66 28 0 255 +minecraft:orange_shulker_box[facing=east] 234 106 8 255 187 84 6 255 117 53 4 255 93 42 3 255 +minecraft:orange_shulker_box[facing=south] 218 97 5 255 174 77 4 255 109 48 2 255 87 38 2 255 +minecraft:orange_shulker_box[facing=west] 218 97 5 255 174 77 4 255 109 48 2 255 87 38 2 255 +minecraft:orange_shulker_box[facing=up] 218 97 5 255 174 77 4 255 109 48 2 255 87 38 2 255 +minecraft:orange_shulker_box[facing=down] 218 97 5 255 174 77 4 255 109 48 2 255 87 38 2 255 +minecraft:magenta_shulker_box 138 38 129 255 110 30 103 255 69 19 64 255 55 15 51 255 +minecraft:magenta_shulker_box[facing=east] 173 54 163 255 138 43 130 255 86 27 81 255 69 21 65 255 +minecraft:magenta_shulker_box[facing=south] 163 48 153 255 130 38 122 255 81 24 76 255 65 19 61 255 +minecraft:magenta_shulker_box[facing=west] 163 48 153 255 130 38 122 255 81 24 76 255 65 19 61 255 +minecraft:magenta_shulker_box[facing=up] 163 48 153 255 130 38 122 255 81 24 76 255 65 19 61 255 +minecraft:magenta_shulker_box[facing=down] 163 48 153 255 130 38 122 255 81 24 76 255 65 19 61 255 +minecraft:light_blue_shulker_box 27 113 166 255 21 90 132 255 13 56 83 255 10 45 66 255 +minecraft:light_blue_shulker_box[facing=east] 49 163 212 255 39 130 169 255 24 81 106 255 19 65 84 255 +minecraft:light_blue_shulker_box[facing=south] 42 150 202 255 33 120 161 255 21 75 101 255 16 60 80 255 +minecraft:light_blue_shulker_box[facing=west] 42 150 202 255 33 120 161 255 21 75 101 255 16 60 80 255 +minecraft:light_blue_shulker_box[facing=up] 42 150 202 255 33 120 161 255 21 75 101 255 16 60 80 255 +minecraft:light_blue_shulker_box[facing=down] 42 150 202 255 33 120 161 255 21 75 101 255 16 60 80 255 +minecraft:yellow_shulker_box 209 149 14 255 167 119 11 255 104 74 7 255 83 59 5 255 +minecraft:yellow_shulker_box[facing=east] 248 188 29 255 198 150 23 255 124 94 14 255 99 75 11 255 +minecraft:yellow_shulker_box[facing=south] 240 179 24 255 192 143 19 255 120 89 12 255 96 71 9 255 +minecraft:yellow_shulker_box[facing=west] 240 179 24 255 192 143 19 255 120 89 12 255 96 71 9 255 +minecraft:yellow_shulker_box[facing=up] 240 179 24 255 192 143 19 255 120 89 12 255 96 71 9 255 +minecraft:yellow_shulker_box[facing=down] 240 179 24 255 192 143 19 255 120 89 12 255 96 71 9 255 +minecraft:lime_shulker_box 61 112 14 255 48 89 11 255 30 56 7 255 24 44 5 255 +minecraft:lime_shulker_box[facing=east] 99 172 23 255 79 137 18 255 49 86 11 255 39 68 9 255 +minecraft:lime_shulker_box[facing=south] 88 156 21 255 70 124 16 255 44 78 10 255 35 62 8 255 +minecraft:lime_shulker_box[facing=west] 88 156 21 255 70 124 16 255 44 78 10 255 35 62 8 255 +minecraft:lime_shulker_box[facing=up] 88 156 21 255 70 124 16 255 44 78 10 255 35 62 8 255 +minecraft:lime_shulker_box[facing=down] 88 156 21 255 70 124 16 255 44 78 10 255 35 62 8 255 +minecraft:pink_shulker_box 177 78 116 255 141 62 92 255 88 39 58 255 70 31 46 255 +minecraft:pink_shulker_box[facing=east] 230 121 157 255 184 96 125 255 115 60 78 255 92 48 62 255 +minecraft:pink_shulker_box[facing=south] 217 109 146 255 173 87 116 255 108 54 73 255 86 43 58 255 +minecraft:pink_shulker_box[facing=west] 217 109 146 255 173 87 116 255 108 54 73 255 86 43 58 255 +minecraft:pink_shulker_box[facing=up] 217 109 146 255 173 87 116 255 108 54 73 255 86 43 58 255 +minecraft:pink_shulker_box[facing=down] 217 109 146 255 173 87 116 255 108 54 73 255 86 43 58 255 +minecraft:gray_shulker_box 36 38 41 255 28 30 32 255 18 19 20 255 14 15 16 255 +minecraft:gray_shulker_box[facing=east] 55 58 62 255 44 46 49 255 27 29 31 255 22 23 24 255 +minecraft:gray_shulker_box[facing=south] 49 52 56 255 39 41 44 255 24 26 28 255 19 20 22 255 +minecraft:gray_shulker_box[facing=west] 49 52 56 255 39 41 44 255 24 26 28 255 19 20 22 255 +minecraft:gray_shulker_box[facing=up] 49 52 56 255 39 41 44 255 24 26 28 255 19 20 22 255 +minecraft:gray_shulker_box[facing=down] 49 52 56 255 39 41 44 255 24 26 28 255 19 20 22 255 +minecraft:light_gray_shulker_box 78 78 71 255 62 62 56 255 39 39 35 255 31 31 28 255 +minecraft:light_gray_shulker_box[facing=east] 124 124 115 255 99 99 92 255 62 62 57 255 49 49 46 255 +minecraft:light_gray_shulker_box[facing=south] 111 111 102 255 88 88 81 255 55 55 51 255 44 44 40 255 +minecraft:light_gray_shulker_box[facing=west] 111 111 102 255 88 88 81 255 55 55 51 255 44 44 40 255 +minecraft:light_gray_shulker_box[facing=up] 111 111 102 255 88 88 81 255 55 55 51 255 44 44 40 255 +minecraft:light_gray_shulker_box[facing=down] 111 111 102 255 88 88 81 255 55 55 51 255 44 44 40 255 +minecraft:cyan_shulker_box 10 82 95 255 8 65 76 255 5 41 47 255 4 32 38 255 +minecraft:cyan_shulker_box[facing=east] 20 121 135 255 16 96 108 255 10 60 67 255 8 48 54 255 +minecraft:cyan_shulker_box[facing=south] 17 110 124 255 13 88 99 255 8 55 62 255 6 44 49 255 +minecraft:cyan_shulker_box[facing=west] 17 110 124 255 13 88 99 255 8 55 62 255 6 44 49 255 +minecraft:cyan_shulker_box[facing=up] 17 110 124 255 13 88 99 255 8 55 62 255 6 44 49 255 +minecraft:cyan_shulker_box[facing=down] 17 110 124 255 13 88 99 255 8 55 62 255 6 44 49 255 +minecraft:purple_shulker_box 75 21 120 255 60 16 96 255 37 10 60 255 30 8 48 255 +minecraft:purple_shulker_box[facing=east] 103 32 156 255 82 25 124 255 51 16 78 255 41 12 62 255 +minecraft:purple_shulker_box[facing=south] 94 28 146 255 75 22 116 255 47 14 73 255 37 11 58 255 +minecraft:purple_shulker_box[facing=west] 94 28 146 255 75 22 116 255 47 14 73 255 37 11 58 255 +minecraft:purple_shulker_box[facing=up] 94 28 146 255 75 22 116 255 47 14 73 255 37 11 58 255 +minecraft:purple_shulker_box[facing=down] 94 28 146 255 75 22 116 255 47 14 73 255 37 11 58 255 +minecraft:blue_shulker_box 26 27 99 255 20 21 79 255 13 13 49 255 10 10 39 255 +minecraft:blue_shulker_box[facing=east] 43 45 140 255 34 36 112 255 21 22 70 255 17 18 56 255 +minecraft:blue_shulker_box[facing=south] 38 40 128 255 30 32 102 255 19 20 64 255 15 16 51 255 +minecraft:blue_shulker_box[facing=west] 38 40 128 255 30 32 102 255 19 20 64 255 15 16 51 255 +minecraft:blue_shulker_box[facing=up] 38 40 128 255 30 32 102 255 19 20 64 255 15 16 51 255 +minecraft:blue_shulker_box[facing=down] 38 40 128 255 30 32 102 255 19 20 64 255 15 16 51 255 +minecraft:brown_shulker_box 74 44 21 255 59 35 16 255 37 22 10 255 29 17 8 255 +minecraft:brown_shulker_box[facing=east] 106 66 35 255 84 52 28 255 53 33 17 255 42 26 14 255 +minecraft:brown_shulker_box[facing=south] 98 60 32 255 78 48 25 255 49 30 16 255 39 24 12 255 +minecraft:brown_shulker_box[facing=west] 98 60 32 255 78 48 25 255 49 30 16 255 39 24 12 255 +minecraft:brown_shulker_box[facing=up] 98 60 32 255 78 48 25 255 49 30 16 255 39 24 12 255 +minecraft:brown_shulker_box[facing=down] 98 60 32 255 78 48 25 255 49 30 16 255 39 24 12 255 +minecraft:green_shulker_box 60 75 30 255 48 60 24 255 30 37 15 255 24 30 12 255 +minecraft:green_shulker_box[facing=east] 79 100 31 255 63 80 24 255 39 50 15 255 31 40 12 255 +minecraft:green_shulker_box[facing=south] 74 94 32 255 59 75 25 255 37 47 16 255 29 37 12 255 +minecraft:green_shulker_box[facing=west] 74 94 32 255 59 75 25 255 37 47 16 255 29 37 12 255 +minecraft:green_shulker_box[facing=up] 74 94 32 255 59 75 25 255 37 47 16 255 29 37 12 255 +minecraft:green_shulker_box[facing=down] 74 94 32 255 59 75 25 255 37 47 16 255 29 37 12 255 +minecraft:red_shulker_box 102 16 16 255 81 12 12 255 51 8 8 255 40 6 6 255 +minecraft:red_shulker_box[facing=east] 140 31 30 255 112 24 24 255 70 15 15 255 56 12 12 255 +minecraft:red_shulker_box[facing=south] 129 26 26 255 103 20 20 255 64 13 13 255 51 10 10 255 +minecraft:red_shulker_box[facing=west] 129 26 26 255 103 20 20 255 64 13 13 255 51 10 10 255 +minecraft:red_shulker_box[facing=up] 129 26 26 255 103 20 20 255 64 13 13 255 51 10 10 255 +minecraft:red_shulker_box[facing=down] 129 26 26 255 103 20 20 255 64 13 13 255 51 10 10 255 +minecraft:black_shulker_box 10 12 16 255 8 9 12 255 5 6 8 255 4 4 6 255 +minecraft:black_shulker_box[facing=east] 25 25 29 255 20 20 23 255 12 12 14 255 10 10 11 255 +minecraft:black_shulker_box[facing=south] 20 21 25 255 16 16 20 255 10 10 12 255 8 8 10 255 +minecraft:black_shulker_box[facing=west] 20 21 25 255 16 16 20 255 10 10 12 255 8 8 10 255 +minecraft:black_shulker_box[facing=up] 20 21 25 255 16 16 20 255 10 10 12 255 8 8 10 255 +minecraft:black_shulker_box[facing=down] 20 21 25 255 16 16 20 255 10 10 12 255 8 8 10 255 +minecraft:white_glazed_terracotta 188 212 202 255 150 169 161 255 94 106 101 255 75 84 80 255 +minecraft:white_glazed_terracotta[facing=south] 188 212 202 255 150 169 161 255 94 106 101 255 75 84 80 255 +minecraft:white_glazed_terracotta[facing=west] 188 212 202 255 150 169 161 255 94 106 101 255 75 84 80 255 +minecraft:white_glazed_terracotta[facing=east] 188 212 202 255 150 169 161 255 94 106 101 255 75 84 80 255 +minecraft:orange_glazed_terracotta 154 147 91 255 123 117 72 255 77 73 45 255 61 58 36 255 +minecraft:orange_glazed_terracotta[facing=south] 154 147 91 255 123 117 72 255 77 73 45 255 61 58 36 255 +minecraft:orange_glazed_terracotta[facing=west] 154 147 91 255 123 117 72 255 77 73 45 255 61 58 36 255 +minecraft:orange_glazed_terracotta[facing=east] 154 147 91 255 123 117 72 255 77 73 45 255 61 58 36 255 +minecraft:magenta_glazed_terracotta 208 100 191 255 166 80 152 255 104 50 95 255 83 40 76 255 +minecraft:magenta_glazed_terracotta[facing=south] 208 100 191 255 166 80 152 255 104 50 95 255 83 40 76 255 +minecraft:magenta_glazed_terracotta[facing=west] 208 100 191 255 166 80 152 255 104 50 95 255 83 40 76 255 +minecraft:magenta_glazed_terracotta[facing=east] 208 100 191 255 166 80 152 255 104 50 95 255 83 40 76 255 +minecraft:light_blue_glazed_terracotta 94 164 208 255 75 131 166 255 47 82 104 255 37 65 83 255 +minecraft:light_blue_glazed_terracotta[facing=south] 94 164 208 255 75 131 166 255 47 82 104 255 37 65 83 255 +minecraft:light_blue_glazed_terracotta[facing=west] 94 164 208 255 75 131 166 255 47 82 104 255 37 65 83 255 +minecraft:light_blue_glazed_terracotta[facing=east] 94 164 208 255 75 131 166 255 47 82 104 255 37 65 83 255 +minecraft:yellow_glazed_terracotta 234 192 88 255 187 153 70 255 117 96 44 255 93 76 35 255 +minecraft:yellow_glazed_terracotta[facing=south] 234 192 88 255 187 153 70 255 117 96 44 255 93 76 35 255 +minecraft:yellow_glazed_terracotta[facing=west] 234 192 88 255 187 153 70 255 117 96 44 255 93 76 35 255 +minecraft:yellow_glazed_terracotta[facing=east] 234 192 88 255 187 153 70 255 117 96 44 255 93 76 35 255 +minecraft:lime_glazed_terracotta 162 197 55 255 129 157 44 255 81 98 27 255 64 78 22 255 +minecraft:lime_glazed_terracotta[facing=south] 162 197 55 255 129 157 44 255 81 98 27 255 64 78 22 255 +minecraft:lime_glazed_terracotta[facing=west] 162 197 55 255 129 157 44 255 81 98 27 255 64 78 22 255 +minecraft:lime_glazed_terracotta[facing=east] 162 197 55 255 129 157 44 255 81 98 27 255 64 78 22 255 +minecraft:pink_glazed_terracotta 235 154 181 255 188 123 144 255 117 77 90 255 94 61 72 255 +minecraft:pink_glazed_terracotta[facing=south] 235 154 181 255 188 123 144 255 117 77 90 255 94 61 72 255 +minecraft:pink_glazed_terracotta[facing=west] 235 154 181 255 188 123 144 255 117 77 90 255 94 61 72 255 +minecraft:pink_glazed_terracotta[facing=east] 235 154 181 255 188 123 144 255 117 77 90 255 94 61 72 255 +minecraft:gray_glazed_terracotta 83 90 93 255 66 72 74 255 41 45 46 255 33 36 37 255 +minecraft:gray_glazed_terracotta[facing=south] 83 90 93 255 66 72 74 255 41 45 46 255 33 36 37 255 +minecraft:gray_glazed_terracotta[facing=west] 83 90 93 255 66 72 74 255 41 45 46 255 33 36 37 255 +minecraft:gray_glazed_terracotta[facing=east] 83 90 93 255 66 72 74 255 41 45 46 255 33 36 37 255 +minecraft:light_gray_glazed_terracotta 144 166 167 255 115 132 133 255 72 83 83 255 57 66 66 255 +minecraft:light_gray_glazed_terracotta[facing=south] 144 166 167 255 115 132 133 255 72 83 83 255 57 66 66 255 +minecraft:light_gray_glazed_terracotta[facing=west] 144 166 167 255 115 132 133 255 72 83 83 255 57 66 66 255 +minecraft:light_gray_glazed_terracotta[facing=east] 144 166 167 255 115 132 133 255 72 83 83 255 57 66 66 255 +minecraft:cyan_glazed_terracotta 52 118 125 255 41 94 100 255 26 59 62 255 20 47 50 255 +minecraft:cyan_glazed_terracotta[facing=south] 52 118 125 255 41 94 100 255 26 59 62 255 20 47 50 255 +minecraft:cyan_glazed_terracotta[facing=west] 52 118 125 255 41 94 100 255 26 59 62 255 20 47 50 255 +minecraft:cyan_glazed_terracotta[facing=east] 52 118 125 255 41 94 100 255 26 59 62 255 20 47 50 255 +minecraft:purple_glazed_terracotta 109 48 152 255 87 38 121 255 54 24 76 255 43 19 60 255 +minecraft:purple_glazed_terracotta[facing=south] 109 48 152 255 87 38 121 255 54 24 76 255 43 19 60 255 +minecraft:purple_glazed_terracotta[facing=west] 109 48 152 255 87 38 121 255 54 24 76 255 43 19 60 255 +minecraft:purple_glazed_terracotta[facing=east] 109 48 152 255 87 38 121 255 54 24 76 255 43 19 60 255 +minecraft:blue_glazed_terracotta 47 64 139 255 37 51 111 255 23 32 69 255 18 25 55 255 +minecraft:blue_glazed_terracotta[facing=south] 47 64 139 255 37 51 111 255 23 32 69 255 18 25 55 255 +minecraft:blue_glazed_terracotta[facing=west] 47 64 139 255 37 51 111 255 23 32 69 255 18 25 55 255 +minecraft:blue_glazed_terracotta[facing=east] 47 64 139 255 37 51 111 255 23 32 69 255 18 25 55 255 +minecraft:brown_glazed_terracotta 119 106 85 255 95 84 68 255 59 53 42 255 47 42 34 255 +minecraft:brown_glazed_terracotta[facing=south] 119 106 85 255 95 84 68 255 59 53 42 255 47 42 34 255 +minecraft:brown_glazed_terracotta[facing=west] 119 106 85 255 95 84 68 255 59 53 42 255 47 42 34 255 +minecraft:brown_glazed_terracotta[facing=east] 119 106 85 255 95 84 68 255 59 53 42 255 47 42 34 255 +minecraft:green_glazed_terracotta 117 142 67 255 93 113 53 255 58 71 33 255 46 56 26 255 +minecraft:green_glazed_terracotta[facing=south] 117 142 67 255 93 113 53 255 58 71 33 255 46 56 26 255 +minecraft:green_glazed_terracotta[facing=west] 117 142 67 255 93 113 53 255 58 71 33 255 46 56 26 255 +minecraft:green_glazed_terracotta[facing=east] 117 142 67 255 93 113 53 255 58 71 33 255 46 56 26 255 +minecraft:red_glazed_terracotta 181 59 53 255 144 47 42 255 90 29 26 255 72 23 21 255 +minecraft:red_glazed_terracotta[facing=south] 181 59 53 255 144 47 42 255 90 29 26 255 72 23 21 255 +minecraft:red_glazed_terracotta[facing=west] 181 59 53 255 144 47 42 255 90 29 26 255 72 23 21 255 +minecraft:red_glazed_terracotta[facing=east] 181 59 53 255 144 47 42 255 90 29 26 255 72 23 21 255 +minecraft:black_glazed_terracotta 67 30 32 255 53 24 25 255 33 15 16 255 26 12 12 255 +minecraft:black_glazed_terracotta[facing=south] 67 30 32 255 53 24 25 255 33 15 16 255 26 12 12 255 +minecraft:black_glazed_terracotta[facing=west] 67 30 32 255 53 24 25 255 33 15 16 255 26 12 12 255 +minecraft:black_glazed_terracotta[facing=east] 67 30 32 255 53 24 25 255 33 15 16 255 26 12 12 255 +minecraft:white_concrete 207 213 214 255 165 170 171 255 103 106 107 255 82 85 85 255 +minecraft:orange_concrete 224 97 0 255 179 77 0 255 112 48 0 255 89 38 0 255 +minecraft:magenta_concrete 169 48 159 255 135 38 127 255 84 24 79 255 67 19 63 255 +minecraft:light_blue_concrete 35 137 198 255 28 109 158 255 17 68 99 255 14 54 79 255 +minecraft:yellow_concrete 240 175 21 255 192 140 16 255 120 87 10 255 96 70 8 255 +minecraft:lime_concrete 94 168 24 255 75 134 19 255 47 84 12 255 37 67 9 255 +minecraft:pink_concrete 213 101 142 255 170 80 113 255 106 50 71 255 85 40 56 255 +minecraft:gray_concrete 54 57 61 255 43 45 48 255 27 28 30 255 21 22 24 255 +minecraft:light_gray_concrete 125 125 115 255 100 100 92 255 62 62 57 255 50 50 46 255 +minecraft:cyan_concrete 21 119 136 255 16 95 108 255 10 59 68 255 8 47 54 255 +minecraft:purple_concrete 100 31 156 255 80 24 124 255 50 15 78 255 40 12 62 255 +minecraft:blue_concrete 44 46 143 255 35 36 114 255 22 23 71 255 17 18 57 255 +minecraft:brown_concrete 96 59 31 255 76 47 24 255 48 29 15 255 38 23 12 255 +minecraft:green_concrete 73 91 36 255 58 72 28 255 36 45 18 255 29 36 14 255 +minecraft:red_concrete 142 32 32 255 113 25 25 255 71 16 16 255 56 12 12 255 +minecraft:black_concrete 8 10 15 255 6 8 12 255 4 5 7 255 3 4 6 255 +minecraft:white_concrete_powder 225 227 227 255 180 181 181 255 112 113 113 255 90 90 90 255 +minecraft:orange_concrete_powder 227 131 31 255 181 104 24 255 113 65 15 255 90 52 12 255 +minecraft:magenta_concrete_powder 192 83 184 255 153 66 147 255 96 41 92 255 76 33 73 255 +minecraft:light_blue_concrete_powder 74 180 213 255 59 144 170 255 37 90 106 255 29 72 85 255 +minecraft:yellow_concrete_powder 232 199 54 255 185 159 43 255 116 99 27 255 92 79 21 255 +minecraft:lime_concrete_powder 125 189 41 255 100 151 32 255 62 94 20 255 50 75 16 255 +minecraft:pink_concrete_powder 228 153 181 255 182 122 144 255 114 76 90 255 91 61 72 255 +minecraft:gray_concrete_powder 76 81 84 255 60 64 67 255 38 40 42 255 30 32 33 255 +minecraft:light_gray_concrete_powder 154 154 148 255 123 123 118 255 77 77 74 255 61 61 59 255 +minecraft:cyan_concrete_powder 36 147 157 255 28 117 125 255 18 73 78 255 14 58 62 255 +minecraft:purple_concrete_powder 131 55 177 255 104 44 141 255 65 27 88 255 52 22 70 255 +minecraft:blue_concrete_powder 70 73 166 255 56 58 132 255 35 36 83 255 28 29 66 255 +minecraft:brown_concrete_powder 125 84 53 255 100 67 42 255 62 42 26 255 50 33 21 255 +minecraft:green_concrete_powder 97 119 44 255 77 95 35 255 48 59 22 255 38 47 17 255 +minecraft:red_concrete_powder 168 54 50 255 134 43 40 255 84 27 25 255 67 21 20 255 +minecraft:black_concrete_powder 25 26 31 255 20 20 24 255 12 13 15 255 10 10 12 255 +minecraft:kelp 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=1] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=2] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=3] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=4] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=5] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=6] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=7] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=8] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=9] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=10] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=11] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=12] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=13] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=14] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=15] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=16] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=17] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=18] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=19] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=20] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=21] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=22] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=23] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=24] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=25] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp_plant 40 97 14 100 32 77 11 100 20 48 7 100 16 38 5 100 +minecraft:dried_kelp_block 50 58 38 255 40 46 30 255 25 29 19 255 20 23 15 255 +minecraft:turtle_egg 228 226 191 132 182 180 152 132 114 113 95 132 91 90 76 132 +minecraft:turtle_egg[eggs=1,hatch=1] 218 214 177 132 174 171 141 132 109 107 88 132 87 85 70 132 +minecraft:turtle_egg[eggs=1,hatch=2] 207 203 165 132 165 162 132 132 103 101 82 132 82 81 66 132 +minecraft:turtle_egg[eggs=2,hatch=0] 228 226 191 132 182 180 152 132 114 113 95 132 91 90 76 132 +minecraft:turtle_egg[eggs=2,hatch=1] 218 214 177 132 174 171 141 132 109 107 88 132 87 85 70 132 +minecraft:turtle_egg[eggs=2,hatch=2] 207 203 165 132 165 162 132 132 103 101 82 132 82 81 66 132 +minecraft:turtle_egg[eggs=3,hatch=0] 228 226 191 132 182 180 152 132 114 113 95 132 91 90 76 132 +minecraft:turtle_egg[eggs=3,hatch=1] 218 214 177 132 174 171 141 132 109 107 88 132 87 85 70 132 +minecraft:turtle_egg[eggs=3,hatch=2] 207 203 165 132 165 162 132 132 103 101 82 132 82 81 66 132 +minecraft:turtle_egg[eggs=4,hatch=0] 228 226 191 132 182 180 152 132 114 113 95 132 91 90 76 132 +minecraft:turtle_egg[eggs=4,hatch=1] 218 214 177 132 174 171 141 132 109 107 88 132 87 85 70 132 +minecraft:turtle_egg[eggs=4,hatch=2] 207 203 165 132 165 162 132 132 103 101 82 132 82 81 66 132 +minecraft:dead_tube_coral_block 130 123 119 255 104 98 95 255 65 61 59 255 52 49 47 255 +minecraft:dead_brain_coral_block 124 117 114 255 99 93 91 255 62 58 57 255 49 46 45 255 +minecraft:dead_bubble_coral_block 131 123 119 255 104 98 95 255 65 61 59 255 52 49 47 255 +minecraft:dead_fire_coral_block 131 123 119 255 104 98 95 255 65 61 59 255 52 49 47 255 +minecraft:dead_horn_coral_block 133 126 122 255 106 100 97 255 66 63 61 255 53 50 48 255 +minecraft:tube_coral_block 49 87 206 255 39 69 164 255 24 43 103 255 19 34 82 255 +minecraft:brain_coral_block 207 91 159 255 165 72 127 255 103 45 79 255 82 36 63 255 +minecraft:bubble_coral_block 165 26 162 255 132 20 129 255 82 13 81 255 66 10 64 255 +minecraft:fire_coral_block 163 35 46 255 130 28 36 255 81 17 23 255 65 14 18 255 +minecraft:horn_coral_block 216 199 66 255 172 159 52 255 108 99 33 255 86 79 26 255 +minecraft:dead_tube_coral 118 111 107 152 94 88 85 152 59 55 53 152 47 44 42 152 +minecraft:dead_tube_coral[waterlogged=false] 118 111 107 152 94 88 85 152 59 55 53 152 47 44 42 152 +minecraft:dead_brain_coral 133 125 120 111 106 100 96 111 66 62 60 111 53 50 48 111 +minecraft:dead_brain_coral[waterlogged=false] 133 125 120 111 106 100 96 111 66 62 60 111 53 50 48 111 +minecraft:dead_bubble_coral 132 124 120 132 105 99 96 132 66 62 60 132 52 49 48 132 +minecraft:dead_bubble_coral[waterlogged=false] 132 124 120 132 105 99 96 132 66 62 60 132 52 49 48 132 +minecraft:dead_fire_coral 136 128 124 108 108 102 99 108 68 64 62 108 54 51 49 108 +minecraft:dead_fire_coral[waterlogged=false] 136 128 124 108 108 102 99 108 68 64 62 108 54 51 49 108 +minecraft:dead_horn_coral 142 135 129 99 113 108 103 99 71 67 64 99 56 54 51 99 +minecraft:dead_horn_coral[waterlogged=false] 142 135 129 99 113 108 103 99 71 67 64 99 56 54 51 99 +minecraft:tube_coral 47 83 197 152 37 66 157 152 23 41 98 152 18 33 78 152 +minecraft:tube_coral[waterlogged=false] 47 83 197 152 37 66 157 152 23 41 98 152 18 33 78 152 +minecraft:brain_coral 197 84 152 111 157 67 121 111 98 42 76 111 78 33 60 111 +minecraft:brain_coral[waterlogged=false] 197 84 152 111 157 67 121 111 98 42 76 111 78 33 60 111 +minecraft:bubble_coral 161 23 159 132 128 18 127 132 80 11 79 132 64 9 63 132 +minecraft:bubble_coral[waterlogged=false] 161 23 159 132 128 18 127 132 80 11 79 132 64 9 63 132 +minecraft:fire_coral 166 37 46 108 132 29 36 108 83 18 23 108 66 14 18 108 +minecraft:fire_coral[waterlogged=false] 166 37 46 108 132 29 36 108 83 18 23 108 66 14 18 108 +minecraft:horn_coral 209 186 62 99 167 148 49 99 104 93 31 99 83 74 24 99 +minecraft:horn_coral[waterlogged=false] 209 186 62 99 167 148 49 99 104 93 31 99 83 74 24 99 +minecraft:dead_tube_coral_fan 128 122 118 78 102 97 94 78 64 61 59 78 51 48 47 78 +minecraft:dead_tube_coral_fan[waterlogged=false] 128 122 118 78 102 97 94 78 64 61 59 78 51 48 47 78 +minecraft:dead_brain_coral_fan 132 125 121 94 105 100 96 94 66 62 60 94 52 50 48 94 +minecraft:dead_brain_coral_fan[waterlogged=false] 132 125 121 94 105 100 96 94 66 62 60 94 52 50 48 94 +minecraft:dead_bubble_coral_fan 140 134 130 111 112 107 104 111 70 67 65 111 56 53 52 111 +minecraft:dead_bubble_coral_fan[waterlogged=false] 140 134 130 111 112 107 104 111 70 67 65 111 56 53 52 111 +minecraft:dead_fire_coral_fan 124 118 114 104 99 94 91 104 62 59 57 104 49 47 45 104 +minecraft:dead_fire_coral_fan[waterlogged=false] 124 118 114 104 99 94 91 104 62 59 57 104 49 47 45 104 +minecraft:dead_horn_coral_fan 134 125 121 93 107 100 96 93 67 62 60 93 53 50 48 93 +minecraft:dead_horn_coral_fan[waterlogged=false] 134 125 121 93 107 100 96 93 67 62 60 93 53 50 48 93 +minecraft:tube_coral_fan 50 91 208 78 40 72 166 78 25 45 104 78 20 36 83 78 +minecraft:tube_coral_fan[waterlogged=false] 50 91 208 78 40 72 166 78 25 45 104 78 20 36 83 78 +minecraft:brain_coral_fan 202 84 153 94 161 67 122 94 101 42 76 94 80 33 61 94 +minecraft:brain_coral_fan[waterlogged=false] 202 84 153 94 161 67 122 94 101 42 76 94 80 33 61 94 +minecraft:bubble_coral_fan 160 32 159 111 128 25 127 111 80 16 79 111 64 12 63 111 +minecraft:bubble_coral_fan[waterlogged=false] 160 32 159 111 128 25 127 111 80 16 79 111 64 12 63 111 +minecraft:fire_coral_fan 158 34 45 104 126 27 36 104 79 17 22 104 63 13 18 104 +minecraft:fire_coral_fan[waterlogged=false] 158 34 45 104 126 27 36 104 79 17 22 104 63 13 18 104 +minecraft:horn_coral_fan 205 183 61 93 164 146 48 93 102 91 30 93 82 73 24 93 +minecraft:horn_coral_fan[waterlogged=false] 205 183 61 93 164 146 48 93 102 91 30 93 82 73 24 93 +minecraft:dead_tube_coral_wall_fan 128 122 118 78 102 97 94 78 64 61 59 78 51 48 47 78 +minecraft:dead_tube_coral_wall_fan[facing=north,waterlogged=false] 128 122 118 78 102 97 94 78 64 61 59 78 51 48 47 78 +minecraft:dead_tube_coral_wall_fan[facing=south,waterlogged=true] 128 122 118 78 102 97 94 78 64 61 59 78 51 48 47 78 +minecraft:dead_tube_coral_wall_fan[facing=south,waterlogged=false] 128 122 118 78 102 97 94 78 64 61 59 78 51 48 47 78 +minecraft:dead_tube_coral_wall_fan[facing=west,waterlogged=true] 128 122 118 78 102 97 94 78 64 61 59 78 51 48 47 78 +minecraft:dead_tube_coral_wall_fan[facing=west,waterlogged=false] 128 122 118 78 102 97 94 78 64 61 59 78 51 48 47 78 +minecraft:dead_tube_coral_wall_fan[facing=east,waterlogged=true] 128 122 118 78 102 97 94 78 64 61 59 78 51 48 47 78 +minecraft:dead_tube_coral_wall_fan[facing=east,waterlogged=false] 128 122 118 78 102 97 94 78 64 61 59 78 51 48 47 78 +minecraft:dead_brain_coral_wall_fan 132 125 121 94 105 100 96 94 66 62 60 94 52 50 48 94 +minecraft:dead_brain_coral_wall_fan[facing=north,waterlogged=false] 132 125 121 94 105 100 96 94 66 62 60 94 52 50 48 94 +minecraft:dead_brain_coral_wall_fan[facing=south,waterlogged=true] 132 125 121 94 105 100 96 94 66 62 60 94 52 50 48 94 +minecraft:dead_brain_coral_wall_fan[facing=south,waterlogged=false] 132 125 121 94 105 100 96 94 66 62 60 94 52 50 48 94 +minecraft:dead_brain_coral_wall_fan[facing=west,waterlogged=true] 132 125 121 94 105 100 96 94 66 62 60 94 52 50 48 94 +minecraft:dead_brain_coral_wall_fan[facing=west,waterlogged=false] 132 125 121 94 105 100 96 94 66 62 60 94 52 50 48 94 +minecraft:dead_brain_coral_wall_fan[facing=east,waterlogged=true] 132 125 121 94 105 100 96 94 66 62 60 94 52 50 48 94 +minecraft:dead_brain_coral_wall_fan[facing=east,waterlogged=false] 132 125 121 94 105 100 96 94 66 62 60 94 52 50 48 94 +minecraft:dead_bubble_coral_wall_fan 140 134 130 111 112 107 104 111 70 67 65 111 56 53 52 111 +minecraft:dead_bubble_coral_wall_fan[facing=north,waterlogged=false] 140 134 130 111 112 107 104 111 70 67 65 111 56 53 52 111 +minecraft:dead_bubble_coral_wall_fan[facing=south,waterlogged=true] 140 134 130 111 112 107 104 111 70 67 65 111 56 53 52 111 +minecraft:dead_bubble_coral_wall_fan[facing=south,waterlogged=false] 140 134 130 111 112 107 104 111 70 67 65 111 56 53 52 111 +minecraft:dead_bubble_coral_wall_fan[facing=west,waterlogged=true] 140 134 130 111 112 107 104 111 70 67 65 111 56 53 52 111 +minecraft:dead_bubble_coral_wall_fan[facing=west,waterlogged=false] 140 134 130 111 112 107 104 111 70 67 65 111 56 53 52 111 +minecraft:dead_bubble_coral_wall_fan[facing=east,waterlogged=true] 140 134 130 111 112 107 104 111 70 67 65 111 56 53 52 111 +minecraft:dead_bubble_coral_wall_fan[facing=east,waterlogged=false] 140 134 130 111 112 107 104 111 70 67 65 111 56 53 52 111 +minecraft:dead_fire_coral_wall_fan 124 118 114 104 99 94 91 104 62 59 57 104 49 47 45 104 +minecraft:dead_fire_coral_wall_fan[facing=north,waterlogged=false] 124 118 114 104 99 94 91 104 62 59 57 104 49 47 45 104 +minecraft:dead_fire_coral_wall_fan[facing=south,waterlogged=true] 124 118 114 104 99 94 91 104 62 59 57 104 49 47 45 104 +minecraft:dead_fire_coral_wall_fan[facing=south,waterlogged=false] 124 118 114 104 99 94 91 104 62 59 57 104 49 47 45 104 +minecraft:dead_fire_coral_wall_fan[facing=west,waterlogged=true] 124 118 114 104 99 94 91 104 62 59 57 104 49 47 45 104 +minecraft:dead_fire_coral_wall_fan[facing=west,waterlogged=false] 124 118 114 104 99 94 91 104 62 59 57 104 49 47 45 104 +minecraft:dead_fire_coral_wall_fan[facing=east,waterlogged=true] 124 118 114 104 99 94 91 104 62 59 57 104 49 47 45 104 +minecraft:dead_fire_coral_wall_fan[facing=east,waterlogged=false] 124 118 114 104 99 94 91 104 62 59 57 104 49 47 45 104 +minecraft:dead_horn_coral_wall_fan 134 125 121 93 107 100 96 93 67 62 60 93 53 50 48 93 +minecraft:dead_horn_coral_wall_fan[facing=north,waterlogged=false] 134 125 121 93 107 100 96 93 67 62 60 93 53 50 48 93 +minecraft:dead_horn_coral_wall_fan[facing=south,waterlogged=true] 134 125 121 93 107 100 96 93 67 62 60 93 53 50 48 93 +minecraft:dead_horn_coral_wall_fan[facing=south,waterlogged=false] 134 125 121 93 107 100 96 93 67 62 60 93 53 50 48 93 +minecraft:dead_horn_coral_wall_fan[facing=west,waterlogged=true] 134 125 121 93 107 100 96 93 67 62 60 93 53 50 48 93 +minecraft:dead_horn_coral_wall_fan[facing=west,waterlogged=false] 134 125 121 93 107 100 96 93 67 62 60 93 53 50 48 93 +minecraft:dead_horn_coral_wall_fan[facing=east,waterlogged=true] 134 125 121 93 107 100 96 93 67 62 60 93 53 50 48 93 +minecraft:dead_horn_coral_wall_fan[facing=east,waterlogged=false] 134 125 121 93 107 100 96 93 67 62 60 93 53 50 48 93 +minecraft:tube_coral_wall_fan 50 91 208 78 40 72 166 78 25 45 104 78 20 36 83 78 +minecraft:tube_coral_wall_fan[facing=north,waterlogged=false] 50 91 208 78 40 72 166 78 25 45 104 78 20 36 83 78 +minecraft:tube_coral_wall_fan[facing=south,waterlogged=true] 50 91 208 78 40 72 166 78 25 45 104 78 20 36 83 78 +minecraft:tube_coral_wall_fan[facing=south,waterlogged=false] 50 91 208 78 40 72 166 78 25 45 104 78 20 36 83 78 +minecraft:tube_coral_wall_fan[facing=west,waterlogged=true] 50 91 208 78 40 72 166 78 25 45 104 78 20 36 83 78 +minecraft:tube_coral_wall_fan[facing=west,waterlogged=false] 50 91 208 78 40 72 166 78 25 45 104 78 20 36 83 78 +minecraft:tube_coral_wall_fan[facing=east,waterlogged=true] 50 91 208 78 40 72 166 78 25 45 104 78 20 36 83 78 +minecraft:tube_coral_wall_fan[facing=east,waterlogged=false] 50 91 208 78 40 72 166 78 25 45 104 78 20 36 83 78 +minecraft:brain_coral_wall_fan 202 84 153 94 161 67 122 94 101 42 76 94 80 33 61 94 +minecraft:brain_coral_wall_fan[facing=north,waterlogged=false] 202 84 153 94 161 67 122 94 101 42 76 94 80 33 61 94 +minecraft:brain_coral_wall_fan[facing=south,waterlogged=true] 202 84 153 94 161 67 122 94 101 42 76 94 80 33 61 94 +minecraft:brain_coral_wall_fan[facing=south,waterlogged=false] 202 84 153 94 161 67 122 94 101 42 76 94 80 33 61 94 +minecraft:brain_coral_wall_fan[facing=west,waterlogged=true] 202 84 153 94 161 67 122 94 101 42 76 94 80 33 61 94 +minecraft:brain_coral_wall_fan[facing=west,waterlogged=false] 202 84 153 94 161 67 122 94 101 42 76 94 80 33 61 94 +minecraft:brain_coral_wall_fan[facing=east,waterlogged=true] 202 84 153 94 161 67 122 94 101 42 76 94 80 33 61 94 +minecraft:brain_coral_wall_fan[facing=east,waterlogged=false] 202 84 153 94 161 67 122 94 101 42 76 94 80 33 61 94 +minecraft:bubble_coral_wall_fan 160 32 159 111 128 25 127 111 80 16 79 111 64 12 63 111 +minecraft:bubble_coral_wall_fan[facing=north,waterlogged=false] 160 32 159 111 128 25 127 111 80 16 79 111 64 12 63 111 +minecraft:bubble_coral_wall_fan[facing=south,waterlogged=true] 160 32 159 111 128 25 127 111 80 16 79 111 64 12 63 111 +minecraft:bubble_coral_wall_fan[facing=south,waterlogged=false] 160 32 159 111 128 25 127 111 80 16 79 111 64 12 63 111 +minecraft:bubble_coral_wall_fan[facing=west,waterlogged=true] 160 32 159 111 128 25 127 111 80 16 79 111 64 12 63 111 +minecraft:bubble_coral_wall_fan[facing=west,waterlogged=false] 160 32 159 111 128 25 127 111 80 16 79 111 64 12 63 111 +minecraft:bubble_coral_wall_fan[facing=east,waterlogged=true] 160 32 159 111 128 25 127 111 80 16 79 111 64 12 63 111 +minecraft:bubble_coral_wall_fan[facing=east,waterlogged=false] 160 32 159 111 128 25 127 111 80 16 79 111 64 12 63 111 +minecraft:fire_coral_wall_fan 158 34 45 104 126 27 36 104 79 17 22 104 63 13 18 104 +minecraft:fire_coral_wall_fan[facing=north,waterlogged=false] 158 34 45 104 126 27 36 104 79 17 22 104 63 13 18 104 +minecraft:fire_coral_wall_fan[facing=south,waterlogged=true] 158 34 45 104 126 27 36 104 79 17 22 104 63 13 18 104 +minecraft:fire_coral_wall_fan[facing=south,waterlogged=false] 158 34 45 104 126 27 36 104 79 17 22 104 63 13 18 104 +minecraft:fire_coral_wall_fan[facing=west,waterlogged=true] 158 34 45 104 126 27 36 104 79 17 22 104 63 13 18 104 +minecraft:fire_coral_wall_fan[facing=west,waterlogged=false] 158 34 45 104 126 27 36 104 79 17 22 104 63 13 18 104 +minecraft:fire_coral_wall_fan[facing=east,waterlogged=true] 158 34 45 104 126 27 36 104 79 17 22 104 63 13 18 104 +minecraft:fire_coral_wall_fan[facing=east,waterlogged=false] 158 34 45 104 126 27 36 104 79 17 22 104 63 13 18 104 +minecraft:horn_coral_wall_fan 205 183 61 93 164 146 48 93 102 91 30 93 82 73 24 93 +minecraft:horn_coral_wall_fan[facing=north,waterlogged=false] 205 183 61 93 164 146 48 93 102 91 30 93 82 73 24 93 +minecraft:horn_coral_wall_fan[facing=south,waterlogged=true] 205 183 61 93 164 146 48 93 102 91 30 93 82 73 24 93 +minecraft:horn_coral_wall_fan[facing=south,waterlogged=false] 205 183 61 93 164 146 48 93 102 91 30 93 82 73 24 93 +minecraft:horn_coral_wall_fan[facing=west,waterlogged=true] 205 183 61 93 164 146 48 93 102 91 30 93 82 73 24 93 +minecraft:horn_coral_wall_fan[facing=west,waterlogged=false] 205 183 61 93 164 146 48 93 102 91 30 93 82 73 24 93 +minecraft:horn_coral_wall_fan[facing=east,waterlogged=true] 205 183 61 93 164 146 48 93 102 91 30 93 82 73 24 93 +minecraft:horn_coral_wall_fan[facing=east,waterlogged=false] 205 183 61 93 164 146 48 93 102 91 30 93 82 73 24 93 +minecraft:sea_pickle 90 97 39 215 72 77 31 215 45 48 19 215 36 38 15 215 +minecraft:sea_pickle[pickles=1,waterlogged=false] 90 97 39 215 72 77 31 215 45 48 19 215 36 38 15 215 +minecraft:sea_pickle[pickles=2,waterlogged=true] 90 97 39 215 72 77 31 215 45 48 19 215 36 38 15 215 +minecraft:sea_pickle[pickles=2,waterlogged=false] 90 97 39 215 72 77 31 215 45 48 19 215 36 38 15 215 +minecraft:sea_pickle[pickles=3,waterlogged=true] 90 97 39 215 72 77 31 215 45 48 19 215 36 38 15 215 +minecraft:sea_pickle[pickles=3,waterlogged=false] 90 97 39 215 72 77 31 215 45 48 19 215 36 38 15 215 +minecraft:sea_pickle[pickles=4,waterlogged=true] 90 97 39 215 72 77 31 215 45 48 19 215 36 38 15 215 +minecraft:sea_pickle[pickles=4,waterlogged=false] 90 97 39 215 72 77 31 215 45 48 19 215 36 38 15 215 +minecraft:blue_ice 116 167 253 255 92 133 202 255 58 83 126 255 46 66 101 255 +minecraft:conduit 159 139 113 143 127 111 90 143 79 69 56 143 63 55 45 143 +minecraft:conduit[waterlogged=false] 159 139 113 143 127 111 90 143 79 69 56 143 63 55 45 143 +minecraft:bamboo_sapling 92 89 35 54 73 71 28 54 46 44 17 54 36 35 14 54 +minecraft:bamboo 93 144 19 255 74 115 15 255 46 72 9 255 37 57 7 255 +minecraft:bamboo[age=0,leaves=none,stage=1] 93 144 19 255 74 115 15 255 46 72 9 255 37 57 7 255 +minecraft:bamboo[age=0,leaves=small,stage=0] 93 144 19 255 74 115 15 255 46 72 9 255 37 57 7 255 +minecraft:bamboo[age=0,leaves=small,stage=1] 93 144 19 255 74 115 15 255 46 72 9 255 37 57 7 255 +minecraft:bamboo[age=0,leaves=large,stage=0] 93 144 19 255 74 115 15 255 46 72 9 255 37 57 7 255 +minecraft:bamboo[age=0,leaves=large,stage=1] 93 144 19 255 74 115 15 255 46 72 9 255 37 57 7 255 +minecraft:bamboo[age=1,leaves=none,stage=0] 93 144 19 255 74 115 15 255 46 72 9 255 37 57 7 255 +minecraft:bamboo[age=1,leaves=none,stage=1] 93 144 19 255 74 115 15 255 46 72 9 255 37 57 7 255 +minecraft:bamboo[age=1,leaves=small,stage=0] 93 144 19 255 74 115 15 255 46 72 9 255 37 57 7 255 +minecraft:bamboo[age=1,leaves=small,stage=1] 93 144 19 255 74 115 15 255 46 72 9 255 37 57 7 255 +minecraft:bamboo[age=1,leaves=large,stage=0] 93 144 19 255 74 115 15 255 46 72 9 255 37 57 7 255 +minecraft:bamboo[age=1,leaves=large,stage=1] 93 144 19 255 74 115 15 255 46 72 9 255 37 57 7 255 +minecraft:potted_bamboo 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:polished_granite_stairs 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=top,shape=straight,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=top,shape=straight,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=top,shape=straight,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=top,shape=straight,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=top,shape=straight,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=top,shape=straight,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=top,shape=straight,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:smooth_red_sandstone_stairs 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=straight,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:mossy_stone_brick_stairs 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:polished_diorite_stairs 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=top,shape=straight,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=top,shape=straight,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=top,shape=straight,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=top,shape=straight,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=top,shape=straight,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=top,shape=straight,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=top,shape=straight,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:mossy_cobblestone_stairs 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=straight,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=straight,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=straight,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=straight,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=straight,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=straight,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=straight,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:end_stone_brick_stairs 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:stone_stairs 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=top,shape=straight,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=top,shape=straight,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=top,shape=straight,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=top,shape=straight,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=top,shape=straight,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=top,shape=straight,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=top,shape=straight,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:smooth_sandstone_stairs 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=straight,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_quartz_stairs 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=top,shape=straight,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=top,shape=straight,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=top,shape=straight,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=top,shape=straight,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=top,shape=straight,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=top,shape=straight,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=top,shape=straight,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:granite_stairs 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=top,shape=straight,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=top,shape=straight,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=top,shape=straight,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=top,shape=straight,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=top,shape=straight,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=top,shape=straight,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=top,shape=straight,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:andesite_stairs 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=top,shape=straight,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=top,shape=straight,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=top,shape=straight,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=top,shape=straight,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=top,shape=straight,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=top,shape=straight,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=top,shape=straight,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:red_nether_brick_stairs 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:polished_andesite_stairs 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=top,shape=straight,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=top,shape=straight,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=top,shape=straight,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=top,shape=straight,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=top,shape=straight,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=top,shape=straight,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=top,shape=straight,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:diorite_stairs 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=top,shape=straight,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=top,shape=straight,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=top,shape=straight,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=top,shape=straight,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=top,shape=straight,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=top,shape=straight,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=top,shape=straight,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:polished_granite_slab 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_slab[type=top,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_slab[type=bottom,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_slab[type=bottom,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_slab[type=double,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_slab[type=double,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:smooth_red_sandstone_slab 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_slab[type=top,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_slab[type=bottom,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_slab[type=bottom,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_slab[type=double,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_slab[type=double,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:mossy_stone_brick_slab 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_slab[type=top,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_slab[type=bottom,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_slab[type=bottom,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_slab[type=double,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_slab[type=double,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:polished_diorite_slab 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_slab[type=top,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_slab[type=bottom,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_slab[type=bottom,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_slab[type=double,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_slab[type=double,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:mossy_cobblestone_slab 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_slab[type=top,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_slab[type=bottom,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_slab[type=bottom,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_slab[type=double,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_slab[type=double,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:end_stone_brick_slab 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_slab[type=top,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_slab[type=bottom,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_slab[type=bottom,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_slab[type=double,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_slab[type=double,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:smooth_sandstone_slab 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_slab[type=top,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_slab[type=bottom,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_slab[type=bottom,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_slab[type=double,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_slab[type=double,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_quartz_slab 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_slab[type=top,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_slab[type=bottom,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_slab[type=bottom,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_slab[type=double,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_slab[type=double,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:granite_slab 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_slab[type=top,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_slab[type=bottom,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_slab[type=bottom,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_slab[type=double,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_slab[type=double,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:andesite_slab 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_slab[type=top,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_slab[type=bottom,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_slab[type=bottom,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_slab[type=double,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_slab[type=double,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:red_nether_brick_slab 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_slab[type=top,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_slab[type=bottom,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_slab[type=bottom,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_slab[type=double,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_slab[type=double,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:polished_andesite_slab 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_slab[type=top,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_slab[type=bottom,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_slab[type=bottom,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_slab[type=double,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_slab[type=double,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:diorite_slab 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_slab[type=top,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_slab[type=bottom,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_slab[type=bottom,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_slab[type=double,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_slab[type=double,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:brick_wall 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:prismarine_wall 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:red_sandstone_wall 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:mossy_stone_brick_wall 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:granite_wall 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:stone_brick_wall 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:nether_brick_wall 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:andesite_wall 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:red_nether_brick_wall 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:sandstone_wall 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:end_stone_brick_wall 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:diorite_wall 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:scaffolding 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=true,distance=0,waterlogged=false] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=true,distance=1,waterlogged=true] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=true,distance=1,waterlogged=false] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=true,distance=2,waterlogged=true] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=true,distance=2,waterlogged=false] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=true,distance=3,waterlogged=true] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=true,distance=3,waterlogged=false] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=true,distance=4,waterlogged=true] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=true,distance=4,waterlogged=false] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=true,distance=5,waterlogged=true] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=true,distance=5,waterlogged=false] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=true,distance=6,waterlogged=true] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=true,distance=6,waterlogged=false] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=true,distance=7,waterlogged=true] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=true,distance=7,waterlogged=false] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=false,distance=0,waterlogged=true] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=false,distance=0,waterlogged=false] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=false,distance=1,waterlogged=true] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=false,distance=1,waterlogged=false] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=false,distance=2,waterlogged=true] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=false,distance=2,waterlogged=false] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=false,distance=3,waterlogged=true] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=false,distance=3,waterlogged=false] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=false,distance=4,waterlogged=true] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=false,distance=4,waterlogged=false] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=false,distance=5,waterlogged=true] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=false,distance=5,waterlogged=false] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=false,distance=6,waterlogged=true] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=false,distance=6,waterlogged=false] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=false,distance=7,waterlogged=true] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=false,distance=7,waterlogged=false] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:loom 76 60 36 255 60 48 28 255 38 30 18 255 30 24 14 255 +minecraft:loom[facing=south] 76 60 36 255 60 48 28 255 38 30 18 255 30 24 14 255 +minecraft:loom[facing=west] 76 60 36 255 60 48 28 255 38 30 18 255 30 24 14 255 +minecraft:loom[facing=east] 76 60 36 255 60 48 28 255 38 30 18 255 30 24 14 255 +minecraft:barrel 121 89 51 255 96 71 40 255 60 44 25 255 48 35 20 255 +minecraft:barrel[facing=north,open=false] 121 89 51 255 96 71 40 255 60 44 25 255 48 35 20 255 +minecraft:barrel[facing=east,open=true] 121 89 51 255 96 71 40 255 60 44 25 255 48 35 20 255 +minecraft:barrel[facing=east,open=false] 121 89 51 255 96 71 40 255 60 44 25 255 48 35 20 255 +minecraft:barrel[facing=south,open=true] 121 89 51 255 96 71 40 255 60 44 25 255 48 35 20 255 +minecraft:barrel[facing=south,open=false] 121 89 51 255 96 71 40 255 60 44 25 255 48 35 20 255 +minecraft:barrel[facing=west,open=true] 121 89 51 255 96 71 40 255 60 44 25 255 48 35 20 255 +minecraft:barrel[facing=west,open=false] 121 89 51 255 96 71 40 255 60 44 25 255 48 35 20 255 +minecraft:barrel[facing=up,open=true] 121 89 51 255 96 71 40 255 60 44 25 255 48 35 20 255 +minecraft:barrel[facing=up,open=false] 121 89 51 255 96 71 40 255 60 44 25 255 48 35 20 255 +minecraft:barrel[facing=down,open=true] 121 89 51 255 96 71 40 255 60 44 25 255 48 35 20 255 +minecraft:barrel[facing=down,open=false] 121 89 51 255 96 71 40 255 60 44 25 255 48 35 20 255 +minecraft:smoker 107 105 103 255 85 84 82 255 53 52 51 255 42 42 41 255 +minecraft:smoker[facing=north,lit=false] 107 105 103 255 85 84 82 255 53 52 51 255 42 42 41 255 +minecraft:smoker[facing=south,lit=true] 107 105 103 255 85 84 82 255 53 52 51 255 42 42 41 255 +minecraft:smoker[facing=south,lit=false] 107 105 103 255 85 84 82 255 53 52 51 255 42 42 41 255 +minecraft:smoker[facing=west,lit=true] 107 105 103 255 85 84 82 255 53 52 51 255 42 42 41 255 +minecraft:smoker[facing=west,lit=false] 107 105 103 255 85 84 82 255 53 52 51 255 42 42 41 255 +minecraft:smoker[facing=east,lit=true] 107 105 103 255 85 84 82 255 53 52 51 255 42 42 41 255 +minecraft:smoker[facing=east,lit=false] 107 105 103 255 85 84 82 255 53 52 51 255 42 42 41 255 +minecraft:blast_furnace 80 80 81 255 64 64 64 255 40 40 40 255 32 32 32 255 +minecraft:blast_furnace[facing=north,lit=false] 80 80 81 255 64 64 64 255 40 40 40 255 32 32 32 255 +minecraft:blast_furnace[facing=south,lit=true] 80 80 81 255 64 64 64 255 40 40 40 255 32 32 32 255 +minecraft:blast_furnace[facing=south,lit=false] 80 80 81 255 64 64 64 255 40 40 40 255 32 32 32 255 +minecraft:blast_furnace[facing=west,lit=true] 80 80 81 255 64 64 64 255 40 40 40 255 32 32 32 255 +minecraft:blast_furnace[facing=west,lit=false] 80 80 81 255 64 64 64 255 40 40 40 255 32 32 32 255 +minecraft:blast_furnace[facing=east,lit=true] 80 80 81 255 64 64 64 255 40 40 40 255 32 32 32 255 +minecraft:blast_furnace[facing=east,lit=false] 80 80 81 255 64 64 64 255 40 40 40 255 32 32 32 255 +minecraft:cartography_table 104 87 67 255 83 69 53 255 52 43 33 255 41 34 26 255 +minecraft:fletching_table 197 180 133 255 157 144 106 255 98 90 66 255 78 72 53 255 +minecraft:grindstone 60 46 26 255 48 36 20 255 30 23 13 255 24 18 10 255 +minecraft:grindstone[face=floor,facing=south] 60 46 26 255 48 36 20 255 30 23 13 255 24 18 10 255 +minecraft:grindstone[face=floor,facing=west] 60 46 26 255 48 36 20 255 30 23 13 255 24 18 10 255 +minecraft:grindstone[face=floor,facing=east] 60 46 26 255 48 36 20 255 30 23 13 255 24 18 10 255 +minecraft:grindstone[face=wall,facing=north] 60 46 26 255 48 36 20 255 30 23 13 255 24 18 10 255 +minecraft:grindstone[face=wall,facing=south] 60 46 26 255 48 36 20 255 30 23 13 255 24 18 10 255 +minecraft:grindstone[face=wall,facing=west] 60 46 26 255 48 36 20 255 30 23 13 255 24 18 10 255 +minecraft:grindstone[face=wall,facing=east] 60 46 26 255 48 36 20 255 30 23 13 255 24 18 10 255 +minecraft:grindstone[face=ceiling,facing=north] 60 46 26 255 48 36 20 255 30 23 13 255 24 18 10 255 +minecraft:grindstone[face=ceiling,facing=south] 60 46 26 255 48 36 20 255 30 23 13 255 24 18 10 255 +minecraft:grindstone[face=ceiling,facing=west] 60 46 26 255 48 36 20 255 30 23 13 255 24 18 10 255 +minecraft:grindstone[face=ceiling,facing=east] 60 46 26 255 48 36 20 255 30 23 13 255 24 18 10 255 +minecraft:lectern 173 137 83 255 138 109 66 255 86 68 41 255 69 54 33 255 +minecraft:lectern[facing=north,has_book=true,powered=false] 173 137 83 255 138 109 66 255 86 68 41 255 69 54 33 255 +minecraft:lectern[facing=north,has_book=false,powered=true] 173 137 83 255 138 109 66 255 86 68 41 255 69 54 33 255 +minecraft:lectern[facing=north,has_book=false,powered=false] 173 137 83 255 138 109 66 255 86 68 41 255 69 54 33 255 +minecraft:lectern[facing=south,has_book=true,powered=true] 173 137 83 255 138 109 66 255 86 68 41 255 69 54 33 255 +minecraft:lectern[facing=south,has_book=true,powered=false] 173 137 83 255 138 109 66 255 86 68 41 255 69 54 33 255 +minecraft:lectern[facing=south,has_book=false,powered=true] 173 137 83 255 138 109 66 255 86 68 41 255 69 54 33 255 +minecraft:lectern[facing=south,has_book=false,powered=false] 173 137 83 255 138 109 66 255 86 68 41 255 69 54 33 255 +minecraft:lectern[facing=west,has_book=true,powered=true] 173 137 83 255 138 109 66 255 86 68 41 255 69 54 33 255 +minecraft:lectern[facing=west,has_book=true,powered=false] 173 137 83 255 138 109 66 255 86 68 41 255 69 54 33 255 +minecraft:lectern[facing=west,has_book=false,powered=true] 173 137 83 255 138 109 66 255 86 68 41 255 69 54 33 255 +minecraft:lectern[facing=west,has_book=false,powered=false] 173 137 83 255 138 109 66 255 86 68 41 255 69 54 33 255 +minecraft:lectern[facing=east,has_book=true,powered=true] 173 137 83 255 138 109 66 255 86 68 41 255 69 54 33 255 +minecraft:lectern[facing=east,has_book=true,powered=false] 173 137 83 255 138 109 66 255 86 68 41 255 69 54 33 255 +minecraft:lectern[facing=east,has_book=false,powered=true] 173 137 83 255 138 109 66 255 86 68 41 255 69 54 33 255 +minecraft:lectern[facing=east,has_book=false,powered=false] 173 137 83 255 138 109 66 255 86 68 41 255 69 54 33 255 +minecraft:smithing_table 57 58 70 255 45 46 56 255 28 29 35 255 22 23 28 255 +minecraft:stonecutter 118 117 118 255 94 93 94 255 59 58 59 255 47 46 47 255 +minecraft:stonecutter[facing=south] 118 117 118 255 94 93 94 255 59 58 59 255 47 46 47 255 +minecraft:stonecutter[facing=west] 118 117 118 255 94 93 94 255 59 58 59 255 47 46 47 255 +minecraft:stonecutter[facing=east] 118 117 118 255 94 93 94 255 59 58 59 255 47 46 47 255 +minecraft:bell 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=floor,facing=north,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=floor,facing=south,powered=true] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=floor,facing=south,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=floor,facing=west,powered=true] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=floor,facing=west,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=floor,facing=east,powered=true] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=floor,facing=east,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=ceiling,facing=north,powered=true] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=ceiling,facing=north,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=ceiling,facing=south,powered=true] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=ceiling,facing=south,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=ceiling,facing=west,powered=true] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=ceiling,facing=west,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=ceiling,facing=east,powered=true] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=ceiling,facing=east,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=single_wall,facing=north,powered=true] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=single_wall,facing=north,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=single_wall,facing=south,powered=true] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=single_wall,facing=south,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=single_wall,facing=west,powered=true] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=single_wall,facing=west,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=single_wall,facing=east,powered=true] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=single_wall,facing=east,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=double_wall,facing=north,powered=true] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=double_wall,facing=north,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=double_wall,facing=south,powered=true] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=double_wall,facing=south,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=double_wall,facing=west,powered=true] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=double_wall,facing=west,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=double_wall,facing=east,powered=true] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=double_wall,facing=east,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:lantern 56 62 79 6 44 49 63 6 28 31 39 6 22 24 31 6 +minecraft:lantern[hanging=true,waterlogged=false] 56 62 79 6 44 49 63 6 28 31 39 6 22 24 31 6 +minecraft:lantern[hanging=false,waterlogged=true] 56 62 79 6 44 49 63 6 28 31 39 6 22 24 31 6 +minecraft:lantern[hanging=false,waterlogged=false] 56 62 79 6 44 49 63 6 28 31 39 6 22 24 31 6 +minecraft:soul_lantern 56 62 79 6 44 49 63 6 28 31 39 6 22 24 31 6 +minecraft:soul_lantern[hanging=true,waterlogged=false] 56 62 79 6 44 49 63 6 28 31 39 6 22 24 31 6 +minecraft:soul_lantern[hanging=false,waterlogged=true] 56 62 79 6 44 49 63 6 28 31 39 6 22 24 31 6 +minecraft:soul_lantern[hanging=false,waterlogged=false] 56 62 79 6 44 49 63 6 28 31 39 6 22 24 31 6 +minecraft:campfire 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=north,lit=true,signal_fire=true,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=north,lit=true,signal_fire=false,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=north,lit=true,signal_fire=false,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=north,lit=false,signal_fire=true,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=north,lit=false,signal_fire=true,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=north,lit=false,signal_fire=false,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=north,lit=false,signal_fire=false,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=south,lit=true,signal_fire=true,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=south,lit=true,signal_fire=true,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=south,lit=true,signal_fire=false,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=south,lit=true,signal_fire=false,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=south,lit=false,signal_fire=true,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=south,lit=false,signal_fire=true,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=south,lit=false,signal_fire=false,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=south,lit=false,signal_fire=false,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=west,lit=true,signal_fire=true,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=west,lit=true,signal_fire=true,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=west,lit=true,signal_fire=false,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=west,lit=true,signal_fire=false,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=west,lit=false,signal_fire=true,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=west,lit=false,signal_fire=true,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=west,lit=false,signal_fire=false,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=west,lit=false,signal_fire=false,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=east,lit=true,signal_fire=true,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=east,lit=true,signal_fire=true,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=east,lit=true,signal_fire=false,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=east,lit=true,signal_fire=false,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=east,lit=false,signal_fire=true,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=east,lit=false,signal_fire=true,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=east,lit=false,signal_fire=false,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=east,lit=false,signal_fire=false,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=north,lit=true,signal_fire=true,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=north,lit=true,signal_fire=false,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=north,lit=true,signal_fire=false,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=north,lit=false,signal_fire=true,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=north,lit=false,signal_fire=true,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=north,lit=false,signal_fire=false,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=north,lit=false,signal_fire=false,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=south,lit=true,signal_fire=true,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=south,lit=true,signal_fire=true,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=south,lit=true,signal_fire=false,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=south,lit=true,signal_fire=false,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=south,lit=false,signal_fire=true,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=south,lit=false,signal_fire=true,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=south,lit=false,signal_fire=false,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=south,lit=false,signal_fire=false,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=west,lit=true,signal_fire=true,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=west,lit=true,signal_fire=true,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=west,lit=true,signal_fire=false,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=west,lit=true,signal_fire=false,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=west,lit=false,signal_fire=true,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=west,lit=false,signal_fire=true,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=west,lit=false,signal_fire=false,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=west,lit=false,signal_fire=false,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=east,lit=true,signal_fire=true,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=east,lit=true,signal_fire=true,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=east,lit=true,signal_fire=false,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=east,lit=true,signal_fire=false,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=east,lit=false,signal_fire=true,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=east,lit=false,signal_fire=true,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=east,lit=false,signal_fire=false,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=east,lit=false,signal_fire=false,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:sweet_berry_bush 42 89 56 52 33 71 44 52 21 44 28 52 16 35 22 52 +minecraft:sweet_berry_bush[age=1] 47 94 57 138 37 75 45 138 23 47 28 138 18 37 22 138 +minecraft:sweet_berry_bush[age=2] 59 88 56 144 47 70 44 144 29 44 28 144 23 35 22 144 +minecraft:sweet_berry_bush[age=3] 68 77 50 161 54 61 40 161 34 38 25 161 27 30 20 161 +minecraft:warped_stem 57 59 77 255 45 47 61 255 28 29 38 255 22 23 30 255 +minecraft:warped_stem[axis=y] 57 103 103 255 45 82 82 255 28 51 51 255 22 41 41 255 +minecraft:warped_stem[axis=z] 57 59 77 255 45 47 61 255 28 29 38 255 22 23 30 255 +minecraft:stripped_warped_stem 57 150 147 255 45 120 117 255 28 75 73 255 22 60 58 255 +minecraft:stripped_warped_stem[axis=y] 52 128 124 255 41 102 99 255 26 64 62 255 20 51 49 255 +minecraft:stripped_warped_stem[axis=z] 57 150 147 255 45 120 117 255 28 75 73 255 22 60 58 255 +minecraft:warped_hyphae 57 59 77 255 45 47 61 255 28 29 38 255 22 23 30 255 +minecraft:warped_hyphae[axis=y] 57 59 77 255 45 47 61 255 28 29 38 255 22 23 30 255 +minecraft:warped_hyphae[axis=z] 57 59 77 255 45 47 61 255 28 29 38 255 22 23 30 255 +minecraft:stripped_warped_hyphae 57 150 147 255 45 120 117 255 28 75 73 255 22 60 58 255 +minecraft:stripped_warped_hyphae[axis=y] 57 150 147 255 45 120 117 255 28 75 73 255 22 60 58 255 +minecraft:stripped_warped_hyphae[axis=z] 57 150 147 255 45 120 117 255 28 75 73 255 22 60 58 255 +minecraft:warped_nylium 43 114 101 255 34 91 80 255 21 57 50 255 17 45 40 255 +minecraft:warped_fungus 74 109 87 49 59 87 69 49 37 54 43 49 29 43 34 49 +minecraft:warped_wart_block 22 119 121 255 17 95 96 255 11 59 60 255 8 47 48 255 +minecraft:warped_roots 20 138 124 91 16 110 99 91 10 69 62 91 8 55 49 91 +minecraft:nether_sprouts 19 151 133 30 15 120 106 30 9 75 66 30 7 60 53 30 +minecraft:crimson_stem 93 26 30 255 74 20 24 255 46 13 15 255 37 10 12 255 +minecraft:crimson_stem[axis=y] 107 51 74 255 85 40 59 255 53 25 37 255 42 20 29 255 +minecraft:crimson_stem[axis=z] 93 26 30 255 74 20 24 255 46 13 15 255 37 10 12 255 +minecraft:stripped_crimson_stem 137 57 90 255 109 45 72 255 68 28 45 255 54 22 36 255 +minecraft:stripped_crimson_stem[axis=y] 121 56 82 255 96 44 65 255 60 28 41 255 48 22 32 255 +minecraft:stripped_crimson_stem[axis=z] 137 57 90 255 109 45 72 255 68 28 45 255 54 22 36 255 +minecraft:crimson_hyphae 93 26 30 255 74 20 24 255 46 13 15 255 37 10 12 255 +minecraft:crimson_hyphae[axis=y] 93 26 30 255 74 20 24 255 46 13 15 255 37 10 12 255 +minecraft:crimson_hyphae[axis=z] 93 26 30 255 74 20 24 255 46 13 15 255 37 10 12 255 +minecraft:stripped_crimson_hyphae 137 57 90 255 109 45 72 255 68 28 45 255 54 22 36 255 +minecraft:stripped_crimson_hyphae[axis=y] 137 57 90 255 109 45 72 255 68 28 45 255 54 22 36 255 +minecraft:stripped_crimson_hyphae[axis=z] 137 57 90 255 109 45 72 255 68 28 45 255 54 22 36 255 +minecraft:crimson_nylium 130 31 31 255 104 24 24 255 65 15 15 255 52 12 12 255 +minecraft:crimson_fungus 141 44 29 59 112 35 23 59 70 22 14 59 56 17 11 59 +minecraft:shroomlight 240 146 70 255 192 116 56 255 120 73 35 255 96 58 28 255 +minecraft:weeping_vines 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=1] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=2] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=3] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=4] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=5] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=6] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=7] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=8] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=9] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=10] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=11] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=12] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=13] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=14] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=15] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=16] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=17] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=18] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=19] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=20] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=21] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=22] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=23] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=24] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=25] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines_plant 132 16 12 114 105 12 9 114 66 8 6 114 52 6 4 114 +minecraft:twisting_vines 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=1] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=2] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=3] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=4] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=5] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=6] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=7] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=8] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=9] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=10] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=11] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=12] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=13] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=14] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=15] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=16] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=17] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=18] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=19] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=20] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=21] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=22] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=23] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=24] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=25] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines_plant 20 135 122 89 16 108 97 89 10 67 61 89 8 54 48 89 +minecraft:crimson_roots 126 8 41 90 100 6 32 90 63 4 20 90 50 3 16 90 +minecraft:crimson_planks 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:warped_planks 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:crimson_slab 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_slab[type=top,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_slab[type=bottom,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_slab[type=bottom,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_slab[type=double,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_slab[type=double,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:warped_slab 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_slab[type=top,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_slab[type=bottom,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_slab[type=bottom,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_slab[type=double,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_slab[type=double,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:crimson_pressure_plate 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_pressure_plate[powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:warped_pressure_plate 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_pressure_plate[powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:crimson_fence 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=true,north=true,south=true,waterlogged=true,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=true,north=true,south=true,waterlogged=false,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=true,north=true,south=true,waterlogged=false,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=true,north=true,south=false,waterlogged=true,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=true,north=true,south=false,waterlogged=true,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=true,north=true,south=false,waterlogged=false,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=true,north=true,south=false,waterlogged=false,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=true,north=false,south=true,waterlogged=true,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=true,north=false,south=true,waterlogged=true,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=true,north=false,south=true,waterlogged=false,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=true,north=false,south=true,waterlogged=false,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=true,north=false,south=false,waterlogged=true,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=true,north=false,south=false,waterlogged=true,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=true,north=false,south=false,waterlogged=false,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=true,north=false,south=false,waterlogged=false,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=false,north=true,south=true,waterlogged=true,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=false,north=true,south=true,waterlogged=true,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=false,north=true,south=true,waterlogged=false,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=false,north=true,south=true,waterlogged=false,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=false,north=true,south=false,waterlogged=true,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=false,north=true,south=false,waterlogged=true,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=false,north=true,south=false,waterlogged=false,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=false,north=true,south=false,waterlogged=false,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=false,north=false,south=true,waterlogged=true,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=false,north=false,south=true,waterlogged=true,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=false,north=false,south=true,waterlogged=false,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=false,north=false,south=true,waterlogged=false,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=false,north=false,south=false,waterlogged=true,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=false,north=false,south=false,waterlogged=true,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=false,north=false,south=false,waterlogged=false,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=false,north=false,south=false,waterlogged=false,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:warped_fence 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=true,north=true,south=true,waterlogged=true,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=true,north=true,south=true,waterlogged=false,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=true,north=true,south=true,waterlogged=false,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=true,north=true,south=false,waterlogged=true,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=true,north=true,south=false,waterlogged=true,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=true,north=true,south=false,waterlogged=false,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=true,north=true,south=false,waterlogged=false,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=true,north=false,south=true,waterlogged=true,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=true,north=false,south=true,waterlogged=true,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=true,north=false,south=true,waterlogged=false,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=true,north=false,south=true,waterlogged=false,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=true,north=false,south=false,waterlogged=true,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=true,north=false,south=false,waterlogged=true,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=true,north=false,south=false,waterlogged=false,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=true,north=false,south=false,waterlogged=false,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=false,north=true,south=true,waterlogged=true,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=false,north=true,south=true,waterlogged=true,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=false,north=true,south=true,waterlogged=false,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=false,north=true,south=true,waterlogged=false,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=false,north=true,south=false,waterlogged=true,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=false,north=true,south=false,waterlogged=true,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=false,north=true,south=false,waterlogged=false,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=false,north=true,south=false,waterlogged=false,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=false,north=false,south=true,waterlogged=true,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=false,north=false,south=true,waterlogged=true,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=false,north=false,south=true,waterlogged=false,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=false,north=false,south=true,waterlogged=false,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=false,north=false,south=false,waterlogged=true,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=false,north=false,south=false,waterlogged=true,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=false,north=false,south=false,waterlogged=false,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=false,north=false,south=false,waterlogged=false,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:crimson_trapdoor 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:warped_trapdoor 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:crimson_fence_gate 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=north,in_wall=true,open=true,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=north,in_wall=true,open=false,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=north,in_wall=true,open=false,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=north,in_wall=false,open=true,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=north,in_wall=false,open=true,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=north,in_wall=false,open=false,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=north,in_wall=false,open=false,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=south,in_wall=true,open=true,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=south,in_wall=true,open=true,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=south,in_wall=true,open=false,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=south,in_wall=true,open=false,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=south,in_wall=false,open=true,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=south,in_wall=false,open=true,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=south,in_wall=false,open=false,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=south,in_wall=false,open=false,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=west,in_wall=true,open=true,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=west,in_wall=true,open=true,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=west,in_wall=true,open=false,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=west,in_wall=true,open=false,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=west,in_wall=false,open=true,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=west,in_wall=false,open=true,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=west,in_wall=false,open=false,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=west,in_wall=false,open=false,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=east,in_wall=true,open=true,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=east,in_wall=true,open=true,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=east,in_wall=true,open=false,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=east,in_wall=true,open=false,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=east,in_wall=false,open=true,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=east,in_wall=false,open=true,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=east,in_wall=false,open=false,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=east,in_wall=false,open=false,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:warped_fence_gate 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=north,in_wall=true,open=true,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=north,in_wall=true,open=false,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=north,in_wall=true,open=false,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=north,in_wall=false,open=true,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=north,in_wall=false,open=true,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=north,in_wall=false,open=false,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=north,in_wall=false,open=false,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=south,in_wall=true,open=true,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=south,in_wall=true,open=true,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=south,in_wall=true,open=false,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=south,in_wall=true,open=false,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=south,in_wall=false,open=true,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=south,in_wall=false,open=true,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=south,in_wall=false,open=false,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=south,in_wall=false,open=false,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=west,in_wall=true,open=true,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=west,in_wall=true,open=true,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=west,in_wall=true,open=false,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=west,in_wall=true,open=false,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=west,in_wall=false,open=true,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=west,in_wall=false,open=true,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=west,in_wall=false,open=false,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=west,in_wall=false,open=false,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=east,in_wall=true,open=true,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=east,in_wall=true,open=true,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=east,in_wall=true,open=false,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=east,in_wall=true,open=false,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=east,in_wall=false,open=true,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=east,in_wall=false,open=true,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=east,in_wall=false,open=false,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=east,in_wall=false,open=false,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:crimson_stairs 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=top,shape=straight,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=top,shape=straight,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=top,shape=straight,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=top,shape=straight,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=top,shape=straight,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=top,shape=straight,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=top,shape=straight,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:warped_stairs 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=top,shape=straight,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=top,shape=straight,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=top,shape=straight,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=top,shape=straight,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=top,shape=straight,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=top,shape=straight,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=top,shape=straight,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:crimson_button 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=floor,facing=north,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=floor,facing=south,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=floor,facing=south,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=floor,facing=west,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=floor,facing=west,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=floor,facing=east,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=floor,facing=east,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=wall,facing=north,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=wall,facing=north,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=wall,facing=south,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=wall,facing=south,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=wall,facing=west,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=wall,facing=west,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=wall,facing=east,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=wall,facing=east,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=ceiling,facing=north,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=ceiling,facing=north,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=ceiling,facing=south,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=ceiling,facing=south,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=ceiling,facing=west,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=ceiling,facing=west,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=ceiling,facing=east,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=ceiling,facing=east,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:warped_button 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=floor,facing=north,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=floor,facing=south,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=floor,facing=south,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=floor,facing=west,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=floor,facing=west,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=floor,facing=east,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=floor,facing=east,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=wall,facing=north,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=wall,facing=north,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=wall,facing=south,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=wall,facing=south,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=wall,facing=west,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=wall,facing=west,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=wall,facing=east,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=wall,facing=east,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=ceiling,facing=north,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=ceiling,facing=north,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=ceiling,facing=south,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=ceiling,facing=south,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=ceiling,facing=west,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=ceiling,facing=west,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=ceiling,facing=east,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=ceiling,facing=east,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:crimson_door 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=north,half=upper,hinge=left,open=true,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=north,half=upper,hinge=left,open=false,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=north,half=upper,hinge=left,open=false,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=north,half=upper,hinge=right,open=true,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=north,half=upper,hinge=right,open=true,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=north,half=upper,hinge=right,open=false,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=north,half=upper,hinge=right,open=false,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=north,half=lower,hinge=left,open=true,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=north,half=lower,hinge=left,open=true,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=north,half=lower,hinge=left,open=false,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=north,half=lower,hinge=left,open=false,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=north,half=lower,hinge=right,open=true,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=north,half=lower,hinge=right,open=true,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=north,half=lower,hinge=right,open=false,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=north,half=lower,hinge=right,open=false,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=south,half=upper,hinge=left,open=true,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=south,half=upper,hinge=left,open=true,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=south,half=upper,hinge=left,open=false,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=south,half=upper,hinge=left,open=false,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=south,half=upper,hinge=right,open=true,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=south,half=upper,hinge=right,open=true,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=south,half=upper,hinge=right,open=false,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=south,half=upper,hinge=right,open=false,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=south,half=lower,hinge=left,open=true,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=south,half=lower,hinge=left,open=true,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=south,half=lower,hinge=left,open=false,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=south,half=lower,hinge=left,open=false,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=south,half=lower,hinge=right,open=true,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=south,half=lower,hinge=right,open=true,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=south,half=lower,hinge=right,open=false,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=south,half=lower,hinge=right,open=false,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=west,half=upper,hinge=left,open=true,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=west,half=upper,hinge=left,open=true,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=west,half=upper,hinge=left,open=false,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=west,half=upper,hinge=left,open=false,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=west,half=upper,hinge=right,open=true,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=west,half=upper,hinge=right,open=true,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=west,half=upper,hinge=right,open=false,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=west,half=upper,hinge=right,open=false,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=west,half=lower,hinge=left,open=true,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=west,half=lower,hinge=left,open=true,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=west,half=lower,hinge=left,open=false,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=west,half=lower,hinge=left,open=false,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=west,half=lower,hinge=right,open=true,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=west,half=lower,hinge=right,open=true,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=west,half=lower,hinge=right,open=false,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=west,half=lower,hinge=right,open=false,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=east,half=upper,hinge=left,open=true,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=east,half=upper,hinge=left,open=true,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=east,half=upper,hinge=left,open=false,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=east,half=upper,hinge=left,open=false,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=east,half=upper,hinge=right,open=true,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=east,half=upper,hinge=right,open=true,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=east,half=upper,hinge=right,open=false,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=east,half=upper,hinge=right,open=false,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=east,half=lower,hinge=left,open=true,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=east,half=lower,hinge=left,open=true,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=east,half=lower,hinge=left,open=false,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=east,half=lower,hinge=left,open=false,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=east,half=lower,hinge=right,open=true,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=east,half=lower,hinge=right,open=true,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=east,half=lower,hinge=right,open=false,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=east,half=lower,hinge=right,open=false,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:warped_door 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=north,half=upper,hinge=left,open=true,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=north,half=upper,hinge=left,open=false,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=north,half=upper,hinge=left,open=false,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=north,half=upper,hinge=right,open=true,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=north,half=upper,hinge=right,open=true,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=north,half=upper,hinge=right,open=false,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=north,half=upper,hinge=right,open=false,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=north,half=lower,hinge=left,open=true,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=north,half=lower,hinge=left,open=true,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=north,half=lower,hinge=left,open=false,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=north,half=lower,hinge=left,open=false,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=north,half=lower,hinge=right,open=true,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=north,half=lower,hinge=right,open=true,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=north,half=lower,hinge=right,open=false,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=north,half=lower,hinge=right,open=false,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=south,half=upper,hinge=left,open=true,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=south,half=upper,hinge=left,open=true,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=south,half=upper,hinge=left,open=false,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=south,half=upper,hinge=left,open=false,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=south,half=upper,hinge=right,open=true,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=south,half=upper,hinge=right,open=true,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=south,half=upper,hinge=right,open=false,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=south,half=upper,hinge=right,open=false,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=south,half=lower,hinge=left,open=true,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=south,half=lower,hinge=left,open=true,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=south,half=lower,hinge=left,open=false,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=south,half=lower,hinge=left,open=false,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=south,half=lower,hinge=right,open=true,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=south,half=lower,hinge=right,open=true,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=south,half=lower,hinge=right,open=false,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=south,half=lower,hinge=right,open=false,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=west,half=upper,hinge=left,open=true,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=west,half=upper,hinge=left,open=true,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=west,half=upper,hinge=left,open=false,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=west,half=upper,hinge=left,open=false,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=west,half=upper,hinge=right,open=true,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=west,half=upper,hinge=right,open=true,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=west,half=upper,hinge=right,open=false,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=west,half=upper,hinge=right,open=false,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=west,half=lower,hinge=left,open=true,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=west,half=lower,hinge=left,open=true,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=west,half=lower,hinge=left,open=false,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=west,half=lower,hinge=left,open=false,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=west,half=lower,hinge=right,open=true,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=west,half=lower,hinge=right,open=true,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=west,half=lower,hinge=right,open=false,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=west,half=lower,hinge=right,open=false,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=east,half=upper,hinge=left,open=true,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=east,half=upper,hinge=left,open=true,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=east,half=upper,hinge=left,open=false,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=east,half=upper,hinge=left,open=false,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=east,half=upper,hinge=right,open=true,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=east,half=upper,hinge=right,open=true,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=east,half=upper,hinge=right,open=false,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=east,half=upper,hinge=right,open=false,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=east,half=lower,hinge=left,open=true,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=east,half=lower,hinge=left,open=true,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=east,half=lower,hinge=left,open=false,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=east,half=lower,hinge=left,open=false,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=east,half=lower,hinge=right,open=true,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=east,half=lower,hinge=right,open=true,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=east,half=lower,hinge=right,open=false,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=east,half=lower,hinge=right,open=false,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:crimson_sign 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=0,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=1,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=1,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=2,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=2,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=3,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=3,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=4,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=4,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=5,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=5,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=6,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=6,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=7,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=7,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=8,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=8,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=9,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=9,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=10,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=10,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=11,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=11,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=12,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=12,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=13,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=13,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=14,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=14,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=15,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=15,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:warped_sign 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=0,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=1,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=1,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=2,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=2,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=3,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=3,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=4,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=4,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=5,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=5,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=6,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=6,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=7,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=7,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=8,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=8,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=9,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=9,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=10,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=10,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=11,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=11,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=12,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=12,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=13,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=13,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=14,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=14,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=15,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=15,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:crimson_wall_sign 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_wall_sign[facing=north,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_wall_sign[facing=south,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_wall_sign[facing=south,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_wall_sign[facing=west,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_wall_sign[facing=west,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_wall_sign[facing=east,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_wall_sign[facing=east,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:warped_wall_sign 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_wall_sign[facing=north,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_wall_sign[facing=south,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_wall_sign[facing=south,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_wall_sign[facing=west,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_wall_sign[facing=west,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_wall_sign[facing=east,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_wall_sign[facing=east,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:structure_block 86 71 87 255 68 56 69 255 43 35 43 255 34 28 34 255 +minecraft:structure_block[mode=load] 69 57 70 255 55 45 56 255 34 28 35 255 27 22 28 255 +minecraft:structure_block[mode=corner] 68 57 69 255 54 45 55 255 34 28 34 255 27 22 27 255 +minecraft:structure_block[mode=data] 79 65 80 255 63 52 64 255 39 32 40 255 31 26 32 255 +minecraft:jigsaw 34 27 37 255 27 21 29 255 17 13 18 255 13 10 14 255 +minecraft:jigsaw[orientation=down_north] 34 27 37 255 27 21 29 255 17 13 18 255 13 10 14 255 +minecraft:jigsaw[orientation=down_south] 34 27 37 255 27 21 29 255 17 13 18 255 13 10 14 255 +minecraft:jigsaw[orientation=down_west] 34 27 37 255 27 21 29 255 17 13 18 255 13 10 14 255 +minecraft:jigsaw[orientation=up_east] 34 27 37 255 27 21 29 255 17 13 18 255 13 10 14 255 +minecraft:jigsaw[orientation=up_north] 34 27 37 255 27 21 29 255 17 13 18 255 13 10 14 255 +minecraft:jigsaw[orientation=up_south] 34 27 37 255 27 21 29 255 17 13 18 255 13 10 14 255 +minecraft:jigsaw[orientation=up_west] 34 27 37 255 27 21 29 255 17 13 18 255 13 10 14 255 +minecraft:jigsaw[orientation=west_up] 34 27 37 255 27 21 29 255 17 13 18 255 13 10 14 255 +minecraft:jigsaw[orientation=east_up] 34 27 37 255 27 21 29 255 17 13 18 255 13 10 14 255 +minecraft:jigsaw[orientation=north_up] 34 27 37 255 27 21 29 255 17 13 18 255 13 10 14 255 +minecraft:jigsaw[orientation=south_up] 34 27 37 255 27 21 29 255 17 13 18 255 13 10 14 255 +minecraft:composter 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143 +minecraft:composter[level=1] 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143 +minecraft:composter[level=2] 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143 +minecraft:composter[level=3] 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143 +minecraft:composter[level=4] 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143 +minecraft:composter[level=5] 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143 +minecraft:composter[level=6] 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143 +minecraft:composter[level=7] 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143 +minecraft:composter[level=8] 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143 +minecraft:target 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 +minecraft:target[power=1] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 +minecraft:target[power=2] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 +minecraft:target[power=3] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 +minecraft:target[power=4] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 +minecraft:target[power=5] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 +minecraft:target[power=6] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 +minecraft:target[power=7] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 +minecraft:target[power=8] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 +minecraft:target[power=9] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 +minecraft:target[power=10] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 +minecraft:target[power=11] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 +minecraft:target[power=12] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 +minecraft:target[power=13] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 +minecraft:target[power=14] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 +minecraft:target[power=15] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 +minecraft:bee_nest 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=north,honey_level=1] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=north,honey_level=2] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=north,honey_level=3] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=north,honey_level=4] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=north,honey_level=5] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=south,honey_level=0] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=south,honey_level=1] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=south,honey_level=2] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=south,honey_level=3] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=south,honey_level=4] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=south,honey_level=5] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=west,honey_level=0] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=west,honey_level=1] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=west,honey_level=2] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=west,honey_level=3] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=west,honey_level=4] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=west,honey_level=5] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=east,honey_level=0] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=east,honey_level=1] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=east,honey_level=2] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=east,honey_level=3] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=east,honey_level=4] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=east,honey_level=5] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:beehive 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=north,honey_level=1] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=north,honey_level=2] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=north,honey_level=3] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=north,honey_level=4] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=north,honey_level=5] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=south,honey_level=0] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=south,honey_level=1] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=south,honey_level=2] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=south,honey_level=3] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=south,honey_level=4] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=south,honey_level=5] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=west,honey_level=0] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=west,honey_level=1] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=west,honey_level=2] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=west,honey_level=3] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=west,honey_level=4] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=west,honey_level=5] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=east,honey_level=0] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=east,honey_level=1] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=east,honey_level=2] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=east,honey_level=3] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=east,honey_level=4] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=east,honey_level=5] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:honey_block 251 185 52 191 200 148 41 191 125 92 26 191 100 74 20 191 +minecraft:honeycomb_block 229 148 29 255 183 118 23 255 114 74 14 255 91 59 11 255 +minecraft:netherite_block 66 61 63 255 52 48 50 255 33 30 31 255 26 24 25 255 +minecraft:ancient_debris 94 66 58 255 75 52 46 255 47 33 29 255 37 26 23 255 +minecraft:crying_obsidian 32 10 60 255 25 8 48 255 16 5 30 255 12 4 24 255 +minecraft:respawn_anchor 33 21 52 255 26 16 41 255 16 10 26 255 13 8 20 255 +minecraft:respawn_anchor[charges=1] 75 27 144 219 60 21 115 219 37 13 72 219 30 10 57 219 +minecraft:respawn_anchor[charges=2] 75 27 144 219 60 21 115 219 37 13 72 219 30 10 57 219 +minecraft:respawn_anchor[charges=3] 75 27 144 219 60 21 115 219 37 13 72 219 30 10 57 219 +minecraft:respawn_anchor[charges=4] 75 27 144 219 60 21 115 219 37 13 72 219 30 10 57 219 +minecraft:potted_crimson_fungus 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_warped_fungus 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_crimson_roots 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_warped_roots 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:lodestone 147 149 152 255 117 119 121 255 73 74 76 255 58 59 60 255 +minecraft:blackstone 42 36 41 255 33 28 32 255 21 18 20 255 16 14 16 255 +minecraft:blackstone_stairs 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=top,shape=straight,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=top,shape=straight,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=top,shape=straight,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=top,shape=straight,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=top,shape=straight,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=top,shape=straight,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=top,shape=straight,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_slab 42 36 41 255 33 28 32 255 21 18 20 255 16 14 16 255 +minecraft:blackstone_slab[type=top,waterlogged=false] 42 36 41 255 33 28 32 255 21 18 20 255 16 14 16 255 +minecraft:blackstone_slab[type=bottom,waterlogged=true] 42 36 41 255 33 28 32 255 21 18 20 255 16 14 16 255 +minecraft:blackstone_slab[type=bottom,waterlogged=false] 42 36 41 255 33 28 32 255 21 18 20 255 16 14 16 255 +minecraft:blackstone_slab[type=double,waterlogged=true] 42 36 41 255 33 28 32 255 21 18 20 255 16 14 16 255 +minecraft:blackstone_slab[type=double,waterlogged=false] 42 36 41 255 33 28 32 255 21 18 20 255 16 14 16 255 +minecraft:polished_blackstone 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_bricks 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:cracked_polished_blackstone_bricks 44 37 43 255 35 29 34 255 22 18 21 255 17 14 17 255 +minecraft:chiseled_polished_blackstone 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_brick_slab 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_slab[type=top,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_slab[type=bottom,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_slab[type=bottom,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_slab[type=double,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_slab[type=double,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:gilded_blackstone 55 42 38 255 44 33 30 255 27 21 19 255 22 16 15 255 +minecraft:polished_blackstone_stairs 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=top,shape=straight,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=top,shape=straight,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=top,shape=straight,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=top,shape=straight,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=top,shape=straight,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=top,shape=straight,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=top,shape=straight,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_slab 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_slab[type=top,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_slab[type=bottom,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_slab[type=bottom,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_slab[type=double,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_slab[type=double,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_pressure_plate 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_pressure_plate[powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=floor,facing=north,powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=floor,facing=south,powered=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=floor,facing=south,powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=floor,facing=west,powered=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=floor,facing=west,powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=floor,facing=east,powered=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=floor,facing=east,powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=wall,facing=north,powered=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=wall,facing=north,powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=wall,facing=south,powered=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=wall,facing=south,powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=wall,facing=west,powered=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=wall,facing=west,powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=wall,facing=east,powered=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=wall,facing=east,powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=ceiling,facing=north,powered=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=ceiling,facing=north,powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=ceiling,facing=south,powered=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=ceiling,facing=south,powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=ceiling,facing=west,powered=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=ceiling,facing=west,powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=ceiling,facing=east,powered=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=ceiling,facing=east,powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:chiseled_nether_bricks 47 23 28 255 37 18 22 255 23 11 14 255 18 9 11 255 +minecraft:cracked_nether_bricks 40 20 23 255 32 16 18 255 20 10 11 255 16 8 9 255 +minecraft:quartz_bricks 234 229 221 255 187 183 176 255 117 114 110 255 93 91 88 255 +minecraft:candle 235 210 173 20 188 168 138 20 117 105 86 20 94 84 69 20 +minecraft:candle[candles=1,lit=true,waterlogged=false] 235 210 173 20 188 168 138 20 117 105 86 20 94 84 69 20 +minecraft:candle[candles=1,lit=false,waterlogged=true] 232 200 153 20 185 160 122 20 116 100 76 20 92 80 61 20 +minecraft:candle[candles=1,lit=false,waterlogged=false] 232 200 153 20 185 160 122 20 116 100 76 20 92 80 61 20 +minecraft:candle[candles=2,lit=true,waterlogged=true] 235 210 173 20 188 168 138 20 117 105 86 20 94 84 69 20 +minecraft:candle[candles=2,lit=true,waterlogged=false] 235 210 173 20 188 168 138 20 117 105 86 20 94 84 69 20 +minecraft:candle[candles=2,lit=false,waterlogged=true] 232 200 153 20 185 160 122 20 116 100 76 20 92 80 61 20 +minecraft:candle[candles=2,lit=false,waterlogged=false] 232 200 153 20 185 160 122 20 116 100 76 20 92 80 61 20 +minecraft:candle[candles=3,lit=true,waterlogged=true] 235 210 173 20 188 168 138 20 117 105 86 20 94 84 69 20 +minecraft:candle[candles=3,lit=true,waterlogged=false] 235 210 173 20 188 168 138 20 117 105 86 20 94 84 69 20 +minecraft:candle[candles=3,lit=false,waterlogged=true] 232 200 153 20 185 160 122 20 116 100 76 20 92 80 61 20 +minecraft:candle[candles=3,lit=false,waterlogged=false] 232 200 153 20 185 160 122 20 116 100 76 20 92 80 61 20 +minecraft:candle[candles=4,lit=true,waterlogged=true] 235 210 173 20 188 168 138 20 117 105 86 20 94 84 69 20 +minecraft:candle[candles=4,lit=true,waterlogged=false] 235 210 173 20 188 168 138 20 117 105 86 20 94 84 69 20 +minecraft:candle[candles=4,lit=false,waterlogged=true] 232 200 153 20 185 160 122 20 116 100 76 20 92 80 61 20 +minecraft:candle[candles=4,lit=false,waterlogged=false] 232 200 153 20 185 160 122 20 116 100 76 20 92 80 61 20 +minecraft:white_candle 217 217 206 20 173 173 164 20 108 108 103 20 86 86 82 20 +minecraft:white_candle[candles=1,lit=true,waterlogged=false] 217 217 206 20 173 173 164 20 108 108 103 20 86 86 82 20 +minecraft:white_candle[candles=1,lit=false,waterlogged=true] 210 216 217 20 168 172 173 20 105 108 108 20 84 86 86 20 +minecraft:white_candle[candles=1,lit=false,waterlogged=false] 210 216 217 20 168 172 173 20 105 108 108 20 84 86 86 20 +minecraft:white_candle[candles=2,lit=true,waterlogged=true] 217 217 206 20 173 173 164 20 108 108 103 20 86 86 82 20 +minecraft:white_candle[candles=2,lit=true,waterlogged=false] 217 217 206 20 173 173 164 20 108 108 103 20 86 86 82 20 +minecraft:white_candle[candles=2,lit=false,waterlogged=true] 210 216 217 20 168 172 173 20 105 108 108 20 84 86 86 20 +minecraft:white_candle[candles=2,lit=false,waterlogged=false] 210 216 217 20 168 172 173 20 105 108 108 20 84 86 86 20 +minecraft:white_candle[candles=3,lit=true,waterlogged=true] 217 217 206 20 173 173 164 20 108 108 103 20 86 86 82 20 +minecraft:white_candle[candles=3,lit=true,waterlogged=false] 217 217 206 20 173 173 164 20 108 108 103 20 86 86 82 20 +minecraft:white_candle[candles=3,lit=false,waterlogged=true] 210 216 217 20 168 172 173 20 105 108 108 20 84 86 86 20 +minecraft:white_candle[candles=3,lit=false,waterlogged=false] 210 216 217 20 168 172 173 20 105 108 108 20 84 86 86 20 +minecraft:white_candle[candles=4,lit=true,waterlogged=true] 217 217 206 20 173 173 164 20 108 108 103 20 86 86 82 20 +minecraft:white_candle[candles=4,lit=true,waterlogged=false] 217 217 206 20 173 173 164 20 108 108 103 20 86 86 82 20 +minecraft:white_candle[candles=4,lit=false,waterlogged=true] 210 216 217 20 168 172 173 20 105 108 108 20 84 86 86 20 +minecraft:white_candle[candles=4,lit=false,waterlogged=false] 210 216 217 20 168 172 173 20 105 108 108 20 84 86 86 20 +minecraft:orange_candle 226 131 26 20 180 104 20 20 113 65 13 20 90 52 10 20 +minecraft:orange_candle[candles=1,lit=true,waterlogged=false] 226 131 26 20 180 104 20 20 113 65 13 20 90 52 10 20 +minecraft:orange_candle[candles=1,lit=false,waterlogged=true] 219 100 9 20 175 80 7 20 109 50 4 20 87 40 3 20 +minecraft:orange_candle[candles=1,lit=false,waterlogged=false] 219 100 9 20 175 80 7 20 109 50 4 20 87 40 3 20 +minecraft:orange_candle[candles=2,lit=true,waterlogged=true] 226 131 26 20 180 104 20 20 113 65 13 20 90 52 10 20 +minecraft:orange_candle[candles=2,lit=true,waterlogged=false] 226 131 26 20 180 104 20 20 113 65 13 20 90 52 10 20 +minecraft:orange_candle[candles=2,lit=false,waterlogged=true] 219 100 9 20 175 80 7 20 109 50 4 20 87 40 3 20 +minecraft:orange_candle[candles=2,lit=false,waterlogged=false] 219 100 9 20 175 80 7 20 109 50 4 20 87 40 3 20 +minecraft:orange_candle[candles=3,lit=true,waterlogged=true] 226 131 26 20 180 104 20 20 113 65 13 20 90 52 10 20 +minecraft:orange_candle[candles=3,lit=true,waterlogged=false] 226 131 26 20 180 104 20 20 113 65 13 20 90 52 10 20 +minecraft:orange_candle[candles=3,lit=false,waterlogged=true] 219 100 9 20 175 80 7 20 109 50 4 20 87 40 3 20 +minecraft:orange_candle[candles=3,lit=false,waterlogged=false] 219 100 9 20 175 80 7 20 109 50 4 20 87 40 3 20 +minecraft:orange_candle[candles=4,lit=true,waterlogged=true] 226 131 26 20 180 104 20 20 113 65 13 20 90 52 10 20 +minecraft:orange_candle[candles=4,lit=true,waterlogged=false] 226 131 26 20 180 104 20 20 113 65 13 20 90 52 10 20 +minecraft:orange_candle[candles=4,lit=false,waterlogged=true] 219 100 9 20 175 80 7 20 109 50 4 20 87 40 3 20 +minecraft:orange_candle[candles=4,lit=false,waterlogged=false] 219 100 9 20 175 80 7 20 109 50 4 20 87 40 3 20 +minecraft:magenta_candle 182 69 161 20 145 55 128 20 91 34 80 20 72 27 64 20 +minecraft:magenta_candle[candles=1,lit=true,waterlogged=false] 182 69 161 20 145 55 128 20 91 34 80 20 72 27 64 20 +minecraft:magenta_candle[candles=1,lit=false,waterlogged=true] 160 45 153 20 128 36 122 20 80 22 76 20 64 18 61 20 +minecraft:magenta_candle[candles=1,lit=false,waterlogged=false] 160 45 153 20 128 36 122 20 80 22 76 20 64 18 61 20 +minecraft:magenta_candle[candles=2,lit=true,waterlogged=true] 182 69 161 20 145 55 128 20 91 34 80 20 72 27 64 20 +minecraft:magenta_candle[candles=2,lit=true,waterlogged=false] 182 69 161 20 145 55 128 20 91 34 80 20 72 27 64 20 +minecraft:magenta_candle[candles=2,lit=false,waterlogged=true] 160 45 153 20 128 36 122 20 80 22 76 20 64 18 61 20 +minecraft:magenta_candle[candles=2,lit=false,waterlogged=false] 160 45 153 20 128 36 122 20 80 22 76 20 64 18 61 20 +minecraft:magenta_candle[candles=3,lit=true,waterlogged=true] 182 69 161 20 145 55 128 20 91 34 80 20 72 27 64 20 +minecraft:magenta_candle[candles=3,lit=true,waterlogged=false] 182 69 161 20 145 55 128 20 91 34 80 20 72 27 64 20 +minecraft:magenta_candle[candles=3,lit=false,waterlogged=true] 160 45 153 20 128 36 122 20 80 22 76 20 64 18 61 20 +minecraft:magenta_candle[candles=3,lit=false,waterlogged=false] 160 45 153 20 128 36 122 20 80 22 76 20 64 18 61 20 +minecraft:magenta_candle[candles=4,lit=true,waterlogged=true] 182 69 161 20 145 55 128 20 91 34 80 20 72 27 64 20 +minecraft:magenta_candle[candles=4,lit=true,waterlogged=false] 182 69 161 20 145 55 128 20 91 34 80 20 72 27 64 20 +minecraft:magenta_candle[candles=4,lit=false,waterlogged=true] 160 45 153 20 128 36 122 20 80 22 76 20 64 18 61 20 +minecraft:magenta_candle[candles=4,lit=false,waterlogged=false] 160 45 153 20 128 36 122 20 80 22 76 20 64 18 61 20 +minecraft:light_blue_candle 69 161 201 20 55 128 160 20 34 80 100 20 27 64 80 20 +minecraft:light_blue_candle[candles=1,lit=true,waterlogged=false] 69 161 201 20 55 128 160 20 34 80 100 20 27 64 80 20 +minecraft:light_blue_candle[candles=1,lit=false,waterlogged=true] 34 137 196 20 27 109 156 20 17 68 98 20 13 54 78 20 +minecraft:light_blue_candle[candles=1,lit=false,waterlogged=false] 34 137 196 20 27 109 156 20 17 68 98 20 13 54 78 20 +minecraft:light_blue_candle[candles=2,lit=true,waterlogged=true] 69 161 201 20 55 128 160 20 34 80 100 20 27 64 80 20 +minecraft:light_blue_candle[candles=2,lit=true,waterlogged=false] 69 161 201 20 55 128 160 20 34 80 100 20 27 64 80 20 +minecraft:light_blue_candle[candles=2,lit=false,waterlogged=true] 34 137 196 20 27 109 156 20 17 68 98 20 13 54 78 20 +minecraft:light_blue_candle[candles=2,lit=false,waterlogged=false] 34 137 196 20 27 109 156 20 17 68 98 20 13 54 78 20 +minecraft:light_blue_candle[candles=3,lit=true,waterlogged=true] 69 161 201 20 55 128 160 20 34 80 100 20 27 64 80 20 +minecraft:light_blue_candle[candles=3,lit=true,waterlogged=false] 69 161 201 20 55 128 160 20 34 80 100 20 27 64 80 20 +minecraft:light_blue_candle[candles=3,lit=false,waterlogged=true] 34 137 196 20 27 109 156 20 17 68 98 20 13 54 78 20 +minecraft:light_blue_candle[candles=3,lit=false,waterlogged=false] 34 137 196 20 27 109 156 20 17 68 98 20 13 54 78 20 +minecraft:light_blue_candle[candles=4,lit=true,waterlogged=true] 69 161 201 20 55 128 160 20 34 80 100 20 27 64 80 20 +minecraft:light_blue_candle[candles=4,lit=true,waterlogged=false] 69 161 201 20 55 128 160 20 34 80 100 20 27 64 80 20 +minecraft:light_blue_candle[candles=4,lit=false,waterlogged=true] 34 137 196 20 27 109 156 20 17 68 98 20 13 54 78 20 +minecraft:light_blue_candle[candles=4,lit=false,waterlogged=false] 34 137 196 20 27 109 156 20 17 68 98 20 13 54 78 20 +minecraft:yellow_candle 216 183 74 20 172 146 59 20 108 91 37 20 86 73 29 20 +minecraft:yellow_candle[candles=1,lit=true,waterlogged=false] 216 183 74 20 172 146 59 20 108 91 37 20 86 73 29 20 +minecraft:yellow_candle[candles=1,lit=false,waterlogged=true] 209 164 50 20 167 131 40 20 104 82 25 20 83 65 20 20 +minecraft:yellow_candle[candles=1,lit=false,waterlogged=false] 209 164 50 20 167 131 40 20 104 82 25 20 83 65 20 20 +minecraft:yellow_candle[candles=2,lit=true,waterlogged=true] 216 183 74 20 172 146 59 20 108 91 37 20 86 73 29 20 +minecraft:yellow_candle[candles=2,lit=true,waterlogged=false] 216 183 74 20 172 146 59 20 108 91 37 20 86 73 29 20 +minecraft:yellow_candle[candles=2,lit=false,waterlogged=true] 209 164 50 20 167 131 40 20 104 82 25 20 83 65 20 20 +minecraft:yellow_candle[candles=2,lit=false,waterlogged=false] 209 164 50 20 167 131 40 20 104 82 25 20 83 65 20 20 +minecraft:yellow_candle[candles=3,lit=true,waterlogged=true] 216 183 74 20 172 146 59 20 108 91 37 20 86 73 29 20 +minecraft:yellow_candle[candles=3,lit=true,waterlogged=false] 216 183 74 20 172 146 59 20 108 91 37 20 86 73 29 20 +minecraft:yellow_candle[candles=3,lit=false,waterlogged=true] 209 164 50 20 167 131 40 20 104 82 25 20 83 65 20 20 +minecraft:yellow_candle[candles=3,lit=false,waterlogged=false] 209 164 50 20 167 131 40 20 104 82 25 20 83 65 20 20 +minecraft:yellow_candle[candles=4,lit=true,waterlogged=true] 216 183 74 20 172 146 59 20 108 91 37 20 86 73 29 20 +minecraft:yellow_candle[candles=4,lit=true,waterlogged=false] 216 183 74 20 172 146 59 20 108 91 37 20 86 73 29 20 +minecraft:yellow_candle[candles=4,lit=false,waterlogged=true] 209 164 50 20 167 131 40 20 104 82 25 20 83 65 20 20 +minecraft:yellow_candle[candles=4,lit=false,waterlogged=false] 209 164 50 20 167 131 40 20 104 82 25 20 83 65 20 20 +minecraft:lime_candle 124 181 30 20 99 144 24 20 62 90 15 20 49 72 12 20 +minecraft:lime_candle[candles=1,lit=true,waterlogged=false] 124 181 30 20 99 144 24 20 62 90 15 20 49 72 12 20 +minecraft:lime_candle[candles=1,lit=false,waterlogged=true] 98 171 22 20 78 136 17 20 49 85 11 20 39 68 8 20 +minecraft:lime_candle[candles=1,lit=false,waterlogged=false] 98 171 22 20 78 136 17 20 49 85 11 20 39 68 8 20 +minecraft:lime_candle[candles=2,lit=true,waterlogged=true] 124 181 30 20 99 144 24 20 62 90 15 20 49 72 12 20 +minecraft:lime_candle[candles=2,lit=true,waterlogged=false] 124 181 30 20 99 144 24 20 62 90 15 20 49 72 12 20 +minecraft:lime_candle[candles=2,lit=false,waterlogged=true] 98 171 22 20 78 136 17 20 49 85 11 20 39 68 8 20 +minecraft:lime_candle[candles=2,lit=false,waterlogged=false] 98 171 22 20 78 136 17 20 49 85 11 20 39 68 8 20 +minecraft:lime_candle[candles=3,lit=true,waterlogged=true] 124 181 30 20 99 144 24 20 62 90 15 20 49 72 12 20 +minecraft:lime_candle[candles=3,lit=true,waterlogged=false] 124 181 30 20 99 144 24 20 62 90 15 20 49 72 12 20 +minecraft:lime_candle[candles=3,lit=false,waterlogged=true] 98 171 22 20 78 136 17 20 49 85 11 20 39 68 8 20 +minecraft:lime_candle[candles=3,lit=false,waterlogged=false] 98 171 22 20 78 136 17 20 49 85 11 20 39 68 8 20 +minecraft:lime_candle[candles=4,lit=true,waterlogged=true] 124 181 30 20 99 144 24 20 62 90 15 20 49 72 12 20 +minecraft:lime_candle[candles=4,lit=true,waterlogged=false] 124 181 30 20 99 144 24 20 62 90 15 20 49 72 12 20 +minecraft:lime_candle[candles=4,lit=false,waterlogged=true] 98 171 22 20 78 136 17 20 49 85 11 20 39 68 8 20 +minecraft:lime_candle[candles=4,lit=false,waterlogged=false] 98 171 22 20 78 136 17 20 49 85 11 20 39 68 8 20 +minecraft:pink_candle 217 131 150 20 173 104 120 20 108 65 75 20 86 52 60 20 +minecraft:pink_candle[candles=1,lit=true,waterlogged=false] 217 131 150 20 173 104 120 20 108 65 75 20 86 52 60 20 +minecraft:pink_candle[candles=1,lit=false,waterlogged=true] 208 101 142 20 166 80 113 20 104 50 71 20 83 40 56 20 +minecraft:pink_candle[candles=1,lit=false,waterlogged=false] 208 101 142 20 166 80 113 20 104 50 71 20 83 40 56 20 +minecraft:pink_candle[candles=2,lit=true,waterlogged=true] 217 131 150 20 173 104 120 20 108 65 75 20 86 52 60 20 +minecraft:pink_candle[candles=2,lit=true,waterlogged=false] 217 131 150 20 173 104 120 20 108 65 75 20 86 52 60 20 +minecraft:pink_candle[candles=2,lit=false,waterlogged=true] 208 101 142 20 166 80 113 20 104 50 71 20 83 40 56 20 +minecraft:pink_candle[candles=2,lit=false,waterlogged=false] 208 101 142 20 166 80 113 20 104 50 71 20 83 40 56 20 +minecraft:pink_candle[candles=3,lit=true,waterlogged=true] 217 131 150 20 173 104 120 20 108 65 75 20 86 52 60 20 +minecraft:pink_candle[candles=3,lit=true,waterlogged=false] 217 131 150 20 173 104 120 20 108 65 75 20 86 52 60 20 +minecraft:pink_candle[candles=3,lit=false,waterlogged=true] 208 101 142 20 166 80 113 20 104 50 71 20 83 40 56 20 +minecraft:pink_candle[candles=3,lit=false,waterlogged=false] 208 101 142 20 166 80 113 20 104 50 71 20 83 40 56 20 +minecraft:pink_candle[candles=4,lit=true,waterlogged=true] 217 131 150 20 173 104 120 20 108 65 75 20 86 52 60 20 +minecraft:pink_candle[candles=4,lit=true,waterlogged=false] 217 131 150 20 173 104 120 20 108 65 75 20 86 52 60 20 +minecraft:pink_candle[candles=4,lit=false,waterlogged=true] 208 101 142 20 166 80 113 20 104 50 71 20 83 40 56 20 +minecraft:pink_candle[candles=4,lit=false,waterlogged=false] 208 101 142 20 166 80 113 20 104 50 71 20 83 40 56 20 +minecraft:gray_candle 118 122 108 20 94 97 86 20 59 61 54 20 47 48 43 20 +minecraft:gray_candle[candles=1,lit=true,waterlogged=false] 118 122 108 20 94 97 86 20 59 61 54 20 47 48 43 20 +minecraft:gray_candle[candles=1,lit=false,waterlogged=true] 80 94 96 20 64 75 76 20 40 47 48 20 32 37 38 20 +minecraft:gray_candle[candles=1,lit=false,waterlogged=false] 80 94 96 20 64 75 76 20 40 47 48 20 32 37 38 20 +minecraft:gray_candle[candles=2,lit=true,waterlogged=true] 118 122 108 20 94 97 86 20 59 61 54 20 47 48 43 20 +minecraft:gray_candle[candles=2,lit=true,waterlogged=false] 118 122 108 20 94 97 86 20 59 61 54 20 47 48 43 20 +minecraft:gray_candle[candles=2,lit=false,waterlogged=true] 80 94 96 20 64 75 76 20 40 47 48 20 32 37 38 20 +minecraft:gray_candle[candles=2,lit=false,waterlogged=false] 80 94 96 20 64 75 76 20 40 47 48 20 32 37 38 20 +minecraft:gray_candle[candles=3,lit=true,waterlogged=true] 118 122 108 20 94 97 86 20 59 61 54 20 47 48 43 20 +minecraft:gray_candle[candles=3,lit=true,waterlogged=false] 118 122 108 20 94 97 86 20 59 61 54 20 47 48 43 20 +minecraft:gray_candle[candles=3,lit=false,waterlogged=true] 80 94 96 20 64 75 76 20 40 47 48 20 32 37 38 20 +minecraft:gray_candle[candles=3,lit=false,waterlogged=false] 80 94 96 20 64 75 76 20 40 47 48 20 32 37 38 20 +minecraft:gray_candle[candles=4,lit=true,waterlogged=true] 118 122 108 20 94 97 86 20 59 61 54 20 47 48 43 20 +minecraft:gray_candle[candles=4,lit=true,waterlogged=false] 118 122 108 20 94 97 86 20 59 61 54 20 47 48 43 20 +minecraft:gray_candle[candles=4,lit=false,waterlogged=true] 80 94 96 20 64 75 76 20 40 47 48 20 32 37 38 20 +minecraft:gray_candle[candles=4,lit=false,waterlogged=false] 80 94 96 20 64 75 76 20 40 47 48 20 32 37 38 20 +minecraft:light_gray_candle 151 147 126 20 120 117 100 20 75 73 63 20 60 58 50 20 +minecraft:light_gray_candle[candles=1,lit=true,waterlogged=false] 151 147 126 20 120 117 100 20 75 73 63 20 60 58 50 20 +minecraft:light_gray_candle[candles=1,lit=false,waterlogged=true] 118 120 112 20 94 96 89 20 59 60 56 20 47 48 44 20 +minecraft:light_gray_candle[candles=1,lit=false,waterlogged=false] 118 120 112 20 94 96 89 20 59 60 56 20 47 48 44 20 +minecraft:light_gray_candle[candles=2,lit=true,waterlogged=true] 151 147 126 20 120 117 100 20 75 73 63 20 60 58 50 20 +minecraft:light_gray_candle[candles=2,lit=true,waterlogged=false] 151 147 126 20 120 117 100 20 75 73 63 20 60 58 50 20 +minecraft:light_gray_candle[candles=2,lit=false,waterlogged=true] 118 120 112 20 94 96 89 20 59 60 56 20 47 48 44 20 +minecraft:light_gray_candle[candles=2,lit=false,waterlogged=false] 118 120 112 20 94 96 89 20 59 60 56 20 47 48 44 20 +minecraft:light_gray_candle[candles=3,lit=true,waterlogged=true] 151 147 126 20 120 117 100 20 75 73 63 20 60 58 50 20 +minecraft:light_gray_candle[candles=3,lit=true,waterlogged=false] 151 147 126 20 120 117 100 20 75 73 63 20 60 58 50 20 +minecraft:light_gray_candle[candles=3,lit=false,waterlogged=true] 118 120 112 20 94 96 89 20 59 60 56 20 47 48 44 20 +minecraft:light_gray_candle[candles=3,lit=false,waterlogged=false] 118 120 112 20 94 96 89 20 59 60 56 20 47 48 44 20 +minecraft:light_gray_candle[candles=4,lit=true,waterlogged=true] 151 147 126 20 120 117 100 20 75 73 63 20 60 58 50 20 +minecraft:light_gray_candle[candles=4,lit=true,waterlogged=false] 151 147 126 20 120 117 100 20 75 73 63 20 60 58 50 20 +minecraft:light_gray_candle[candles=4,lit=false,waterlogged=true] 118 120 112 20 94 96 89 20 59 60 56 20 47 48 44 20 +minecraft:light_gray_candle[candles=4,lit=false,waterlogged=false] 118 120 112 20 94 96 89 20 59 60 56 20 47 48 44 20 +minecraft:cyan_candle 43 146 134 20 34 116 107 20 21 73 67 20 17 58 53 20 +minecraft:cyan_candle[candles=1,lit=true,waterlogged=false] 43 146 134 20 34 116 107 20 21 73 67 20 17 58 53 20 +minecraft:cyan_candle[candles=1,lit=false,waterlogged=true] 17 123 123 20 13 98 98 20 8 61 61 20 6 49 49 20 +minecraft:cyan_candle[candles=1,lit=false,waterlogged=false] 17 123 123 20 13 98 98 20 8 61 61 20 6 49 49 20 +minecraft:cyan_candle[candles=2,lit=true,waterlogged=true] 43 146 134 20 34 116 107 20 21 73 67 20 17 58 53 20 +minecraft:cyan_candle[candles=2,lit=true,waterlogged=false] 43 146 134 20 34 116 107 20 21 73 67 20 17 58 53 20 +minecraft:cyan_candle[candles=2,lit=false,waterlogged=true] 17 123 123 20 13 98 98 20 8 61 61 20 6 49 49 20 +minecraft:cyan_candle[candles=2,lit=false,waterlogged=false] 17 123 123 20 13 98 98 20 8 61 61 20 6 49 49 20 +minecraft:cyan_candle[candles=3,lit=true,waterlogged=true] 43 146 134 20 34 116 107 20 21 73 67 20 17 58 53 20 +minecraft:cyan_candle[candles=3,lit=true,waterlogged=false] 43 146 134 20 34 116 107 20 21 73 67 20 17 58 53 20 +minecraft:cyan_candle[candles=3,lit=false,waterlogged=true] 17 123 123 20 13 98 98 20 8 61 61 20 6 49 49 20 +minecraft:cyan_candle[candles=3,lit=false,waterlogged=false] 17 123 123 20 13 98 98 20 8 61 61 20 6 49 49 20 +minecraft:cyan_candle[candles=4,lit=true,waterlogged=true] 43 146 134 20 34 116 107 20 21 73 67 20 17 58 53 20 +minecraft:cyan_candle[candles=4,lit=true,waterlogged=false] 43 146 134 20 34 116 107 20 21 73 67 20 17 58 53 20 +minecraft:cyan_candle[candles=4,lit=false,waterlogged=true] 17 123 123 20 13 98 98 20 8 61 61 20 6 49 49 20 +minecraft:cyan_candle[candles=4,lit=false,waterlogged=false] 17 123 123 20 13 98 98 20 8 61 61 20 6 49 49 20 +minecraft:purple_candle 124 33 144 20 99 26 115 20 62 16 72 20 49 13 57 20 +minecraft:purple_candle[candles=1,lit=true,waterlogged=false] 124 33 144 20 99 26 115 20 62 16 72 20 49 13 57 20 +minecraft:purple_candle[candles=1,lit=false,waterlogged=true] 105 34 159 20 84 27 127 20 52 17 79 20 42 13 63 20 +minecraft:purple_candle[candles=1,lit=false,waterlogged=false] 105 34 159 20 84 27 127 20 52 17 79 20 42 13 63 20 +minecraft:purple_candle[candles=2,lit=true,waterlogged=true] 124 33 144 20 99 26 115 20 62 16 72 20 49 13 57 20 +minecraft:purple_candle[candles=2,lit=true,waterlogged=false] 124 33 144 20 99 26 115 20 62 16 72 20 49 13 57 20 +minecraft:purple_candle[candles=2,lit=false,waterlogged=true] 105 34 159 20 84 27 127 20 52 17 79 20 42 13 63 20 +minecraft:purple_candle[candles=2,lit=false,waterlogged=false] 105 34 159 20 84 27 127 20 52 17 79 20 42 13 63 20 +minecraft:purple_candle[candles=3,lit=true,waterlogged=true] 124 33 144 20 99 26 115 20 62 16 72 20 49 13 57 20 +minecraft:purple_candle[candles=3,lit=true,waterlogged=false] 124 33 144 20 99 26 115 20 62 16 72 20 49 13 57 20 +minecraft:purple_candle[candles=3,lit=false,waterlogged=true] 105 34 159 20 84 27 127 20 52 17 79 20 42 13 63 20 +minecraft:purple_candle[candles=3,lit=false,waterlogged=false] 105 34 159 20 84 27 127 20 52 17 79 20 42 13 63 20 +minecraft:purple_candle[candles=4,lit=true,waterlogged=true] 124 33 144 20 99 26 115 20 62 16 72 20 49 13 57 20 +minecraft:purple_candle[candles=4,lit=true,waterlogged=false] 124 33 144 20 99 26 115 20 62 16 72 20 49 13 57 20 +minecraft:purple_candle[candles=4,lit=false,waterlogged=true] 105 34 159 20 84 27 127 20 52 17 79 20 42 13 63 20 +minecraft:purple_candle[candles=4,lit=false,waterlogged=false] 105 34 159 20 84 27 127 20 52 17 79 20 42 13 63 20 +minecraft:blue_candle 64 84 179 20 51 67 143 20 32 42 89 20 25 33 71 20 +minecraft:blue_candle[candles=1,lit=true,waterlogged=false] 64 84 179 20 51 67 143 20 32 42 89 20 25 33 71 20 +minecraft:blue_candle[candles=1,lit=false,waterlogged=true] 57 76 161 20 45 60 128 20 28 38 80 20 22 30 64 20 +minecraft:blue_candle[candles=1,lit=false,waterlogged=false] 57 76 161 20 45 60 128 20 28 38 80 20 22 30 64 20 +minecraft:blue_candle[candles=2,lit=true,waterlogged=true] 64 84 179 20 51 67 143 20 32 42 89 20 25 33 71 20 +minecraft:blue_candle[candles=2,lit=true,waterlogged=false] 64 84 179 20 51 67 143 20 32 42 89 20 25 33 71 20 +minecraft:blue_candle[candles=2,lit=false,waterlogged=true] 57 76 161 20 45 60 128 20 28 38 80 20 22 30 64 20 +minecraft:blue_candle[candles=2,lit=false,waterlogged=false] 57 76 161 20 45 60 128 20 28 38 80 20 22 30 64 20 +minecraft:blue_candle[candles=3,lit=true,waterlogged=true] 64 84 179 20 51 67 143 20 32 42 89 20 25 33 71 20 +minecraft:blue_candle[candles=3,lit=true,waterlogged=false] 64 84 179 20 51 67 143 20 32 42 89 20 25 33 71 20 +minecraft:blue_candle[candles=3,lit=false,waterlogged=true] 57 76 161 20 45 60 128 20 28 38 80 20 22 30 64 20 +minecraft:blue_candle[candles=3,lit=false,waterlogged=false] 57 76 161 20 45 60 128 20 28 38 80 20 22 30 64 20 +minecraft:blue_candle[candles=4,lit=true,waterlogged=true] 64 84 179 20 51 67 143 20 32 42 89 20 25 33 71 20 +minecraft:blue_candle[candles=4,lit=true,waterlogged=false] 64 84 179 20 51 67 143 20 32 42 89 20 25 33 71 20 +minecraft:blue_candle[candles=4,lit=false,waterlogged=true] 57 76 161 20 45 60 128 20 28 38 80 20 22 30 64 20 +minecraft:blue_candle[candles=4,lit=false,waterlogged=false] 57 76 161 20 45 60 128 20 28 38 80 20 22 30 64 20 +minecraft:brown_candle 147 96 51 20 117 76 40 20 73 48 25 20 58 38 20 20 +minecraft:brown_candle[candles=1,lit=true,waterlogged=false] 147 96 51 20 117 76 40 20 73 48 25 20 58 38 20 20 +minecraft:brown_candle[candles=1,lit=false,waterlogged=true] 111 70 41 20 88 56 32 20 55 35 20 20 44 28 16 20 +minecraft:brown_candle[candles=1,lit=false,waterlogged=false] 111 70 41 20 88 56 32 20 55 35 20 20 44 28 16 20 +minecraft:brown_candle[candles=2,lit=true,waterlogged=true] 147 96 51 20 117 76 40 20 73 48 25 20 58 38 20 20 +minecraft:brown_candle[candles=2,lit=true,waterlogged=false] 147 96 51 20 117 76 40 20 73 48 25 20 58 38 20 20 +minecraft:brown_candle[candles=2,lit=false,waterlogged=true] 111 70 41 20 88 56 32 20 55 35 20 20 44 28 16 20 +minecraft:brown_candle[candles=2,lit=false,waterlogged=false] 111 70 41 20 88 56 32 20 55 35 20 20 44 28 16 20 +minecraft:brown_candle[candles=3,lit=true,waterlogged=true] 147 96 51 20 117 76 40 20 73 48 25 20 58 38 20 20 +minecraft:brown_candle[candles=3,lit=true,waterlogged=false] 147 96 51 20 117 76 40 20 73 48 25 20 58 38 20 20 +minecraft:brown_candle[candles=3,lit=false,waterlogged=true] 111 70 41 20 88 56 32 20 55 35 20 20 44 28 16 20 +minecraft:brown_candle[candles=3,lit=false,waterlogged=false] 111 70 41 20 88 56 32 20 55 35 20 20 44 28 16 20 +minecraft:brown_candle[candles=4,lit=true,waterlogged=true] 147 96 51 20 117 76 40 20 73 48 25 20 58 38 20 20 +minecraft:brown_candle[candles=4,lit=true,waterlogged=false] 147 96 51 20 117 76 40 20 73 48 25 20 58 38 20 20 +minecraft:brown_candle[candles=4,lit=false,waterlogged=true] 111 70 41 20 88 56 32 20 55 35 20 20 44 28 16 20 +minecraft:brown_candle[candles=4,lit=false,waterlogged=false] 111 70 41 20 88 56 32 20 55 35 20 20 44 28 16 20 +minecraft:green_candle 100 115 22 20 80 92 17 20 50 57 11 20 40 46 8 20 +minecraft:green_candle[candles=1,lit=true,waterlogged=false] 100 115 22 20 80 92 17 20 50 57 11 20 40 46 8 20 +minecraft:green_candle[candles=1,lit=false,waterlogged=true] 72 96 20 20 57 76 16 20 36 48 10 20 28 38 8 20 +minecraft:green_candle[candles=1,lit=false,waterlogged=false] 72 96 20 20 57 76 16 20 36 48 10 20 28 38 8 20 +minecraft:green_candle[candles=2,lit=true,waterlogged=true] 100 115 22 20 80 92 17 20 50 57 11 20 40 46 8 20 +minecraft:green_candle[candles=2,lit=true,waterlogged=false] 100 115 22 20 80 92 17 20 50 57 11 20 40 46 8 20 +minecraft:green_candle[candles=2,lit=false,waterlogged=true] 72 96 20 20 57 76 16 20 36 48 10 20 28 38 8 20 +minecraft:green_candle[candles=2,lit=false,waterlogged=false] 72 96 20 20 57 76 16 20 36 48 10 20 28 38 8 20 +minecraft:green_candle[candles=3,lit=true,waterlogged=true] 100 115 22 20 80 92 17 20 50 57 11 20 40 46 8 20 +minecraft:green_candle[candles=3,lit=true,waterlogged=false] 100 115 22 20 80 92 17 20 50 57 11 20 40 46 8 20 +minecraft:green_candle[candles=3,lit=false,waterlogged=true] 72 96 20 20 57 76 16 20 36 48 10 20 28 38 8 20 +minecraft:green_candle[candles=3,lit=false,waterlogged=false] 72 96 20 20 57 76 16 20 36 48 10 20 28 38 8 20 +minecraft:green_candle[candles=4,lit=true,waterlogged=true] 100 115 22 20 80 92 17 20 50 57 11 20 40 46 8 20 +minecraft:green_candle[candles=4,lit=true,waterlogged=false] 100 115 22 20 80 92 17 20 50 57 11 20 40 46 8 20 +minecraft:green_candle[candles=4,lit=false,waterlogged=true] 72 96 20 20 57 76 16 20 36 48 10 20 28 38 8 20 +minecraft:green_candle[candles=4,lit=false,waterlogged=false] 72 96 20 20 57 76 16 20 36 48 10 20 28 38 8 20 +minecraft:red_candle 180 65 47 20 144 52 37 20 90 32 23 20 72 26 18 20 +minecraft:red_candle[candles=1,lit=true,waterlogged=false] 180 65 47 20 144 52 37 20 90 32 23 20 72 26 18 20 +minecraft:red_candle[candles=1,lit=false,waterlogged=true] 153 38 36 20 122 30 28 20 76 19 18 20 61 15 14 20 +minecraft:red_candle[candles=1,lit=false,waterlogged=false] 153 38 36 20 122 30 28 20 76 19 18 20 61 15 14 20 +minecraft:red_candle[candles=2,lit=true,waterlogged=true] 180 65 47 20 144 52 37 20 90 32 23 20 72 26 18 20 +minecraft:red_candle[candles=2,lit=true,waterlogged=false] 180 65 47 20 144 52 37 20 90 32 23 20 72 26 18 20 +minecraft:red_candle[candles=2,lit=false,waterlogged=true] 153 38 36 20 122 30 28 20 76 19 18 20 61 15 14 20 +minecraft:red_candle[candles=2,lit=false,waterlogged=false] 153 38 36 20 122 30 28 20 76 19 18 20 61 15 14 20 +minecraft:red_candle[candles=3,lit=true,waterlogged=true] 180 65 47 20 144 52 37 20 90 32 23 20 72 26 18 20 +minecraft:red_candle[candles=3,lit=true,waterlogged=false] 180 65 47 20 144 52 37 20 90 32 23 20 72 26 18 20 +minecraft:red_candle[candles=3,lit=false,waterlogged=true] 153 38 36 20 122 30 28 20 76 19 18 20 61 15 14 20 +minecraft:red_candle[candles=3,lit=false,waterlogged=false] 153 38 36 20 122 30 28 20 76 19 18 20 61 15 14 20 +minecraft:red_candle[candles=4,lit=true,waterlogged=true] 180 65 47 20 144 52 37 20 90 32 23 20 72 26 18 20 +minecraft:red_candle[candles=4,lit=true,waterlogged=false] 180 65 47 20 144 52 37 20 90 32 23 20 72 26 18 20 +minecraft:red_candle[candles=4,lit=false,waterlogged=true] 153 38 36 20 122 30 28 20 76 19 18 20 61 15 14 20 +minecraft:red_candle[candles=4,lit=false,waterlogged=false] 153 38 36 20 122 30 28 20 76 19 18 20 61 15 14 20 +minecraft:black_candle 73 48 51 20 58 38 40 20 36 24 25 20 29 19 20 20 +minecraft:black_candle[candles=1,lit=true,waterlogged=false] 73 48 51 20 58 38 40 20 36 24 25 20 29 19 20 20 +minecraft:black_candle[candles=1,lit=false,waterlogged=true] 38 36 57 20 30 28 45 20 19 18 28 20 15 14 22 20 +minecraft:black_candle[candles=1,lit=false,waterlogged=false] 38 36 57 20 30 28 45 20 19 18 28 20 15 14 22 20 +minecraft:black_candle[candles=2,lit=true,waterlogged=true] 73 48 51 20 58 38 40 20 36 24 25 20 29 19 20 20 +minecraft:black_candle[candles=2,lit=true,waterlogged=false] 73 48 51 20 58 38 40 20 36 24 25 20 29 19 20 20 +minecraft:black_candle[candles=2,lit=false,waterlogged=true] 38 36 57 20 30 28 45 20 19 18 28 20 15 14 22 20 +minecraft:black_candle[candles=2,lit=false,waterlogged=false] 38 36 57 20 30 28 45 20 19 18 28 20 15 14 22 20 +minecraft:black_candle[candles=3,lit=true,waterlogged=true] 73 48 51 20 58 38 40 20 36 24 25 20 29 19 20 20 +minecraft:black_candle[candles=3,lit=true,waterlogged=false] 73 48 51 20 58 38 40 20 36 24 25 20 29 19 20 20 +minecraft:black_candle[candles=3,lit=false,waterlogged=true] 38 36 57 20 30 28 45 20 19 18 28 20 15 14 22 20 +minecraft:black_candle[candles=3,lit=false,waterlogged=false] 38 36 57 20 30 28 45 20 19 18 28 20 15 14 22 20 +minecraft:black_candle[candles=4,lit=true,waterlogged=true] 73 48 51 20 58 38 40 20 36 24 25 20 29 19 20 20 +minecraft:black_candle[candles=4,lit=true,waterlogged=false] 73 48 51 20 58 38 40 20 36 24 25 20 29 19 20 20 +minecraft:black_candle[candles=4,lit=false,waterlogged=true] 38 36 57 20 30 28 45 20 19 18 28 20 15 14 22 20 +minecraft:black_candle[candles=4,lit=false,waterlogged=false] 38 36 57 20 30 28 45 20 19 18 28 20 15 14 22 20 +minecraft:candle_cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:candle_cake[lit=false] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:white_candle_cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:white_candle_cake[lit=false] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:orange_candle_cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:orange_candle_cake[lit=false] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:magenta_candle_cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:magenta_candle_cake[lit=false] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:light_blue_candle_cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:light_blue_candle_cake[lit=false] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:yellow_candle_cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:yellow_candle_cake[lit=false] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:lime_candle_cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:lime_candle_cake[lit=false] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:pink_candle_cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:pink_candle_cake[lit=false] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:gray_candle_cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:gray_candle_cake[lit=false] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:light_gray_candle_cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:light_gray_candle_cake[lit=false] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:cyan_candle_cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:cyan_candle_cake[lit=false] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:purple_candle_cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:purple_candle_cake[lit=false] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:blue_candle_cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:blue_candle_cake[lit=false] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:brown_candle_cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:brown_candle_cake[lit=false] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:green_candle_cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:green_candle_cake[lit=false] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:red_candle_cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:red_candle_cake[lit=false] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:black_candle_cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:black_candle_cake[lit=false] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:amethyst_block 133 97 191 255 106 77 152 255 66 48 95 255 53 38 76 255 +minecraft:budding_amethyst 132 96 186 255 105 76 148 255 66 48 93 255 52 38 74 255 +minecraft:amethyst_cluster 163 126 207 139 130 100 165 139 81 63 103 139 65 50 82 139 +minecraft:amethyst_cluster[facing=north,waterlogged=false] 163 126 207 139 130 100 165 139 81 63 103 139 65 50 82 139 +minecraft:amethyst_cluster[facing=east,waterlogged=true] 163 126 207 139 130 100 165 139 81 63 103 139 65 50 82 139 +minecraft:amethyst_cluster[facing=east,waterlogged=false] 163 126 207 139 130 100 165 139 81 63 103 139 65 50 82 139 +minecraft:amethyst_cluster[facing=south,waterlogged=true] 163 126 207 139 130 100 165 139 81 63 103 139 65 50 82 139 +minecraft:amethyst_cluster[facing=south,waterlogged=false] 163 126 207 139 130 100 165 139 81 63 103 139 65 50 82 139 +minecraft:amethyst_cluster[facing=west,waterlogged=true] 163 126 207 139 130 100 165 139 81 63 103 139 65 50 82 139 +minecraft:amethyst_cluster[facing=west,waterlogged=false] 163 126 207 139 130 100 165 139 81 63 103 139 65 50 82 139 +minecraft:amethyst_cluster[facing=up,waterlogged=true] 163 126 207 139 130 100 165 139 81 63 103 139 65 50 82 139 +minecraft:amethyst_cluster[facing=up,waterlogged=false] 163 126 207 139 130 100 165 139 81 63 103 139 65 50 82 139 +minecraft:amethyst_cluster[facing=down,waterlogged=true] 163 126 207 139 130 100 165 139 81 63 103 139 65 50 82 139 +minecraft:amethyst_cluster[facing=down,waterlogged=false] 163 126 207 139 130 100 165 139 81 63 103 139 65 50 82 139 +minecraft:large_amethyst_bud 161 126 202 77 128 100 161 77 80 63 101 77 64 50 80 77 +minecraft:large_amethyst_bud[facing=north,waterlogged=false] 161 126 202 77 128 100 161 77 80 63 101 77 64 50 80 77 +minecraft:large_amethyst_bud[facing=east,waterlogged=true] 161 126 202 77 128 100 161 77 80 63 101 77 64 50 80 77 +minecraft:large_amethyst_bud[facing=east,waterlogged=false] 161 126 202 77 128 100 161 77 80 63 101 77 64 50 80 77 +minecraft:large_amethyst_bud[facing=south,waterlogged=true] 161 126 202 77 128 100 161 77 80 63 101 77 64 50 80 77 +minecraft:large_amethyst_bud[facing=south,waterlogged=false] 161 126 202 77 128 100 161 77 80 63 101 77 64 50 80 77 +minecraft:large_amethyst_bud[facing=west,waterlogged=true] 161 126 202 77 128 100 161 77 80 63 101 77 64 50 80 77 +minecraft:large_amethyst_bud[facing=west,waterlogged=false] 161 126 202 77 128 100 161 77 80 63 101 77 64 50 80 77 +minecraft:large_amethyst_bud[facing=up,waterlogged=true] 161 126 202 77 128 100 161 77 80 63 101 77 64 50 80 77 +minecraft:large_amethyst_bud[facing=up,waterlogged=false] 161 126 202 77 128 100 161 77 80 63 101 77 64 50 80 77 +minecraft:large_amethyst_bud[facing=down,waterlogged=true] 161 126 202 77 128 100 161 77 80 63 101 77 64 50 80 77 +minecraft:large_amethyst_bud[facing=down,waterlogged=false] 161 126 202 77 128 100 161 77 80 63 101 77 64 50 80 77 +minecraft:medium_amethyst_bud 158 120 201 50 126 96 160 50 79 60 100 50 63 48 80 50 +minecraft:medium_amethyst_bud[facing=north,waterlogged=false] 158 120 201 50 126 96 160 50 79 60 100 50 63 48 80 50 +minecraft:medium_amethyst_bud[facing=east,waterlogged=true] 158 120 201 50 126 96 160 50 79 60 100 50 63 48 80 50 +minecraft:medium_amethyst_bud[facing=east,waterlogged=false] 158 120 201 50 126 96 160 50 79 60 100 50 63 48 80 50 +minecraft:medium_amethyst_bud[facing=south,waterlogged=true] 158 120 201 50 126 96 160 50 79 60 100 50 63 48 80 50 +minecraft:medium_amethyst_bud[facing=south,waterlogged=false] 158 120 201 50 126 96 160 50 79 60 100 50 63 48 80 50 +minecraft:medium_amethyst_bud[facing=west,waterlogged=true] 158 120 201 50 126 96 160 50 79 60 100 50 63 48 80 50 +minecraft:medium_amethyst_bud[facing=west,waterlogged=false] 158 120 201 50 126 96 160 50 79 60 100 50 63 48 80 50 +minecraft:medium_amethyst_bud[facing=up,waterlogged=true] 158 120 201 50 126 96 160 50 79 60 100 50 63 48 80 50 +minecraft:medium_amethyst_bud[facing=up,waterlogged=false] 158 120 201 50 126 96 160 50 79 60 100 50 63 48 80 50 +minecraft:medium_amethyst_bud[facing=down,waterlogged=true] 158 120 201 50 126 96 160 50 79 60 100 50 63 48 80 50 +minecraft:medium_amethyst_bud[facing=down,waterlogged=false] 158 120 201 50 126 96 160 50 79 60 100 50 63 48 80 50 +minecraft:small_amethyst_bud 131 99 192 31 104 79 153 31 65 49 96 31 52 39 76 31 +minecraft:small_amethyst_bud[facing=north,waterlogged=false] 131 99 192 31 104 79 153 31 65 49 96 31 52 39 76 31 +minecraft:small_amethyst_bud[facing=east,waterlogged=true] 131 99 192 31 104 79 153 31 65 49 96 31 52 39 76 31 +minecraft:small_amethyst_bud[facing=east,waterlogged=false] 131 99 192 31 104 79 153 31 65 49 96 31 52 39 76 31 +minecraft:small_amethyst_bud[facing=south,waterlogged=true] 131 99 192 31 104 79 153 31 65 49 96 31 52 39 76 31 +minecraft:small_amethyst_bud[facing=south,waterlogged=false] 131 99 192 31 104 79 153 31 65 49 96 31 52 39 76 31 +minecraft:small_amethyst_bud[facing=west,waterlogged=true] 131 99 192 31 104 79 153 31 65 49 96 31 52 39 76 31 +minecraft:small_amethyst_bud[facing=west,waterlogged=false] 131 99 192 31 104 79 153 31 65 49 96 31 52 39 76 31 +minecraft:small_amethyst_bud[facing=up,waterlogged=true] 131 99 192 31 104 79 153 31 65 49 96 31 52 39 76 31 +minecraft:small_amethyst_bud[facing=up,waterlogged=false] 131 99 192 31 104 79 153 31 65 49 96 31 52 39 76 31 +minecraft:small_amethyst_bud[facing=down,waterlogged=true] 131 99 192 31 104 79 153 31 65 49 96 31 52 39 76 31 +minecraft:small_amethyst_bud[facing=down,waterlogged=false] 131 99 192 31 104 79 153 31 65 49 96 31 52 39 76 31 +minecraft:tuff 108 109 102 255 86 87 81 255 54 54 51 255 43 43 40 255 +minecraft:calcite 223 224 220 255 178 179 176 255 111 112 110 255 89 89 88 255 +minecraft:tinted_glass 44 38 46 131 35 30 36 131 22 19 23 131 17 15 18 131 +minecraft:powder_snow 248 253 253 255 198 202 202 255 124 126 126 255 99 101 101 255 +minecraft:sculk_sensor 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 +minecraft:sculk_sensor[power=0,sculk_sensor_phase=inactive,waterlogged=false] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 +minecraft:sculk_sensor[power=0,sculk_sensor_phase=active,waterlogged=true] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 +minecraft:sculk_sensor[power=0,sculk_sensor_phase=active,waterlogged=false] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 +minecraft:sculk_sensor[power=0,sculk_sensor_phase=cooldown,waterlogged=true] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 +minecraft:sculk_sensor[power=0,sculk_sensor_phase=cooldown,waterlogged=false] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 +minecraft:sculk_sensor[power=1,sculk_sensor_phase=inactive,waterlogged=true] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 +minecraft:sculk_sensor[power=1,sculk_sensor_phase=inactive,waterlogged=false] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 +minecraft:sculk_sensor[power=1,sculk_sensor_phase=active,waterlogged=true] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 +minecraft:sculk_sensor[power=1,sculk_sensor_phase=active,waterlogged=false] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 +minecraft:sculk_sensor[power=1,sculk_sensor_phase=cooldown,waterlogged=true] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 +minecraft:sculk_sensor[power=1,sculk_sensor_phase=cooldown,waterlogged=false] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 +minecraft:sculk_sensor[power=2,sculk_sensor_phase=inactive,waterlogged=true] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 +minecraft:sculk_sensor[power=2,sculk_sensor_phase=inactive,waterlogged=false] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 +minecraft:sculk_sensor[power=2,sculk_sensor_phase=active,waterlogged=true] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 +minecraft:sculk_sensor[power=2,sculk_sensor_phase=active,waterlogged=false] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 +minecraft:oxidized_copper 82 162 132 255 65 129 105 255 41 81 66 255 32 64 52 255 +minecraft:weathered_copper 108 153 110 255 86 122 88 255 54 76 55 255 43 61 44 255 +minecraft:exposed_copper 161 125 103 255 128 100 82 255 80 62 51 255 64 50 41 255 +minecraft:copper_block 192 107 79 255 153 85 63 255 96 53 39 255 76 42 31 255 +minecraft:copper_ore 124 125 120 255 99 100 96 255 62 62 60 255 49 50 48 255 +minecraft:deepslate_copper_ore 92 93 89 255 73 74 71 255 46 46 44 255 36 37 35 255 +minecraft:oxidized_cut_copper 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:weathered_cut_copper 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:exposed_cut_copper 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:cut_copper 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:oxidized_cut_copper_stairs 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:weathered_cut_copper_stairs 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:exposed_cut_copper_stairs 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:cut_copper_stairs 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:oxidized_cut_copper_slab 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_slab[type=top,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_slab[type=bottom,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_slab[type=bottom,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_slab[type=double,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_slab[type=double,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:weathered_cut_copper_slab 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_slab[type=top,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_slab[type=bottom,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_slab[type=bottom,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_slab[type=double,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_slab[type=double,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:exposed_cut_copper_slab 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_slab[type=top,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_slab[type=bottom,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_slab[type=bottom,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_slab[type=double,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_slab[type=double,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:cut_copper_slab 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_slab[type=top,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_slab[type=bottom,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_slab[type=bottom,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_slab[type=double,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_slab[type=double,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_copper_block 192 107 79 255 153 85 63 255 96 53 39 255 76 42 31 255 +minecraft:waxed_weathered_copper 108 153 110 255 86 122 88 255 54 76 55 255 43 61 44 255 +minecraft:waxed_exposed_copper 161 125 103 255 128 100 82 255 80 62 51 255 64 50 41 255 +minecraft:waxed_oxidized_copper 82 162 132 255 65 129 105 255 41 81 66 255 32 64 52 255 +minecraft:waxed_oxidized_cut_copper 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_weathered_cut_copper 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_exposed_cut_copper 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_cut_copper 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_oxidized_cut_copper_stairs 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_weathered_cut_copper_stairs 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_exposed_cut_copper_stairs 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_cut_copper_stairs 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_oxidized_cut_copper_slab 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_slab[type=top,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_slab[type=bottom,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_slab[type=bottom,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_slab[type=double,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_slab[type=double,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_weathered_cut_copper_slab 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_slab[type=top,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_slab[type=bottom,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_slab[type=bottom,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_slab[type=double,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_slab[type=double,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_exposed_cut_copper_slab 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_slab[type=top,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_slab[type=bottom,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_slab[type=bottom,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_slab[type=double,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_slab[type=double,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_cut_copper_slab 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_slab[type=top,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_slab[type=bottom,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_slab[type=bottom,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_slab[type=double,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_slab[type=double,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:pointed_dripstone 138 111 95 85 110 88 76 85 69 55 47 85 55 44 38 85 +minecraft:pointed_dripstone[thickness=tip_merge,vertical_direction=up,waterlogged=false] 138 111 95 85 110 88 76 85 69 55 47 85 55 44 38 85 +minecraft:pointed_dripstone[thickness=tip_merge,vertical_direction=down,waterlogged=true] 138 111 95 85 110 88 76 85 69 55 47 85 55 44 38 85 +minecraft:pointed_dripstone[thickness=tip_merge,vertical_direction=down,waterlogged=false] 138 111 95 85 110 88 76 85 69 55 47 85 55 44 38 85 +minecraft:pointed_dripstone[thickness=tip,vertical_direction=up,waterlogged=true] 136 109 93 52 108 87 74 52 68 54 46 52 54 43 37 52 +minecraft:pointed_dripstone[thickness=tip,vertical_direction=up,waterlogged=false] 136 109 93 52 108 87 74 52 68 54 46 52 54 43 37 52 +minecraft:pointed_dripstone[thickness=tip,vertical_direction=down,waterlogged=true] 136 109 93 52 108 87 74 52 68 54 46 52 54 43 37 52 +minecraft:pointed_dripstone[thickness=tip,vertical_direction=down,waterlogged=false] 136 109 93 52 108 87 74 52 68 54 46 52 54 43 37 52 +minecraft:pointed_dripstone[thickness=frustum,vertical_direction=up,waterlogged=true] 128 102 89 165 102 81 71 165 64 51 44 165 51 40 35 165 +minecraft:pointed_dripstone[thickness=frustum,vertical_direction=up,waterlogged=false] 128 102 89 165 102 81 71 165 64 51 44 165 51 40 35 165 +minecraft:pointed_dripstone[thickness=frustum,vertical_direction=down,waterlogged=true] 128 102 89 165 102 81 71 165 64 51 44 165 51 40 35 165 +minecraft:pointed_dripstone[thickness=frustum,vertical_direction=down,waterlogged=false] 128 102 89 165 102 81 71 165 64 51 44 165 51 40 35 165 +minecraft:pointed_dripstone[thickness=middle,vertical_direction=up,waterlogged=true] 130 103 90 185 104 82 72 185 65 51 45 185 52 41 36 185 +minecraft:pointed_dripstone[thickness=middle,vertical_direction=up,waterlogged=false] 130 103 90 185 104 82 72 185 65 51 45 185 52 41 36 185 +minecraft:pointed_dripstone[thickness=middle,vertical_direction=down,waterlogged=true] 130 103 90 185 104 82 72 185 65 51 45 185 52 41 36 185 +minecraft:pointed_dripstone[thickness=middle,vertical_direction=down,waterlogged=false] 130 103 90 185 104 82 72 185 65 51 45 185 52 41 36 185 +minecraft:pointed_dripstone[thickness=base,vertical_direction=up,waterlogged=true] 129 102 89 229 103 81 71 229 64 51 44 229 51 40 35 229 +minecraft:pointed_dripstone[thickness=base,vertical_direction=up,waterlogged=false] 129 102 89 229 103 81 71 229 64 51 44 229 51 40 35 229 +minecraft:pointed_dripstone[thickness=base,vertical_direction=down,waterlogged=true] 129 102 89 229 103 81 71 229 64 51 44 229 51 40 35 229 +minecraft:pointed_dripstone[thickness=base,vertical_direction=down,waterlogged=false] 129 102 89 229 103 81 71 229 64 51 44 229 51 40 35 229 +minecraft:dripstone_block 134 107 92 255 107 85 73 255 67 53 46 255 53 42 36 255 +minecraft:cave_vines 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=0,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=1,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=1,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=2,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=2,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=3,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=3,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=4,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=4,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=5,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=5,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=6,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=6,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=7,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=7,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=8,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=8,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=9,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=9,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=10,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=10,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=11,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=11,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=12,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=12,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=13,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=13,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=14,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=14,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=15,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=15,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=16,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=16,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=17,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=17,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=18,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=18,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=19,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=19,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=20,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=20,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=21,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=21,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=22,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=22,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=23,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=23,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=24,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=24,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=25,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=25,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines_plant 105 107 40 159 84 85 32 159 52 53 20 159 42 42 16 159 +minecraft:cave_vines_plant[berries=false] 88 101 38 143 70 80 30 143 44 50 19 143 35 40 15 143 +minecraft:spore_blossom 206 96 158 123 164 76 126 123 103 48 79 123 82 38 63 123 +minecraft:azalea 93 117 45 153 74 93 36 153 46 58 22 153 37 46 18 153 +minecraft:flowering_azalea 111 113 73 153 88 90 58 153 55 56 36 153 44 45 29 153 +minecraft:moss_carpet 89 109 45 255 71 87 36 255 44 54 22 255 35 43 18 255 +minecraft:moss_block 89 109 45 255 71 87 36 255 44 54 22 255 35 43 18 255 +minecraft:big_dripleaf_stem 91 115 45 83 72 92 36 83 45 57 22 83 36 46 18 83 +minecraft:big_dripleaf_stem[facing=north,waterlogged=false] 91 115 45 83 72 92 36 83 45 57 22 83 36 46 18 83 +minecraft:big_dripleaf_stem[facing=south,waterlogged=true] 91 115 45 83 72 92 36 83 45 57 22 83 36 46 18 83 +minecraft:big_dripleaf_stem[facing=south,waterlogged=false] 91 115 45 83 72 92 36 83 45 57 22 83 36 46 18 83 +minecraft:big_dripleaf_stem[facing=west,waterlogged=true] 91 115 45 83 72 92 36 83 45 57 22 83 36 46 18 83 +minecraft:big_dripleaf_stem[facing=west,waterlogged=false] 91 115 45 83 72 92 36 83 45 57 22 83 36 46 18 83 +minecraft:big_dripleaf_stem[facing=east,waterlogged=true] 91 115 45 83 72 92 36 83 45 57 22 83 36 46 18 83 +minecraft:big_dripleaf_stem[facing=east,waterlogged=false] 91 115 45 83 72 92 36 83 45 57 22 83 36 46 18 83 +minecraft:small_dripleaf 94 119 45 63 75 95 36 63 47 59 22 63 37 47 18 63 +minecraft:small_dripleaf[facing=north,half=upper,waterlogged=false] 94 119 45 63 75 95 36 63 47 59 22 63 37 47 18 63 +minecraft:small_dripleaf[facing=north,half=lower,waterlogged=true] 94 122 45 42 75 97 36 42 47 61 22 42 37 48 18 42 +minecraft:small_dripleaf[facing=north,half=lower,waterlogged=false] 94 122 45 42 75 97 36 42 47 61 22 42 37 48 18 42 +minecraft:small_dripleaf[facing=south,half=upper,waterlogged=true] 94 119 45 63 75 95 36 63 47 59 22 63 37 47 18 63 +minecraft:small_dripleaf[facing=south,half=upper,waterlogged=false] 94 119 45 63 75 95 36 63 47 59 22 63 37 47 18 63 +minecraft:small_dripleaf[facing=south,half=lower,waterlogged=true] 94 122 45 42 75 97 36 42 47 61 22 42 37 48 18 42 +minecraft:small_dripleaf[facing=south,half=lower,waterlogged=false] 94 122 45 42 75 97 36 42 47 61 22 42 37 48 18 42 +minecraft:small_dripleaf[facing=west,half=upper,waterlogged=true] 94 119 45 63 75 95 36 63 47 59 22 63 37 47 18 63 +minecraft:small_dripleaf[facing=west,half=upper,waterlogged=false] 94 119 45 63 75 95 36 63 47 59 22 63 37 47 18 63 +minecraft:small_dripleaf[facing=west,half=lower,waterlogged=true] 94 122 45 42 75 97 36 42 47 61 22 42 37 48 18 42 +minecraft:small_dripleaf[facing=west,half=lower,waterlogged=false] 94 122 45 42 75 97 36 42 47 61 22 42 37 48 18 42 +minecraft:small_dripleaf[facing=east,half=upper,waterlogged=true] 94 119 45 63 75 95 36 63 47 59 22 63 37 47 18 63 +minecraft:small_dripleaf[facing=east,half=upper,waterlogged=false] 94 119 45 63 75 95 36 63 47 59 22 63 37 47 18 63 +minecraft:small_dripleaf[facing=east,half=lower,waterlogged=true] 94 122 45 42 75 97 36 42 47 61 22 42 37 48 18 42 +minecraft:small_dripleaf[facing=east,half=lower,waterlogged=false] 94 122 45 42 75 97 36 42 47 61 22 42 37 48 18 42 +minecraft:hanging_roots 161 115 91 74 128 92 72 74 80 57 45 74 64 46 36 74 +minecraft:hanging_roots[waterlogged=false] 161 115 91 74 128 92 72 74 80 57 45 74 64 46 36 74 +minecraft:rooted_dirt 144 103 76 255 115 82 60 255 72 51 38 255 57 41 30 255 +minecraft:deepslate 80 80 82 255 64 64 65 255 40 40 41 255 32 32 32 255 +minecraft:deepslate[axis=y] 87 87 89 255 69 69 71 255 43 43 44 255 34 34 35 255 +minecraft:deepslate[axis=z] 80 80 82 255 64 64 65 255 40 40 41 255 32 32 32 255 +minecraft:cobbled_deepslate 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=straight,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=straight,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=straight,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=straight,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=straight,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=straight,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=straight,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_slab 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_slab[type=top,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_slab[type=bottom,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_slab[type=bottom,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_slab[type=double,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_slab[type=double,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:polished_deepslate 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=north,half=top,shape=straight,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=south,half=top,shape=straight,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=south,half=top,shape=straight,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=west,half=top,shape=straight,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=west,half=top,shape=straight,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=east,half=top,shape=straight,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=east,half=top,shape=straight,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_slab 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_slab[type=top,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_slab[type=bottom,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_slab[type=bottom,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_slab[type=double,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_slab[type=double,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:deepslate_tiles 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=north,half=top,shape=straight,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=south,half=top,shape=straight,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=south,half=top,shape=straight,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=west,half=top,shape=straight,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=west,half=top,shape=straight,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=east,half=top,shape=straight,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=east,half=top,shape=straight,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_slab 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_slab[type=top,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_slab[type=bottom,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_slab[type=bottom,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_slab[type=double,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_slab[type=double,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_bricks 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_slab 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_slab[type=top,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_slab[type=bottom,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_slab[type=bottom,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_slab[type=double,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_slab[type=double,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:chiseled_deepslate 54 54 54 255 43 43 43 255 27 27 27 255 21 21 21 255 +minecraft:cracked_deepslate_bricks 64 64 65 255 51 51 52 255 32 32 32 255 25 25 26 255 +minecraft:cracked_deepslate_tiles 52 52 52 255 41 41 41 255 26 26 26 255 20 20 20 255 +minecraft:infested_deepslate 80 80 82 255 64 64 65 255 40 40 41 255 32 32 32 255 +minecraft:infested_deepslate[axis=y] 87 87 89 255 69 69 71 255 43 43 44 255 34 34 35 255 +minecraft:infested_deepslate[axis=z] 80 80 82 255 64 64 65 255 40 40 41 255 32 32 32 255 +minecraft:smooth_basalt 72 72 78 255 57 57 62 255 36 36 39 255 28 28 31 255 +minecraft:raw_iron_block 166 135 107 255 132 108 85 255 83 67 53 255 66 54 42 255 +minecraft:raw_copper_block 154 105 79 255 123 84 63 255 77 52 39 255 61 42 31 255 +minecraft:raw_gold_block 221 169 46 255 176 135 36 255 110 84 23 255 88 67 18 255 diff --git a/DynmapCore/src/main/resources/extracted/colorschemes/biome_rainfall_temp.txt b/DynmapCore/src/main/resources/extracted/colorschemes/biome_rainfall_temp.txt new file mode 100644 index 00000000..a34c23ab --- /dev/null +++ b/DynmapCore/src/main/resources/extracted/colorschemes/biome_rainfall_temp.txt @@ -0,0 +1,108 @@ +Biome Mapping +[OCEAN] 0 0 112 255 0 0 112 255 0 0 112 255 0 0 112 255 +[PLAINS] 141 179 96 255 141 179 96 255 141 179 96 255 141 179 96 255 +[DESERT] 250 148 24 255 250 148 24 255 250 148 24 255 250 148 24 255 +[EXTREME_HILLS] 96 96 96 255 96 96 96 255 96 96 96 255 96 96 96 255 +[FOREST] 5 102 33 255 5 102 33 255 5 102 33 255 5 102 33 255 +[TAIGA] 11 102 89 255 11 102 89 255 11 102 89 255 11 102 89 255 +[SWAMPLAND] 7 249 178 255 7 249 178 255 7 249 178 255 7 249 178 255 +[RIVER] 0 0 255 255 0 0 255 255 0 0 255 255 0 0 255 255 +[HELL] 191 59 59 255 191 59 59 255 191 59 59 255 191 59 59 255 +[SKY] 128 128 255 255 128 128 255 255 128 128 255 255 128 128 255 255 +[FROZEN_OCEAN] 112 112 214 255 112 112 214 255 112 112 214 255 112 112 214 255 +[FROZEN_RIVER] 160 160 255 255 160 160 255 255 160 160 255 255 160 160 255 255 +[ICE_PLAINS] 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 +[ICE_MOUNTAINS] 160 160 160 255 160 160 160 255 160 160 160 255 160 160 160 255 +[MUSHROOM_ISLAND] 255 0 255 255 255 0 255 255 255 0 255 255 255 0 255 255 +[MUSHROOM_SHORE] 160 0 255 255 160 0 255 255 160 0 255 255 160 0 255 255 +[BEACH] 250 222 85 255 250 222 85 255 250 222 85 255 250 222 85 255 +[DESERT_HILLS] 210 95 18 255 210 95 18 255 210 95 18 255 210 95 18 255 +[FOREST_HILLS] 34 85 28 255 34 85 28 255 34 85 28 255 34 85 28 255 +[TAIGA_HILLS] 22 57 51 255 22 57 51 255 22 57 51 255 22 57 51 255 +[SMALL_MOUNTAINS] 114 120 154 255 114 120 154 255 114 120 154 255 114 120 154 255 +[JUNGLE] 83 123 9 255 83 123 9 255 83 123 9 255 83 123 9 255 +[JUNGLE_HILLS] 44 66 5 255 44 66 5 255 44 66 5 255 44 66 5 255 +[JUNGLE_EDGE] 98 139 23 255 98 139 23 255 98 139 23 255 98 139 23 255 +[DEEP_OCEAN] 0 0 48 255 0 0 48 255 0 0 48 255 0 0 48 255 +[STONE_BEACH] 162 162 132 255 162 162 132 255 162 162 132 255 162 162 132 255 +[COLD_BEACH] 250 240 192 255 250 240 192 255 250 240 192 255 250 240 192 255 +[BIRCH_FOREST] 48 116 68 255 48 116 68 255 48 116 68 255 48 116 68 255 +[BIRCH_FOREST_HILLS] 31 95 50 255 31 95 50 255 31 95 50 255 31 95 50 255 +[ROOFED_FOREST] 64 81 26 255 64 81 26 255 64 81 26 255 64 81 26 255 +[COLD_TAIGA] 49 85 74 255 49 85 74 255 49 85 74 255 49 85 74 255 +[COLD_TAIGA_HILLS] 36 63 54 255 36 63 54 255 36 63 54 255 36 63 54 255 +[MEGA_TAIGA] 89 102 81 255 89 102 81 255 89 102 81 255 89 102 81 255 +[MEGA_TAIGA_HILLS] 69 79 62 255 69 79 62 255 69 79 62 255 69 79 62 255 +[EXTREME_HILLS_PLUS] 80 112 80 255 80 112 80 255 80 112 80 255 80 112 80 255 +[SAVANNA] 189 178 95 255 189 178 95 255 189 178 95 255 189 178 95 255 +[SAVANNA_PLATEAU] 167 157 100 255 167 157 100 255 167 157 100 255 167 157 100 255 +[MESA] 217 69 21 255 217 69 21 255 217 69 21 255 217 69 21 255 +[MESA_PLATEAU_FOREST] 176 151 101 255 176 151 101 255 176 151 101 255 176 151 101 255 +[MESA_PLATEAU] 202 140 101 255 202 140 101 255 202 140 101 255 202 140 101 255 +[SMALL_END_ISLANDS] 128 128 255 255 128 128 255 255 128 128 255 255 128 128 255 255 +[END_MIDLANDS] 128 128 255 255 128 128 255 255 128 128 255 255 128 128 255 255 +[END_HIGHLANDS] 128 128 255 255 128 128 255 255 128 128 255 255 128 128 255 255 +[END_BARRENS] 128 128 255 255 128 128 255 255 128 128 255 255 128 128 255 255 +[WARM_OCEAN] 0 0 172 255 0 0 172 255 0 0 172 255 0 0 172 255 +[LUKEWARM_OCEAN] 0 0 144 255 0 0 144 255 0 0 144 255 0 0 144 255 +[COLD_OCEAN] 32 32 112 255 32 32 112 255 32 32 112 255 32 32 112 255 +[DEEP_WARM_OCEAN] 0 0 80 255 0 0 80 255 0 0 80 255 0 0 80 255 +[DEEP_LUKEWARM_OCEAN] 0 0 64 255 0 0 64 255 0 0 64 255 0 0 64 255 +[DEEP_COLD_OCEAN] 32 32 56 255 32 32 56 255 32 32 56 255 32 32 56 255 +[DEEP_FROZEN_OCEAN] 64 64 144 255 64 64 144 255 64 64 144 255 64 64 144 255 +[THE_VOID] 0 0 0 255 0 0 0 255 0 0 0 255 0 0 0 255 +[SUNFLOWER_PLAINS] 181 219 136 255 181 219 136 255 181 219 136 255 181 219 136 255 +[DESERT_MOUNTAINS] 255 188 64 255 255 188 64 255 255 188 64 255 255 188 64 255 +[EXTREME_HILLS_MOUNTAINS] 136 136 136 255 136 136 136 255 136 136 136 255 136 136 136 255 +[FLOWER_FOREST] 45 142 73 255 45 142 73 255 45 142 73 255 45 142 73 255 +[TAIGA_MOUNTAINS] 51 142 129 255 51 142 129 255 51 142 129 255 51 142 129 255 +[SWAMPLAND_MOUNTAINS] 47 255 218 255 47 255 218 255 47 255 218 255 47 255 218 255 +[ICE_PLAINS_SPIKES] 180 220 220 255 180 220 220 255 180 220 220 255 180 220 220 255 +[JUNGLE_MOUNTAINS] 123 163 49 255 123 163 49 255 123 163 49 255 123 163 49 255 +[JUNGLE_EDGE_MOUNTAINS] 138 179 63 255 138 179 63 255 138 179 63 255 138 179 63 255 +[BIRCH_FOREST_MOUNTAINS] 88 156 108 255 88 156 108 255 88 156 108 255 88 156 108 255 +[BIRCH_FOREST_HILLS_MOUNTAINS] 71 135 90 255 71 135 90 255 71 135 90 255 71 135 90 255 +[ROOFED_FOREST_MOUNTAINS] 104 121 66 255 104 121 66 255 104 121 66 255 104 121 66 255 +[COLD_TAIGA_MOUNTAINS] 89 125 114 255 89 125 114 255 89 125 114 255 89 125 114 255 +[MEGA_SPRUCE_TAIGA] 129 142 121 255 129 142 121 255 129 142 121 255 129 142 121 255 +[MEGA_SPRUCE_TAIGA_HILLS] 109 119 102 255 109 119 102 255 109 119 102 255 109 119 102 255 +[EXTREME_HILLS_PLUS_MOUNTAINS] 120 152 120 255 120 152 120 255 120 152 120 255 120 152 120 255 +[SAVANNA_MOUNTAINS] 229 218 135 255 229 218 135 255 229 218 135 255 229 218 135 255 +[SAVANNA_PLATEAU_MOUNTAINS] 207 197 140 255 207 197 140 255 207 197 140 255 207 197 140 255 +[MESA_BRYCE] 255 109 61 255 255 109 61 255 255 109 61 255 255 109 61 255 +[MESA_PLATEAU_FOREST_MOUNTAINS] 216 191 141 255 216 191 141 255 216 191 141 255 216 191 141 255 +[MESA_PLATEAU_MOUNTAINS] 242 180 141 255 242 180 141 255 242 180 141 255 242 180 141 255 +[BEACH_MOUNTAINS] 255 255 125 255 255 255 125 255 255 255 125 255 255 255 125 255 +[COLD_BEACH_MOUNTAINS] 255 255 232 255 255 255 232 255 255 255 232 255 255 255 232 255 +[COLD_TAIGA_HILLS_MOUNTAINS] 76 103 94 255 76 103 94 255 76 103 94 255 76 103 94 255 +[DEEP_OCEAN_MOUNTAINS] 40 40 88 255 40 40 88 255 40 40 88 255 40 40 88 255 +[DESERT_HILLS_MOUNTAINS] 250 135 58 255 250 135 58 255 250 135 58 255 250 135 58 255 +[EXTREME_HILLS_EDGE_MOUNTAINS] 154 160 194 255 154 160 194 255 154 160 194 255 154 160 194 255 +[FOREST_HILLS_MOUNTAINS] 74 125 68 255 74 125 68 255 74 125 68 255 74 125 68 255 +[FROZEN_OCEAN_MOUNTAINS] 184 184 200 255 184 184 200 255 184 184 200 255 184 184 200 255 +[FROZEN_RIVER_MOUNTAINS] 200 200 255 255 200 200 255 255 200 200 255 255 200 200 255 255 +[HELL_MOUNTAINS] 255 40 40 255 255 40 40 255 255 40 40 255 255 40 40 255 +[ICE_MOUNTAINS_MOUNTAINS] 200 200 200 255 200 200 200 255 200 200 200 255 200 200 200 255 +[JUNGLE_HILLS_MOUNTAINS] 84 106 45 255 84 106 45 255 84 106 45 255 84 106 45 255 +[MUSHROOM_ISLAND_MOUNTAINS] 255 40 255 255 255 40 255 255 255 40 255 255 255 40 255 255 +[MUSHROOM_SHORE_MOUNTAINS] 200 40 255 255 200 40 255 255 200 40 255 255 200 40 255 255 +[OCEAN_MOUNTAINS] 40 40 152 255 40 40 152 255 40 40 152 255 40 40 152 255 +[RIVER_MOUNTAINS] 40 40 255 255 40 40 255 255 40 40 255 255 40 40 255 255 +[SKY_MOUNTAINS] 168 168 255 255 168 168 255 255 168 168 255 255 168 168 255 255 +[STONE_BEACH_MOUNTAINS] 202 202 172 255 202 202 172 255 202 202 172 255 202 202 172 255 +[TAIGA_HILLS_MOUNTAINS] 62 97 91 255 62 97 91 255 62 97 91 255 62 97 91 255 +[BAMBOO_JUNGLE] 118 142 20 255 118 142 20 255 118 142 20 255 118 142 20 255 +[BAMBOO_JUNGLE_HILLS] 59 71 10 255 59 71 10 255 59 71 10 255 59 71 10 255 +[SOUL_SAND_VALLEY] 82 41 33 255 82 41 33 255 82 41 33 255 82 41 33 255 +[CRIMSON_FOREST] 221 8 8 255 221 8 8 255 221 8 8 255 221 8 8 255 +[WARPED_FOREST] 73 144 123 255 73 144 123 255 73 144 123 255 73 144 123 255 +[BASALT_DELTAS] 64 54 54 255 64 54 54 255 64 54 54 255 64 54 54 255 +Rainfall/Temperature Mapping +[RAINFALL-0.0] 120 120 120 255 96 96 96 255 60 60 60 255 48 48 48 255 +[RAINFALL-1.0] 38 92 255 255 30 73 204 255 19 46 127 255 15 36 102 255 +[TEMPERATURE-0.0] 38 92 255 255 30 73 204 255 19 46 127 255 15 36 102 255 +[TEMPERATURE-0.5] 91 121 185 255 73 96 147 255 46 61 92 255 36 48 73 255 +[TEMPERATURE-0.8] 51 165 42 255 41 131 33 255 26 82 21 255 20 65 17 255 +[TEMPERATURE-0.9] 170 158 24 255 135 126 19 255 85 79 12 255 67 62 10 255 +[TEMPERATURE-0.95] 204 111 48 255 162 89 38 255 102 56 24 255 81 44 19 255 +[TEMPERATURE-1.0] 143 39 36 255 114 31 28 255 71 20 18 \ No newline at end of file diff --git a/DynmapCore/src/main/resources/extracted/colorschemes/default.txt b/DynmapCore/src/main/resources/extracted/colorschemes/default.txt index 10349513..96c3a570 100644 --- a/DynmapCore/src/main/resources/extracted/colorschemes/default.txt +++ b/DynmapCore/src/main/resources/extracted/colorschemes/default.txt @@ -31,7 +31,22 @@ minecraft:acacia_sapling[stage=1] 118 117 23 110 94 93 18 110 59 58 11 110 47 46 minecraft:dark_oak_sapling 61 90 30 109 48 72 24 109 30 45 15 109 24 36 12 109 minecraft:dark_oak_sapling[stage=1] 61 90 30 109 48 72 24 109 30 45 15 109 24 36 12 109 minecraft:bedrock 85 85 85 255 68 68 68 255 42 42 42 255 34 34 34 255 -minecraft:water 47 67 244 179 37 53 195 179 23 33 122 179 18 26 97 179 +minecraft:water 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=1] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=2] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=3] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=4] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=5] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=6] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=7] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=8] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=9] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=10] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=11] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=12] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=13] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=14] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=15] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 minecraft:lava 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 minecraft:lava[level=1] 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 minecraft:lava[level=2] 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 @@ -1111,18 +1126,18 @@ minecraft:detector_rail[powered=false,shape=ascending_north,waterlogged=true] 12 minecraft:detector_rail[powered=false,shape=ascending_north,waterlogged=false] 123 104 90 155 98 83 72 155 61 52 45 155 49 41 36 155 minecraft:detector_rail[powered=false,shape=ascending_south,waterlogged=true] 123 104 90 155 98 83 72 155 61 52 45 155 49 41 36 155 minecraft:detector_rail[powered=false,shape=ascending_south,waterlogged=false] 123 104 90 155 98 83 72 155 61 52 45 155 49 41 36 155 -minecraft:sticky_piston 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 -minecraft:sticky_piston[extended=true,facing=east] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 -minecraft:sticky_piston[extended=true,facing=south] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 -minecraft:sticky_piston[extended=true,facing=west] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 -minecraft:sticky_piston[extended=true,facing=up] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 -minecraft:sticky_piston[extended=true,facing=down] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 -minecraft:sticky_piston[extended=false,facing=north] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 -minecraft:sticky_piston[extended=false,facing=east] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 -minecraft:sticky_piston[extended=false,facing=south] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 -minecraft:sticky_piston[extended=false,facing=west] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 -minecraft:sticky_piston[extended=false,facing=up] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 -minecraft:sticky_piston[extended=false,facing=down] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 +minecraft:sticky_piston 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:sticky_piston[extended=true,facing=east] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:sticky_piston[extended=true,facing=south] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:sticky_piston[extended=true,facing=west] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:sticky_piston[extended=true,facing=up] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:sticky_piston[extended=true,facing=down] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:sticky_piston[extended=false,facing=north] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:sticky_piston[extended=false,facing=east] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:sticky_piston[extended=false,facing=south] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:sticky_piston[extended=false,facing=west] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:sticky_piston[extended=false,facing=up] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:sticky_piston[extended=false,facing=down] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 minecraft:cobweb 228 233 234 104 182 186 187 104 114 116 117 104 91 93 93 104 minecraft:grass 68 109 51 139 54 87 40 139 34 54 25 139 27 43 20 139 minecraft:fern 58 93 43 88 46 74 34 88 29 46 21 88 23 37 17 88 @@ -1130,42 +1145,42 @@ minecraft:dead_bush 107 78 40 77 85 62 32 77 53 39 20 77 42 31 16 77 minecraft:seagrass 24 94 2 76 19 75 1 76 12 47 1 76 9 37 0 76 minecraft:tall_seagrass 27 103 4 72 21 82 3 72 13 51 2 72 10 41 1 72 minecraft:tall_seagrass[half=lower] 21 88 1 141 16 70 0 141 10 44 0 141 8 35 0 141 -minecraft:piston 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 -minecraft:piston[extended=true,facing=east] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 -minecraft:piston[extended=true,facing=south] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 -minecraft:piston[extended=true,facing=west] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 -minecraft:piston[extended=true,facing=up] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 -minecraft:piston[extended=true,facing=down] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 -minecraft:piston[extended=false,facing=north] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 -minecraft:piston[extended=false,facing=east] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 -minecraft:piston[extended=false,facing=south] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 -minecraft:piston[extended=false,facing=west] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 -minecraft:piston[extended=false,facing=up] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 -minecraft:piston[extended=false,facing=down] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 -minecraft:piston_head 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 -minecraft:piston_head[facing=north,short=true,type=sticky] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 -minecraft:piston_head[facing=north,short=false,type=normal] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 -minecraft:piston_head[facing=north,short=false,type=sticky] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 -minecraft:piston_head[facing=east,short=true,type=normal] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 -minecraft:piston_head[facing=east,short=true,type=sticky] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 -minecraft:piston_head[facing=east,short=false,type=normal] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 -minecraft:piston_head[facing=east,short=false,type=sticky] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 -minecraft:piston_head[facing=south,short=true,type=normal] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 -minecraft:piston_head[facing=south,short=true,type=sticky] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 -minecraft:piston_head[facing=south,short=false,type=normal] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 -minecraft:piston_head[facing=south,short=false,type=sticky] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 -minecraft:piston_head[facing=west,short=true,type=normal] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 -minecraft:piston_head[facing=west,short=true,type=sticky] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 -minecraft:piston_head[facing=west,short=false,type=normal] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 -minecraft:piston_head[facing=west,short=false,type=sticky] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 -minecraft:piston_head[facing=up,short=true,type=normal] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 -minecraft:piston_head[facing=up,short=true,type=sticky] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 -minecraft:piston_head[facing=up,short=false,type=normal] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 -minecraft:piston_head[facing=up,short=false,type=sticky] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 -minecraft:piston_head[facing=down,short=true,type=normal] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 -minecraft:piston_head[facing=down,short=true,type=sticky] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 -minecraft:piston_head[facing=down,short=false,type=normal] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 -minecraft:piston_head[facing=down,short=false,type=sticky] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 +minecraft:piston 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:piston[extended=true,facing=east] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:piston[extended=true,facing=south] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:piston[extended=true,facing=west] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:piston[extended=true,facing=up] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:piston[extended=true,facing=down] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:piston[extended=false,facing=north] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:piston[extended=false,facing=east] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:piston[extended=false,facing=south] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:piston[extended=false,facing=west] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:piston[extended=false,facing=up] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:piston[extended=false,facing=down] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:piston_head 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=north,short=true,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=north,short=false,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=north,short=false,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=east,short=true,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=east,short=true,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=east,short=false,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=east,short=false,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=south,short=true,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=south,short=true,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=south,short=false,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=south,short=false,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=west,short=true,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=west,short=true,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=west,short=false,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=west,short=false,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=up,short=true,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=up,short=true,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=up,short=false,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=up,short=false,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=down,short=true,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=down,short=true,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=down,short=false,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=down,short=false,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 minecraft:white_wool 233 236 236 255 186 188 188 255 116 118 118 255 93 94 94 255 minecraft:orange_wool 240 118 19 255 192 94 15 255 120 59 9 255 96 47 7 255 minecraft:magenta_wool 189 68 179 255 151 54 143 255 94 34 89 255 75 27 71 255 @@ -5065,14 +5080,14 @@ minecraft:powder_snow_cauldron 73 72 74 155 58 57 59 155 36 36 37 155 29 28 29 1 minecraft:powder_snow_cauldron[level=2] 73 72 74 155 58 57 59 155 36 36 37 155 29 28 29 155 minecraft:powder_snow_cauldron[level=3] 73 72 74 155 58 57 59 155 36 36 37 155 29 28 29 155 minecraft:end_portal 117 90 156 255 93 72 124 255 58 45 78 255 46 36 62 255 -minecraft:end_portal_frame 91 120 97 255 72 96 77 255 45 60 48 255 36 48 38 255 -minecraft:end_portal_frame[eye=true,facing=south] 91 120 97 255 72 96 77 255 45 60 48 255 36 48 38 255 -minecraft:end_portal_frame[eye=true,facing=west] 91 120 97 255 72 96 77 255 45 60 48 255 36 48 38 255 -minecraft:end_portal_frame[eye=true,facing=east] 91 120 97 255 72 96 77 255 45 60 48 255 36 48 38 255 -minecraft:end_portal_frame[eye=false,facing=north] 35 70 62 95 28 56 49 95 17 35 31 95 14 28 24 95 -minecraft:end_portal_frame[eye=false,facing=south] 35 70 62 95 28 56 49 95 17 35 31 95 14 28 24 95 -minecraft:end_portal_frame[eye=false,facing=west] 35 70 62 95 28 56 49 95 17 35 31 95 14 28 24 95 -minecraft:end_portal_frame[eye=false,facing=east] 35 70 62 95 28 56 49 95 17 35 31 95 14 28 24 95 +minecraft:end_portal_frame 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255 +minecraft:end_portal_frame[eye=true,facing=south] 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255 +minecraft:end_portal_frame[eye=true,facing=west] 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255 +minecraft:end_portal_frame[eye=true,facing=east] 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255 +minecraft:end_portal_frame[eye=false,facing=north] 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255 +minecraft:end_portal_frame[eye=false,facing=south] 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255 +minecraft:end_portal_frame[eye=false,facing=west] 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255 +minecraft:end_portal_frame[eye=false,facing=east] 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255 minecraft:end_stone 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255 minecraft:dragon_egg 12 9 15 255 9 7 12 255 6 4 7 255 4 3 6 255 minecraft:redstone_lamp 142 101 60 255 113 80 48 255 71 50 30 255 56 40 24 255 @@ -14684,14 +14699,14 @@ minecraft:bell[attachment=double_wall,facing=west,powered=true] 252 229 96 57 20 minecraft:bell[attachment=double_wall,facing=west,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 minecraft:bell[attachment=double_wall,facing=east,powered=true] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 minecraft:bell[attachment=double_wall,facing=east,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 -minecraft:lantern 146 113 83 55 116 90 66 55 73 56 41 55 58 45 33 55 -minecraft:lantern[hanging=true,waterlogged=false] 146 113 83 55 116 90 66 55 73 56 41 55 58 45 33 55 -minecraft:lantern[hanging=false,waterlogged=true] 146 113 83 55 116 90 66 55 73 56 41 55 58 45 33 55 -minecraft:lantern[hanging=false,waterlogged=false] 146 113 83 55 116 90 66 55 73 56 41 55 58 45 33 55 -minecraft:soul_lantern 78 125 139 55 62 100 111 55 39 62 69 55 31 50 55 55 -minecraft:soul_lantern[hanging=true,waterlogged=false] 78 125 139 55 62 100 111 55 39 62 69 55 31 50 55 55 -minecraft:soul_lantern[hanging=false,waterlogged=true] 78 125 139 55 62 100 111 55 39 62 69 55 31 50 55 55 -minecraft:soul_lantern[hanging=false,waterlogged=false] 78 125 139 55 62 100 111 55 39 62 69 55 31 50 55 55 +minecraft:lantern 56 62 79 6 44 49 63 6 28 31 39 6 22 24 31 6 +minecraft:lantern[hanging=true,waterlogged=false] 56 62 79 6 44 49 63 6 28 31 39 6 22 24 31 6 +minecraft:lantern[hanging=false,waterlogged=true] 56 62 79 6 44 49 63 6 28 31 39 6 22 24 31 6 +minecraft:lantern[hanging=false,waterlogged=false] 56 62 79 6 44 49 63 6 28 31 39 6 22 24 31 6 +minecraft:soul_lantern 56 62 79 6 44 49 63 6 28 31 39 6 22 24 31 6 +minecraft:soul_lantern[hanging=true,waterlogged=false] 56 62 79 6 44 49 63 6 28 31 39 6 22 24 31 6 +minecraft:soul_lantern[hanging=false,waterlogged=true] 56 62 79 6 44 49 63 6 28 31 39 6 22 24 31 6 +minecraft:soul_lantern[hanging=false,waterlogged=false] 56 62 79 6 44 49 63 6 28 31 39 6 22 24 31 6 minecraft:campfire 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 minecraft:campfire[facing=north,lit=true,signal_fire=true,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 minecraft:campfire[facing=north,lit=true,signal_fire=false,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 @@ -15553,15 +15568,15 @@ minecraft:jigsaw[orientation=west_up] 34 27 37 255 27 21 29 255 17 13 18 255 13 minecraft:jigsaw[orientation=east_up] 34 27 37 255 27 21 29 255 17 13 18 255 13 10 14 255 minecraft:jigsaw[orientation=north_up] 34 27 37 255 27 21 29 255 17 13 18 255 13 10 14 255 minecraft:jigsaw[orientation=south_up] 34 27 37 255 27 21 29 255 17 13 18 255 13 10 14 255 -minecraft:composter 152 98 51 111 121 78 40 111 76 49 25 111 60 39 20 111 -minecraft:composter[level=1] 152 98 51 111 121 78 40 111 76 49 25 111 60 39 20 111 -minecraft:composter[level=2] 152 98 51 111 121 78 40 111 76 49 25 111 60 39 20 111 -minecraft:composter[level=3] 152 98 51 111 121 78 40 111 76 49 25 111 60 39 20 111 -minecraft:composter[level=4] 152 98 51 111 121 78 40 111 76 49 25 111 60 39 20 111 -minecraft:composter[level=5] 152 98 51 111 121 78 40 111 76 49 25 111 60 39 20 111 -minecraft:composter[level=6] 152 98 51 111 121 78 40 111 76 49 25 111 60 39 20 111 -minecraft:composter[level=7] 152 98 51 111 121 78 40 111 76 49 25 111 60 39 20 111 -minecraft:composter[level=8] 152 98 51 111 121 78 40 111 76 49 25 111 60 39 20 111 +minecraft:composter 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143 +minecraft:composter[level=1] 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143 +minecraft:composter[level=2] 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143 +minecraft:composter[level=3] 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143 +minecraft:composter[level=4] 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143 +minecraft:composter[level=5] 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143 +minecraft:composter[level=6] 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143 +minecraft:composter[level=7] 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143 +minecraft:composter[level=8] 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143 minecraft:target 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 minecraft:target[power=1] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 minecraft:target[power=2] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 diff --git a/DynmapCore/src/main/resources/extracted/colorschemes/dokudark.txt b/DynmapCore/src/main/resources/extracted/colorschemes/dokudark.txt index 15b23c88..174630ec 100644 --- a/DynmapCore/src/main/resources/extracted/colorschemes/dokudark.txt +++ b/DynmapCore/src/main/resources/extracted/colorschemes/dokudark.txt @@ -31,7 +31,22 @@ minecraft:acacia_sapling[stage=1] 71 71 51 82 56 56 40 82 35 35 25 82 28 28 20 8 minecraft:dark_oak_sapling 37 40 30 121 29 32 24 121 18 20 15 121 14 16 12 121 minecraft:dark_oak_sapling[stage=1] 37 40 30 121 29 32 24 121 18 20 15 121 14 16 12 121 minecraft:bedrock 37 36 35 255 29 28 28 255 18 18 17 255 14 14 14 255 -minecraft:water 47 67 244 179 37 53 195 179 23 33 122 179 18 26 97 179 +minecraft:water 77 193 124 144 61 154 99 144 38 96 62 144 30 77 49 144 +minecraft:water[level=1] 77 193 124 144 61 154 99 144 38 96 62 144 30 77 49 144 +minecraft:water[level=2] 77 193 124 144 61 154 99 144 38 96 62 144 30 77 49 144 +minecraft:water[level=3] 77 193 124 144 61 154 99 144 38 96 62 144 30 77 49 144 +minecraft:water[level=4] 77 193 124 144 61 154 99 144 38 96 62 144 30 77 49 144 +minecraft:water[level=5] 77 193 124 144 61 154 99 144 38 96 62 144 30 77 49 144 +minecraft:water[level=6] 77 193 124 144 61 154 99 144 38 96 62 144 30 77 49 144 +minecraft:water[level=7] 77 193 124 144 61 154 99 144 38 96 62 144 30 77 49 144 +minecraft:water[level=8] 77 193 124 144 61 154 99 144 38 96 62 144 30 77 49 144 +minecraft:water[level=9] 77 193 124 144 61 154 99 144 38 96 62 144 30 77 49 144 +minecraft:water[level=10] 77 193 124 144 61 154 99 144 38 96 62 144 30 77 49 144 +minecraft:water[level=11] 77 193 124 144 61 154 99 144 38 96 62 144 30 77 49 144 +minecraft:water[level=12] 77 193 124 144 61 154 99 144 38 96 62 144 30 77 49 144 +minecraft:water[level=13] 77 193 124 144 61 154 99 144 38 96 62 144 30 77 49 144 +minecraft:water[level=14] 77 193 124 144 61 154 99 144 38 96 62 144 30 77 49 144 +minecraft:water[level=15] 77 193 124 144 61 154 99 144 38 96 62 144 30 77 49 144 minecraft:lava 125 24 10 255 100 19 8 255 62 12 5 255 50 9 4 255 minecraft:lava[level=1] 125 24 10 255 100 19 8 255 62 12 5 255 50 9 4 255 minecraft:lava[level=2] 125 24 10 255 100 19 8 255 62 12 5 255 50 9 4 255 @@ -1111,18 +1126,18 @@ minecraft:detector_rail[powered=false,shape=ascending_north,waterlogged=true] 76 minecraft:detector_rail[powered=false,shape=ascending_north,waterlogged=false] 76 76 62 232 60 60 49 232 38 38 31 232 30 30 24 232 minecraft:detector_rail[powered=false,shape=ascending_south,waterlogged=true] 76 76 62 232 60 60 49 232 38 38 31 232 30 30 24 232 minecraft:detector_rail[powered=false,shape=ascending_south,waterlogged=false] 76 76 62 232 60 60 49 232 38 38 31 232 30 30 24 232 -minecraft:sticky_piston 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255 -minecraft:sticky_piston[extended=true,facing=east] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255 -minecraft:sticky_piston[extended=true,facing=south] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255 -minecraft:sticky_piston[extended=true,facing=west] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255 -minecraft:sticky_piston[extended=true,facing=up] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255 -minecraft:sticky_piston[extended=true,facing=down] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255 -minecraft:sticky_piston[extended=false,facing=north] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255 -minecraft:sticky_piston[extended=false,facing=east] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255 -minecraft:sticky_piston[extended=false,facing=south] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255 -minecraft:sticky_piston[extended=false,facing=west] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255 -minecraft:sticky_piston[extended=false,facing=up] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255 -minecraft:sticky_piston[extended=false,facing=down] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255 +minecraft:sticky_piston 68 70 58 15 54 56 46 15 34 35 29 15 27 28 23 15 +minecraft:sticky_piston[extended=true,facing=east] 68 70 58 15 54 56 46 15 34 35 29 15 27 28 23 15 +minecraft:sticky_piston[extended=true,facing=south] 68 70 58 15 54 56 46 15 34 35 29 15 27 28 23 15 +minecraft:sticky_piston[extended=true,facing=west] 68 70 58 15 54 56 46 15 34 35 29 15 27 28 23 15 +minecraft:sticky_piston[extended=true,facing=up] 68 70 58 15 54 56 46 15 34 35 29 15 27 28 23 15 +minecraft:sticky_piston[extended=true,facing=down] 68 70 58 15 54 56 46 15 34 35 29 15 27 28 23 15 +minecraft:sticky_piston[extended=false,facing=north] 68 70 58 15 54 56 46 15 34 35 29 15 27 28 23 15 +minecraft:sticky_piston[extended=false,facing=east] 68 70 58 15 54 56 46 15 34 35 29 15 27 28 23 15 +minecraft:sticky_piston[extended=false,facing=south] 68 70 58 15 54 56 46 15 34 35 29 15 27 28 23 15 +minecraft:sticky_piston[extended=false,facing=west] 68 70 58 15 54 56 46 15 34 35 29 15 27 28 23 15 +minecraft:sticky_piston[extended=false,facing=up] 68 70 58 15 54 56 46 15 34 35 29 15 27 28 23 15 +minecraft:sticky_piston[extended=false,facing=down] 68 70 58 15 54 56 46 15 34 35 29 15 27 28 23 15 minecraft:cobweb 191 193 197 76 152 154 157 76 95 96 98 76 76 77 78 76 minecraft:grass 64 91 46 72 51 72 36 72 32 45 23 72 25 36 18 72 minecraft:fern 43 61 30 126 34 48 24 126 21 30 15 126 17 24 12 126 @@ -1130,42 +1145,42 @@ minecraft:dead_bush 65 61 43 121 52 48 34 121 32 30 21 121 26 24 17 121 minecraft:seagrass 20 32 10 16 16 25 8 16 10 16 5 16 8 12 4 16 minecraft:tall_seagrass 22 34 10 62 17 27 8 62 11 17 5 62 8 13 4 62 minecraft:tall_seagrass[half=lower] 21 33 10 99 16 26 8 99 10 16 5 99 8 13 4 99 -minecraft:piston 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255 -minecraft:piston[extended=true,facing=east] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255 -minecraft:piston[extended=true,facing=south] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255 -minecraft:piston[extended=true,facing=west] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255 -minecraft:piston[extended=true,facing=up] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255 -minecraft:piston[extended=true,facing=down] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255 -minecraft:piston[extended=false,facing=north] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255 -minecraft:piston[extended=false,facing=east] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255 -minecraft:piston[extended=false,facing=south] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255 -minecraft:piston[extended=false,facing=west] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255 -minecraft:piston[extended=false,facing=up] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255 -minecraft:piston[extended=false,facing=down] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255 -minecraft:piston_head 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255 -minecraft:piston_head[facing=north,short=true,type=sticky] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255 -minecraft:piston_head[facing=north,short=false,type=normal] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255 -minecraft:piston_head[facing=north,short=false,type=sticky] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255 -minecraft:piston_head[facing=east,short=true,type=normal] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255 -minecraft:piston_head[facing=east,short=true,type=sticky] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255 -minecraft:piston_head[facing=east,short=false,type=normal] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255 -minecraft:piston_head[facing=east,short=false,type=sticky] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255 -minecraft:piston_head[facing=south,short=true,type=normal] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255 -minecraft:piston_head[facing=south,short=true,type=sticky] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255 -minecraft:piston_head[facing=south,short=false,type=normal] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255 -minecraft:piston_head[facing=south,short=false,type=sticky] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255 -minecraft:piston_head[facing=west,short=true,type=normal] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255 -minecraft:piston_head[facing=west,short=true,type=sticky] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255 -minecraft:piston_head[facing=west,short=false,type=normal] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255 -minecraft:piston_head[facing=west,short=false,type=sticky] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255 -minecraft:piston_head[facing=up,short=true,type=normal] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255 -minecraft:piston_head[facing=up,short=true,type=sticky] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255 -minecraft:piston_head[facing=up,short=false,type=normal] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255 -minecraft:piston_head[facing=up,short=false,type=sticky] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255 -minecraft:piston_head[facing=down,short=true,type=normal] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255 -minecraft:piston_head[facing=down,short=true,type=sticky] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255 -minecraft:piston_head[facing=down,short=false,type=normal] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255 -minecraft:piston_head[facing=down,short=false,type=sticky] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255 +minecraft:piston 68 70 58 15 54 56 46 15 34 35 29 15 27 28 23 15 +minecraft:piston[extended=true,facing=east] 68 70 58 15 54 56 46 15 34 35 29 15 27 28 23 15 +minecraft:piston[extended=true,facing=south] 68 70 58 15 54 56 46 15 34 35 29 15 27 28 23 15 +minecraft:piston[extended=true,facing=west] 68 70 58 15 54 56 46 15 34 35 29 15 27 28 23 15 +minecraft:piston[extended=true,facing=up] 68 70 58 15 54 56 46 15 34 35 29 15 27 28 23 15 +minecraft:piston[extended=true,facing=down] 68 70 58 15 54 56 46 15 34 35 29 15 27 28 23 15 +minecraft:piston[extended=false,facing=north] 68 70 58 15 54 56 46 15 34 35 29 15 27 28 23 15 +minecraft:piston[extended=false,facing=east] 68 70 58 15 54 56 46 15 34 35 29 15 27 28 23 15 +minecraft:piston[extended=false,facing=south] 68 70 58 15 54 56 46 15 34 35 29 15 27 28 23 15 +minecraft:piston[extended=false,facing=west] 68 70 58 15 54 56 46 15 34 35 29 15 27 28 23 15 +minecraft:piston[extended=false,facing=up] 68 70 58 15 54 56 46 15 34 35 29 15 27 28 23 15 +minecraft:piston[extended=false,facing=down] 68 70 58 15 54 56 46 15 34 35 29 15 27 28 23 15 +minecraft:piston_head 63 62 48 47 50 49 38 47 31 31 24 47 25 24 19 47 +minecraft:piston_head[facing=north,short=true,type=sticky] 63 62 48 47 50 49 38 47 31 31 24 47 25 24 19 47 +minecraft:piston_head[facing=north,short=false,type=normal] 63 62 48 47 50 49 38 47 31 31 24 47 25 24 19 47 +minecraft:piston_head[facing=north,short=false,type=sticky] 63 62 48 47 50 49 38 47 31 31 24 47 25 24 19 47 +minecraft:piston_head[facing=east,short=true,type=normal] 63 62 48 47 50 49 38 47 31 31 24 47 25 24 19 47 +minecraft:piston_head[facing=east,short=true,type=sticky] 63 62 48 47 50 49 38 47 31 31 24 47 25 24 19 47 +minecraft:piston_head[facing=east,short=false,type=normal] 63 62 48 47 50 49 38 47 31 31 24 47 25 24 19 47 +minecraft:piston_head[facing=east,short=false,type=sticky] 63 62 48 47 50 49 38 47 31 31 24 47 25 24 19 47 +minecraft:piston_head[facing=south,short=true,type=normal] 63 62 48 47 50 49 38 47 31 31 24 47 25 24 19 47 +minecraft:piston_head[facing=south,short=true,type=sticky] 63 62 48 47 50 49 38 47 31 31 24 47 25 24 19 47 +minecraft:piston_head[facing=south,short=false,type=normal] 63 62 48 47 50 49 38 47 31 31 24 47 25 24 19 47 +minecraft:piston_head[facing=south,short=false,type=sticky] 63 62 48 47 50 49 38 47 31 31 24 47 25 24 19 47 +minecraft:piston_head[facing=west,short=true,type=normal] 63 62 48 47 50 49 38 47 31 31 24 47 25 24 19 47 +minecraft:piston_head[facing=west,short=true,type=sticky] 63 62 48 47 50 49 38 47 31 31 24 47 25 24 19 47 +minecraft:piston_head[facing=west,short=false,type=normal] 63 62 48 47 50 49 38 47 31 31 24 47 25 24 19 47 +minecraft:piston_head[facing=west,short=false,type=sticky] 63 62 48 47 50 49 38 47 31 31 24 47 25 24 19 47 +minecraft:piston_head[facing=up,short=true,type=normal] 63 62 48 47 50 49 38 47 31 31 24 47 25 24 19 47 +minecraft:piston_head[facing=up,short=true,type=sticky] 63 62 48 47 50 49 38 47 31 31 24 47 25 24 19 47 +minecraft:piston_head[facing=up,short=false,type=normal] 63 62 48 47 50 49 38 47 31 31 24 47 25 24 19 47 +minecraft:piston_head[facing=up,short=false,type=sticky] 63 62 48 47 50 49 38 47 31 31 24 47 25 24 19 47 +minecraft:piston_head[facing=down,short=true,type=normal] 63 62 48 47 50 49 38 47 31 31 24 47 25 24 19 47 +minecraft:piston_head[facing=down,short=true,type=sticky] 63 62 48 47 50 49 38 47 31 31 24 47 25 24 19 47 +minecraft:piston_head[facing=down,short=false,type=normal] 63 62 48 47 50 49 38 47 31 31 24 47 25 24 19 47 +minecraft:piston_head[facing=down,short=false,type=sticky] 63 62 48 47 50 49 38 47 31 31 24 47 25 24 19 47 minecraft:white_wool 186 181 172 255 148 144 137 255 93 90 86 255 74 72 68 255 minecraft:orange_wool 183 98 80 255 146 78 64 255 91 49 40 255 73 39 32 255 minecraft:magenta_wool 129 78 131 255 103 62 104 255 64 39 65 255 51 31 52 255 @@ -5059,14 +5074,14 @@ minecraft:powder_snow_cauldron 79 83 74 111 63 66 59 111 39 41 37 111 31 33 29 1 minecraft:powder_snow_cauldron[level=2] 79 83 74 111 63 66 59 111 39 41 37 111 31 33 29 111 minecraft:powder_snow_cauldron[level=3] 79 83 74 111 63 66 59 111 39 41 37 111 31 33 29 111 minecraft:end_portal 0 0 63 255 0 0 50 255 0 0 31 255 0 0 25 255 -minecraft:end_portal_frame 52 57 46 255 41 45 36 255 26 28 23 255 20 22 18 255 -minecraft:end_portal_frame[eye=true,facing=south] 52 57 46 255 41 45 36 255 26 28 23 255 20 22 18 255 -minecraft:end_portal_frame[eye=true,facing=west] 52 57 46 255 41 45 36 255 26 28 23 255 20 22 18 255 -minecraft:end_portal_frame[eye=true,facing=east] 52 57 46 255 41 45 36 255 26 28 23 255 20 22 18 255 -minecraft:end_portal_frame[eye=false,facing=north] 67 76 61 95 53 60 48 95 33 38 30 95 26 30 24 95 -minecraft:end_portal_frame[eye=false,facing=south] 67 76 61 95 53 60 48 95 33 38 30 95 26 30 24 95 -minecraft:end_portal_frame[eye=false,facing=west] 67 76 61 95 53 60 48 95 33 38 30 95 26 30 24 95 -minecraft:end_portal_frame[eye=false,facing=east] 67 76 61 95 53 60 48 95 33 38 30 95 26 30 24 95 +minecraft:end_portal_frame 133 127 101 255 106 101 80 255 66 63 50 255 53 50 40 255 +minecraft:end_portal_frame[eye=true,facing=south] 133 127 101 255 106 101 80 255 66 63 50 255 53 50 40 255 +minecraft:end_portal_frame[eye=true,facing=west] 133 127 101 255 106 101 80 255 66 63 50 255 53 50 40 255 +minecraft:end_portal_frame[eye=true,facing=east] 133 127 101 255 106 101 80 255 66 63 50 255 53 50 40 255 +minecraft:end_portal_frame[eye=false,facing=north] 133 127 101 255 106 101 80 255 66 63 50 255 53 50 40 255 +minecraft:end_portal_frame[eye=false,facing=south] 133 127 101 255 106 101 80 255 66 63 50 255 53 50 40 255 +minecraft:end_portal_frame[eye=false,facing=west] 133 127 101 255 106 101 80 255 66 63 50 255 53 50 40 255 +minecraft:end_portal_frame[eye=false,facing=east] 133 127 101 255 106 101 80 255 66 63 50 255 53 50 40 255 minecraft:end_stone 133 127 101 255 106 101 80 255 66 63 50 255 53 50 40 255 minecraft:dragon_egg 37 37 41 255 29 29 32 255 18 18 20 255 14 14 16 255 minecraft:redstone_lamp 92 118 78 255 73 94 62 255 46 59 39 255 36 47 31 255 @@ -14678,14 +14693,14 @@ minecraft:bell[attachment=double_wall,facing=west,powered=true] 169 143 96 57 13 minecraft:bell[attachment=double_wall,facing=west,powered=false] 169 143 96 57 135 114 76 57 84 71 48 57 67 57 38 57 minecraft:bell[attachment=double_wall,facing=east,powered=true] 169 143 96 57 135 114 76 57 84 71 48 57 67 57 38 57 minecraft:bell[attachment=double_wall,facing=east,powered=false] 169 143 96 57 135 114 76 57 84 71 48 57 67 57 38 57 -minecraft:lantern 48 58 42 52 38 46 33 52 24 29 21 52 19 23 16 52 -minecraft:lantern[hanging=true,waterlogged=false] 48 58 42 52 38 46 33 52 24 29 21 52 19 23 16 52 -minecraft:lantern[hanging=false,waterlogged=true] 48 58 42 52 38 46 33 52 24 29 21 52 19 23 16 52 -minecraft:lantern[hanging=false,waterlogged=false] 48 58 42 52 38 46 33 52 24 29 21 52 19 23 16 52 -minecraft:soul_lantern 50 39 43 52 40 31 34 52 25 19 21 52 20 15 17 52 -minecraft:soul_lantern[hanging=true,waterlogged=false] 50 39 43 52 40 31 34 52 25 19 21 52 20 15 17 52 -minecraft:soul_lantern[hanging=false,waterlogged=true] 50 39 43 52 40 31 34 52 25 19 21 52 20 15 17 52 -minecraft:soul_lantern[hanging=false,waterlogged=false] 50 39 43 52 40 31 34 52 25 19 21 52 20 15 17 52 +minecraft:lantern 77 111 73 11 61 88 58 11 38 55 36 11 30 44 29 11 +minecraft:lantern[hanging=true,waterlogged=false] 77 111 73 11 61 88 58 11 38 55 36 11 30 44 29 11 +minecraft:lantern[hanging=false,waterlogged=true] 77 111 73 11 61 88 58 11 38 55 36 11 30 44 29 11 +minecraft:lantern[hanging=false,waterlogged=false] 77 111 73 11 61 88 58 11 38 55 36 11 30 44 29 11 +minecraft:soul_lantern 80 51 77 11 64 40 61 11 40 25 38 11 32 20 30 11 +minecraft:soul_lantern[hanging=true,waterlogged=false] 80 51 77 11 64 40 61 11 40 25 38 11 32 20 30 11 +minecraft:soul_lantern[hanging=false,waterlogged=true] 80 51 77 11 64 40 61 11 40 25 38 11 32 20 30 11 +minecraft:soul_lantern[hanging=false,waterlogged=false] 80 51 77 11 64 40 61 11 40 25 38 11 32 20 30 11 minecraft:campfire 35 34 33 207 28 27 26 207 17 17 16 207 14 13 13 207 minecraft:campfire[facing=north,lit=true,signal_fire=true,waterlogged=false] 35 34 33 207 28 27 26 207 17 17 16 207 14 13 13 207 minecraft:campfire[facing=north,lit=true,signal_fire=false,waterlogged=true] 35 34 33 207 28 27 26 207 17 17 16 207 14 13 13 207 @@ -15547,15 +15562,15 @@ minecraft:jigsaw[orientation=west_up] 62 63 42 255 49 50 33 255 31 31 21 255 24 minecraft:jigsaw[orientation=east_up] 62 63 42 255 49 50 33 255 31 31 21 255 24 25 16 255 minecraft:jigsaw[orientation=north_up] 62 63 42 255 49 50 33 255 31 31 21 255 24 25 16 255 minecraft:jigsaw[orientation=south_up] 62 63 42 255 49 50 33 255 31 31 21 255 24 25 16 255 -minecraft:composter 48 46 35 111 38 36 28 111 24 23 17 111 19 18 14 111 -minecraft:composter[level=1] 48 46 35 111 38 36 28 111 24 23 17 111 19 18 14 111 -minecraft:composter[level=2] 48 46 35 111 38 36 28 111 24 23 17 111 19 18 14 111 -minecraft:composter[level=3] 48 46 35 111 38 36 28 111 24 23 17 111 19 18 14 111 -minecraft:composter[level=4] 48 46 35 111 38 36 28 111 24 23 17 111 19 18 14 111 -minecraft:composter[level=5] 48 46 35 111 38 36 28 111 24 23 17 111 19 18 14 111 -minecraft:composter[level=6] 48 46 35 111 38 36 28 111 24 23 17 111 19 18 14 111 -minecraft:composter[level=7] 48 46 35 111 38 36 28 111 24 23 17 111 19 18 14 111 -minecraft:composter[level=8] 48 46 35 111 38 36 28 111 24 23 17 111 19 18 14 111 +minecraft:composter 56 51 33 143 44 40 26 143 28 25 16 143 22 20 13 143 +minecraft:composter[level=1] 56 51 33 143 44 40 26 143 28 25 16 143 22 20 13 143 +minecraft:composter[level=2] 56 51 33 143 44 40 26 143 28 25 16 143 22 20 13 143 +minecraft:composter[level=3] 56 51 33 143 44 40 26 143 28 25 16 143 22 20 13 143 +minecraft:composter[level=4] 56 51 33 143 44 40 26 143 28 25 16 143 22 20 13 143 +minecraft:composter[level=5] 56 51 33 143 44 40 26 143 28 25 16 143 22 20 13 143 +minecraft:composter[level=6] 56 51 33 143 44 40 26 143 28 25 16 143 22 20 13 143 +minecraft:composter[level=7] 56 51 33 143 44 40 26 143 28 25 16 143 22 20 13 143 +minecraft:composter[level=8] 56 51 33 143 44 40 26 143 28 25 16 143 22 20 13 143 minecraft:target 130 102 86 255 104 81 68 255 65 51 43 255 52 40 34 255 minecraft:target[power=1] 130 102 86 255 104 81 68 255 65 51 43 255 52 40 34 255 minecraft:target[power=2] 130 102 86 255 104 81 68 255 65 51 43 255 52 40 34 255 diff --git a/DynmapCore/src/main/resources/extracted/colorschemes/dokuhigh.txt b/DynmapCore/src/main/resources/extracted/colorschemes/dokuhigh.txt index ffa4253b..fb2931ec 100644 --- a/DynmapCore/src/main/resources/extracted/colorschemes/dokuhigh.txt +++ b/DynmapCore/src/main/resources/extracted/colorschemes/dokuhigh.txt @@ -31,7 +31,22 @@ minecraft:acacia_sapling[stage=1] 75 76 25 81 60 60 20 81 37 38 12 81 30 30 10 8 minecraft:dark_oak_sapling 37 40 30 121 29 32 24 121 18 20 15 121 14 16 12 121 minecraft:dark_oak_sapling[stage=1] 37 40 30 121 29 32 24 121 18 20 15 121 14 16 12 121 minecraft:bedrock 38 39 42 255 30 31 33 255 19 19 21 255 15 15 16 255 -minecraft:water 47 67 244 179 37 53 195 179 23 33 122 179 18 26 97 179 +minecraft:water 118 240 223 144 94 192 178 144 59 120 111 144 47 96 89 144 +minecraft:water[level=1] 118 240 223 144 94 192 178 144 59 120 111 144 47 96 89 144 +minecraft:water[level=2] 118 240 223 144 94 192 178 144 59 120 111 144 47 96 89 144 +minecraft:water[level=3] 118 240 223 144 94 192 178 144 59 120 111 144 47 96 89 144 +minecraft:water[level=4] 118 240 223 144 94 192 178 144 59 120 111 144 47 96 89 144 +minecraft:water[level=5] 118 240 223 144 94 192 178 144 59 120 111 144 47 96 89 144 +minecraft:water[level=6] 118 240 223 144 94 192 178 144 59 120 111 144 47 96 89 144 +minecraft:water[level=7] 118 240 223 144 94 192 178 144 59 120 111 144 47 96 89 144 +minecraft:water[level=8] 118 240 223 144 94 192 178 144 59 120 111 144 47 96 89 144 +minecraft:water[level=9] 118 240 223 144 94 192 178 144 59 120 111 144 47 96 89 144 +minecraft:water[level=10] 118 240 223 144 94 192 178 144 59 120 111 144 47 96 89 144 +minecraft:water[level=11] 118 240 223 144 94 192 178 144 59 120 111 144 47 96 89 144 +minecraft:water[level=12] 118 240 223 144 94 192 178 144 59 120 111 144 47 96 89 144 +minecraft:water[level=13] 118 240 223 144 94 192 178 144 59 120 111 144 47 96 89 144 +minecraft:water[level=14] 118 240 223 144 94 192 178 144 59 120 111 144 47 96 89 144 +minecraft:water[level=15] 118 240 223 144 94 192 178 144 59 120 111 144 47 96 89 144 minecraft:lava 125 24 10 255 100 19 8 255 62 12 5 255 50 9 4 255 minecraft:lava[level=1] 125 24 10 255 100 19 8 255 62 12 5 255 50 9 4 255 minecraft:lava[level=2] 125 24 10 255 100 19 8 255 62 12 5 255 50 9 4 255 @@ -1111,18 +1126,18 @@ minecraft:detector_rail[powered=false,shape=ascending_north,waterlogged=true] 10 minecraft:detector_rail[powered=false,shape=ascending_north,waterlogged=false] 106 98 83 232 84 78 66 232 53 49 41 232 42 39 33 232 minecraft:detector_rail[powered=false,shape=ascending_south,waterlogged=true] 106 98 83 232 84 78 66 232 53 49 41 232 42 39 33 232 minecraft:detector_rail[powered=false,shape=ascending_south,waterlogged=false] 106 98 83 232 84 78 66 232 53 49 41 232 42 39 33 232 -minecraft:sticky_piston 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255 -minecraft:sticky_piston[extended=true,facing=east] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255 -minecraft:sticky_piston[extended=true,facing=south] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255 -minecraft:sticky_piston[extended=true,facing=west] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255 -minecraft:sticky_piston[extended=true,facing=up] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255 -minecraft:sticky_piston[extended=true,facing=down] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255 -minecraft:sticky_piston[extended=false,facing=north] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255 -minecraft:sticky_piston[extended=false,facing=east] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255 -minecraft:sticky_piston[extended=false,facing=south] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255 -minecraft:sticky_piston[extended=false,facing=west] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255 -minecraft:sticky_piston[extended=false,facing=up] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255 -minecraft:sticky_piston[extended=false,facing=down] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255 +minecraft:sticky_piston 90 77 52 15 72 61 41 15 45 38 26 15 36 30 20 15 +minecraft:sticky_piston[extended=true,facing=east] 90 77 52 15 72 61 41 15 45 38 26 15 36 30 20 15 +minecraft:sticky_piston[extended=true,facing=south] 90 77 52 15 72 61 41 15 45 38 26 15 36 30 20 15 +minecraft:sticky_piston[extended=true,facing=west] 90 77 52 15 72 61 41 15 45 38 26 15 36 30 20 15 +minecraft:sticky_piston[extended=true,facing=up] 90 77 52 15 72 61 41 15 45 38 26 15 36 30 20 15 +minecraft:sticky_piston[extended=true,facing=down] 90 77 52 15 72 61 41 15 45 38 26 15 36 30 20 15 +minecraft:sticky_piston[extended=false,facing=north] 90 77 52 15 72 61 41 15 45 38 26 15 36 30 20 15 +minecraft:sticky_piston[extended=false,facing=east] 90 77 52 15 72 61 41 15 45 38 26 15 36 30 20 15 +minecraft:sticky_piston[extended=false,facing=south] 90 77 52 15 72 61 41 15 45 38 26 15 36 30 20 15 +minecraft:sticky_piston[extended=false,facing=west] 90 77 52 15 72 61 41 15 45 38 26 15 36 30 20 15 +minecraft:sticky_piston[extended=false,facing=up] 90 77 52 15 72 61 41 15 45 38 26 15 36 30 20 15 +minecraft:sticky_piston[extended=false,facing=down] 90 77 52 15 72 61 41 15 45 38 26 15 36 30 20 15 minecraft:cobweb 193 201 209 74 154 160 167 74 96 100 104 74 77 80 83 74 minecraft:grass 21 60 32 64 16 48 25 64 10 30 16 64 8 24 12 64 minecraft:fern 22 63 34 126 17 50 27 126 11 31 17 126 8 25 13 126 @@ -1130,42 +1145,42 @@ minecraft:dead_bush 83 101 87 124 66 80 69 124 41 50 43 124 33 40 34 124 minecraft:seagrass 7 52 19 67 5 41 15 67 3 26 9 67 2 20 7 67 minecraft:tall_seagrass 7 55 20 62 5 44 16 62 3 27 10 62 2 22 8 62 minecraft:tall_seagrass[half=lower] 7 53 19 99 5 42 15 99 3 26 9 99 2 21 7 99 -minecraft:piston 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255 -minecraft:piston[extended=true,facing=east] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255 -minecraft:piston[extended=true,facing=south] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255 -minecraft:piston[extended=true,facing=west] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255 -minecraft:piston[extended=true,facing=up] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255 -minecraft:piston[extended=true,facing=down] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255 -minecraft:piston[extended=false,facing=north] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255 -minecraft:piston[extended=false,facing=east] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255 -minecraft:piston[extended=false,facing=south] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255 -minecraft:piston[extended=false,facing=west] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255 -minecraft:piston[extended=false,facing=up] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255 -minecraft:piston[extended=false,facing=down] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255 -minecraft:piston_head 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255 -minecraft:piston_head[facing=north,short=true,type=sticky] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255 -minecraft:piston_head[facing=north,short=false,type=normal] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255 -minecraft:piston_head[facing=north,short=false,type=sticky] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255 -minecraft:piston_head[facing=east,short=true,type=normal] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255 -minecraft:piston_head[facing=east,short=true,type=sticky] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255 -minecraft:piston_head[facing=east,short=false,type=normal] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255 -minecraft:piston_head[facing=east,short=false,type=sticky] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255 -minecraft:piston_head[facing=south,short=true,type=normal] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255 -minecraft:piston_head[facing=south,short=true,type=sticky] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255 -minecraft:piston_head[facing=south,short=false,type=normal] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255 -minecraft:piston_head[facing=south,short=false,type=sticky] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255 -minecraft:piston_head[facing=west,short=true,type=normal] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255 -minecraft:piston_head[facing=west,short=true,type=sticky] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255 -minecraft:piston_head[facing=west,short=false,type=normal] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255 -minecraft:piston_head[facing=west,short=false,type=sticky] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255 -minecraft:piston_head[facing=up,short=true,type=normal] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255 -minecraft:piston_head[facing=up,short=true,type=sticky] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255 -minecraft:piston_head[facing=up,short=false,type=normal] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255 -minecraft:piston_head[facing=up,short=false,type=sticky] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255 -minecraft:piston_head[facing=down,short=true,type=normal] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255 -minecraft:piston_head[facing=down,short=true,type=sticky] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255 -minecraft:piston_head[facing=down,short=false,type=normal] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255 -minecraft:piston_head[facing=down,short=false,type=sticky] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255 +minecraft:piston 90 77 52 15 72 61 41 15 45 38 26 15 36 30 20 15 +minecraft:piston[extended=true,facing=east] 90 77 52 15 72 61 41 15 45 38 26 15 36 30 20 15 +minecraft:piston[extended=true,facing=south] 90 77 52 15 72 61 41 15 45 38 26 15 36 30 20 15 +minecraft:piston[extended=true,facing=west] 90 77 52 15 72 61 41 15 45 38 26 15 36 30 20 15 +minecraft:piston[extended=true,facing=up] 90 77 52 15 72 61 41 15 45 38 26 15 36 30 20 15 +minecraft:piston[extended=true,facing=down] 90 77 52 15 72 61 41 15 45 38 26 15 36 30 20 15 +minecraft:piston[extended=false,facing=north] 90 77 52 15 72 61 41 15 45 38 26 15 36 30 20 15 +minecraft:piston[extended=false,facing=east] 90 77 52 15 72 61 41 15 45 38 26 15 36 30 20 15 +minecraft:piston[extended=false,facing=south] 90 77 52 15 72 61 41 15 45 38 26 15 36 30 20 15 +minecraft:piston[extended=false,facing=west] 90 77 52 15 72 61 41 15 45 38 26 15 36 30 20 15 +minecraft:piston[extended=false,facing=up] 90 77 52 15 72 61 41 15 45 38 26 15 36 30 20 15 +minecraft:piston[extended=false,facing=down] 90 77 52 15 72 61 41 15 45 38 26 15 36 30 20 15 +minecraft:piston_head 72 62 47 47 57 49 37 47 36 31 23 47 28 24 18 47 +minecraft:piston_head[facing=north,short=true,type=sticky] 72 62 47 47 57 49 37 47 36 31 23 47 28 24 18 47 +minecraft:piston_head[facing=north,short=false,type=normal] 72 62 47 47 57 49 37 47 36 31 23 47 28 24 18 47 +minecraft:piston_head[facing=north,short=false,type=sticky] 72 62 47 47 57 49 37 47 36 31 23 47 28 24 18 47 +minecraft:piston_head[facing=east,short=true,type=normal] 72 62 47 47 57 49 37 47 36 31 23 47 28 24 18 47 +minecraft:piston_head[facing=east,short=true,type=sticky] 72 62 47 47 57 49 37 47 36 31 23 47 28 24 18 47 +minecraft:piston_head[facing=east,short=false,type=normal] 72 62 47 47 57 49 37 47 36 31 23 47 28 24 18 47 +minecraft:piston_head[facing=east,short=false,type=sticky] 72 62 47 47 57 49 37 47 36 31 23 47 28 24 18 47 +minecraft:piston_head[facing=south,short=true,type=normal] 72 62 47 47 57 49 37 47 36 31 23 47 28 24 18 47 +minecraft:piston_head[facing=south,short=true,type=sticky] 72 62 47 47 57 49 37 47 36 31 23 47 28 24 18 47 +minecraft:piston_head[facing=south,short=false,type=normal] 72 62 47 47 57 49 37 47 36 31 23 47 28 24 18 47 +minecraft:piston_head[facing=south,short=false,type=sticky] 72 62 47 47 57 49 37 47 36 31 23 47 28 24 18 47 +minecraft:piston_head[facing=west,short=true,type=normal] 72 62 47 47 57 49 37 47 36 31 23 47 28 24 18 47 +minecraft:piston_head[facing=west,short=true,type=sticky] 72 62 47 47 57 49 37 47 36 31 23 47 28 24 18 47 +minecraft:piston_head[facing=west,short=false,type=normal] 72 62 47 47 57 49 37 47 36 31 23 47 28 24 18 47 +minecraft:piston_head[facing=west,short=false,type=sticky] 72 62 47 47 57 49 37 47 36 31 23 47 28 24 18 47 +minecraft:piston_head[facing=up,short=true,type=normal] 72 62 47 47 57 49 37 47 36 31 23 47 28 24 18 47 +minecraft:piston_head[facing=up,short=true,type=sticky] 72 62 47 47 57 49 37 47 36 31 23 47 28 24 18 47 +minecraft:piston_head[facing=up,short=false,type=normal] 72 62 47 47 57 49 37 47 36 31 23 47 28 24 18 47 +minecraft:piston_head[facing=up,short=false,type=sticky] 72 62 47 47 57 49 37 47 36 31 23 47 28 24 18 47 +minecraft:piston_head[facing=down,short=true,type=normal] 72 62 47 47 57 49 37 47 36 31 23 47 28 24 18 47 +minecraft:piston_head[facing=down,short=true,type=sticky] 72 62 47 47 57 49 37 47 36 31 23 47 28 24 18 47 +minecraft:piston_head[facing=down,short=false,type=normal] 72 62 47 47 57 49 37 47 36 31 23 47 28 24 18 47 +minecraft:piston_head[facing=down,short=false,type=sticky] 72 62 47 47 57 49 37 47 36 31 23 47 28 24 18 47 minecraft:white_wool 222 224 221 255 177 179 176 255 111 112 110 255 88 89 88 255 minecraft:orange_wool 225 120 68 255 180 96 54 255 112 60 34 255 90 48 27 255 minecraft:magenta_wool 177 100 205 255 141 80 164 255 88 50 102 255 70 40 82 255 @@ -5059,14 +5074,14 @@ minecraft:powder_snow_cauldron 94 94 72 111 75 75 57 111 47 47 36 111 37 37 28 1 minecraft:powder_snow_cauldron[level=2] 94 94 72 111 75 75 57 111 47 47 36 111 37 37 28 111 minecraft:powder_snow_cauldron[level=3] 94 94 72 111 75 75 57 111 47 47 36 111 37 37 28 111 minecraft:end_portal 0 0 63 255 0 0 50 255 0 0 31 255 0 0 25 255 -minecraft:end_portal_frame 93 92 75 255 74 73 60 255 46 46 37 255 37 36 30 255 -minecraft:end_portal_frame[eye=true,facing=south] 93 92 75 255 74 73 60 255 46 46 37 255 37 36 30 255 -minecraft:end_portal_frame[eye=true,facing=west] 93 92 75 255 74 73 60 255 46 46 37 255 37 36 30 255 -minecraft:end_portal_frame[eye=true,facing=east] 93 92 75 255 74 73 60 255 46 46 37 255 37 36 30 255 -minecraft:end_portal_frame[eye=false,facing=north] 112 116 88 96 89 92 70 96 56 58 44 96 44 46 35 96 -minecraft:end_portal_frame[eye=false,facing=south] 112 116 88 96 89 92 70 96 56 58 44 96 44 46 35 96 -minecraft:end_portal_frame[eye=false,facing=west] 112 116 88 96 89 92 70 96 56 58 44 96 44 46 35 96 -minecraft:end_portal_frame[eye=false,facing=east] 112 116 88 96 89 92 70 96 56 58 44 96 44 46 35 96 +minecraft:end_portal_frame 202 200 184 255 161 160 147 255 101 100 92 255 80 80 73 255 +minecraft:end_portal_frame[eye=true,facing=south] 202 200 184 255 161 160 147 255 101 100 92 255 80 80 73 255 +minecraft:end_portal_frame[eye=true,facing=west] 202 200 184 255 161 160 147 255 101 100 92 255 80 80 73 255 +minecraft:end_portal_frame[eye=true,facing=east] 202 200 184 255 161 160 147 255 101 100 92 255 80 80 73 255 +minecraft:end_portal_frame[eye=false,facing=north] 202 200 184 255 161 160 147 255 101 100 92 255 80 80 73 255 +minecraft:end_portal_frame[eye=false,facing=south] 202 200 184 255 161 160 147 255 101 100 92 255 80 80 73 255 +minecraft:end_portal_frame[eye=false,facing=west] 202 200 184 255 161 160 147 255 101 100 92 255 80 80 73 255 +minecraft:end_portal_frame[eye=false,facing=east] 202 200 184 255 161 160 147 255 101 100 92 255 80 80 73 255 minecraft:end_stone 202 200 184 255 161 160 147 255 101 100 92 255 80 80 73 255 minecraft:dragon_egg 37 37 41 255 29 29 32 255 18 18 20 255 14 14 16 255 minecraft:redstone_lamp 117 133 125 255 93 106 100 255 58 66 62 255 46 53 50 255 @@ -14678,14 +14693,14 @@ minecraft:bell[attachment=double_wall,facing=west,powered=true] 189 159 79 57 15 minecraft:bell[attachment=double_wall,facing=west,powered=false] 189 159 79 57 151 127 63 57 94 79 39 57 75 63 31 57 minecraft:bell[attachment=double_wall,facing=east,powered=true] 189 159 79 57 151 127 63 57 94 79 39 57 75 63 31 57 minecraft:bell[attachment=double_wall,facing=east,powered=false] 189 159 79 57 151 127 63 57 94 79 39 57 75 63 31 57 -minecraft:lantern 129 116 80 52 103 92 64 52 64 58 40 52 51 46 32 52 -minecraft:lantern[hanging=true,waterlogged=false] 129 116 80 52 103 92 64 52 64 58 40 52 51 46 32 52 -minecraft:lantern[hanging=false,waterlogged=true] 129 116 80 52 103 92 64 52 64 58 40 52 51 46 32 52 -minecraft:lantern[hanging=false,waterlogged=false] 129 116 80 52 103 92 64 52 64 58 40 52 51 46 32 52 -minecraft:soul_lantern 121 88 51 52 96 70 40 52 60 44 25 52 48 35 20 52 -minecraft:soul_lantern[hanging=true,waterlogged=false] 121 88 51 52 96 70 40 52 60 44 25 52 48 35 20 52 -minecraft:soul_lantern[hanging=false,waterlogged=true] 121 88 51 52 96 70 40 52 60 44 25 52 48 35 20 52 -minecraft:soul_lantern[hanging=false,waterlogged=false] 121 88 51 52 96 70 40 52 60 44 25 52 48 35 20 52 +minecraft:lantern 133 148 132 11 106 118 105 11 66 74 66 11 53 59 52 11 +minecraft:lantern[hanging=true,waterlogged=false] 133 148 132 11 106 118 105 11 66 74 66 11 53 59 52 11 +minecraft:lantern[hanging=false,waterlogged=true] 133 148 132 11 106 118 105 11 66 74 66 11 53 59 52 11 +minecraft:lantern[hanging=false,waterlogged=false] 133 148 132 11 106 118 105 11 66 74 66 11 53 59 52 11 +minecraft:soul_lantern 152 92 63 11 121 73 50 11 76 46 31 11 60 36 25 11 +minecraft:soul_lantern[hanging=true,waterlogged=false] 152 92 63 11 121 73 50 11 76 46 31 11 60 36 25 11 +minecraft:soul_lantern[hanging=false,waterlogged=true] 152 92 63 11 121 73 50 11 76 46 31 11 60 36 25 11 +minecraft:soul_lantern[hanging=false,waterlogged=false] 152 92 63 11 121 73 50 11 76 46 31 11 60 36 25 11 minecraft:campfire 43 42 41 207 34 33 32 207 21 21 20 207 17 16 16 207 minecraft:campfire[facing=north,lit=true,signal_fire=true,waterlogged=false] 43 42 41 207 34 33 32 207 21 21 20 207 17 16 16 207 minecraft:campfire[facing=north,lit=true,signal_fire=false,waterlogged=true] 43 42 41 207 34 33 32 207 21 21 20 207 17 16 16 207 @@ -15547,15 +15562,15 @@ minecraft:jigsaw[orientation=west_up] 106 93 67 255 84 74 53 255 53 46 33 255 42 minecraft:jigsaw[orientation=east_up] 106 93 67 255 84 74 53 255 53 46 33 255 42 37 26 255 minecraft:jigsaw[orientation=north_up] 106 93 67 255 84 74 53 255 53 46 33 255 42 37 26 255 minecraft:jigsaw[orientation=south_up] 106 93 67 255 84 74 53 255 53 46 33 255 42 37 26 255 -minecraft:composter 55 48 42 111 44 38 33 111 27 24 21 111 22 19 16 111 -minecraft:composter[level=1] 55 48 42 111 44 38 33 111 27 24 21 111 22 19 16 111 -minecraft:composter[level=2] 55 48 42 111 44 38 33 111 27 24 21 111 22 19 16 111 -minecraft:composter[level=3] 55 48 42 111 44 38 33 111 27 24 21 111 22 19 16 111 -minecraft:composter[level=4] 55 48 42 111 44 38 33 111 27 24 21 111 22 19 16 111 -minecraft:composter[level=5] 55 48 42 111 44 38 33 111 27 24 21 111 22 19 16 111 -minecraft:composter[level=6] 55 48 42 111 44 38 33 111 27 24 21 111 22 19 16 111 -minecraft:composter[level=7] 55 48 42 111 44 38 33 111 27 24 21 111 22 19 16 111 -minecraft:composter[level=8] 55 48 42 111 44 38 33 111 27 24 21 111 22 19 16 111 +minecraft:composter 56 51 33 143 44 40 26 143 28 25 16 143 22 20 13 143 +minecraft:composter[level=1] 56 51 33 143 44 40 26 143 28 25 16 143 22 20 13 143 +minecraft:composter[level=2] 56 51 33 143 44 40 26 143 28 25 16 143 22 20 13 143 +minecraft:composter[level=3] 56 51 33 143 44 40 26 143 28 25 16 143 22 20 13 143 +minecraft:composter[level=4] 56 51 33 143 44 40 26 143 28 25 16 143 22 20 13 143 +minecraft:composter[level=5] 56 51 33 143 44 40 26 143 28 25 16 143 22 20 13 143 +minecraft:composter[level=6] 56 51 33 143 44 40 26 143 28 25 16 143 22 20 13 143 +minecraft:composter[level=7] 56 51 33 143 44 40 26 143 28 25 16 143 22 20 13 143 +minecraft:composter[level=8] 56 51 33 143 44 40 26 143 28 25 16 143 22 20 13 143 minecraft:target 149 118 91 255 119 94 72 255 74 59 45 255 59 47 36 255 minecraft:target[power=1] 149 118 91 255 119 94 72 255 74 59 45 255 59 47 36 255 minecraft:target[power=2] 149 118 91 255 119 94 72 255 74 59 45 255 59 47 36 255 diff --git a/DynmapCore/src/main/resources/extracted/colorschemes/dokulight.txt b/DynmapCore/src/main/resources/extracted/colorschemes/dokulight.txt index d2cd4b24..0cf3b891 100644 --- a/DynmapCore/src/main/resources/extracted/colorschemes/dokulight.txt +++ b/DynmapCore/src/main/resources/extracted/colorschemes/dokulight.txt @@ -2,11 +2,11 @@ minecraft:stone 121 134 127 255 96 107 101 255 60 67 63 255 48 53 50 255 minecraft:granite 148 85 53 255 118 68 42 255 74 42 26 255 59 34 21 255 minecraft:polished_granite 169 93 57 255 135 74 45 255 84 46 28 255 67 37 22 255 minecraft:diorite 187 188 172 255 149 150 137 255 93 94 86 255 74 75 68 255 -minecraft:polished_diorite 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 +minecraft:polished_diorite 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 minecraft:andesite 81 84 77 255 64 67 61 255 40 42 38 255 32 33 30 255 -minecraft:polished_andesite 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:grass_block 52 93 38 255 41 74 30 255 26 46 19 255 20 37 15 255 -minecraft:grass_block[snowy=false] 52 93 38 255 41 74 30 255 26 46 19 255 20 37 15 255 +minecraft:polished_andesite 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:grass_block 64 104 47 255 51 83 37 255 32 52 23 255 25 41 18 255 +minecraft:grass_block[snowy=false] 64 104 47 255 51 83 37 255 32 52 23 255 25 41 18 255 minecraft:dirt 96 70 52 255 76 56 41 255 48 35 26 255 38 28 20 255 minecraft:coarse_dirt 74 64 56 255 59 51 44 255 37 32 28 255 29 25 22 255 minecraft:podzol 193 193 193 255 154 154 154 255 96 96 96 255 77 77 77 255 @@ -15,7 +15,7 @@ minecraft:cobblestone 99 109 98 255 79 87 78 255 49 54 49 255 39 43 39 255 minecraft:oak_planks 86 70 50 255 68 56 40 255 43 35 25 255 34 28 20 255 minecraft:spruce_planks 62 43 38 255 49 34 30 255 31 21 19 255 24 17 15 255 minecraft:birch_planks 114 100 75 255 91 80 60 255 57 50 37 255 45 40 30 255 -minecraft:jungle_planks 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 +minecraft:jungle_planks 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 minecraft:acacia_planks 76 40 21 255 60 32 16 255 38 20 10 255 30 16 8 255 minecraft:dark_oak_planks 56 49 38 255 44 39 30 255 28 24 19 255 22 19 15 255 minecraft:oak_sapling 37 59 28 114 29 47 22 114 18 29 14 114 14 23 11 114 @@ -31,33 +31,48 @@ minecraft:acacia_sapling[stage=1] 75 76 25 81 60 60 20 81 37 38 12 81 30 30 10 8 minecraft:dark_oak_sapling 37 40 30 121 29 32 24 121 18 20 15 121 14 16 12 121 minecraft:dark_oak_sapling[stage=1] 37 40 30 121 29 32 24 121 18 20 15 121 14 16 12 121 minecraft:bedrock 41 43 46 255 32 34 36 255 20 21 23 255 16 17 18 255 -minecraft:water 47 67 244 179 37 53 195 179 23 33 122 179 18 26 97 179 -minecraft:lava 128 33 18 255 102 26 14 255 64 16 9 255 51 13 7 255 -minecraft:lava[level=1] 128 33 18 255 102 26 14 255 64 16 9 255 51 13 7 255 -minecraft:lava[level=2] 128 33 18 255 102 26 14 255 64 16 9 255 51 13 7 255 -minecraft:lava[level=3] 128 33 18 255 102 26 14 255 64 16 9 255 51 13 7 255 -minecraft:lava[level=4] 128 33 18 255 102 26 14 255 64 16 9 255 51 13 7 255 -minecraft:lava[level=5] 128 33 18 255 102 26 14 255 64 16 9 255 51 13 7 255 -minecraft:lava[level=6] 128 33 18 255 102 26 14 255 64 16 9 255 51 13 7 255 -minecraft:lava[level=7] 128 33 18 255 102 26 14 255 64 16 9 255 51 13 7 255 -minecraft:lava[level=8] 128 33 18 255 102 26 14 255 64 16 9 255 51 13 7 255 -minecraft:lava[level=9] 128 33 18 255 102 26 14 255 64 16 9 255 51 13 7 255 -minecraft:lava[level=10] 128 33 18 255 102 26 14 255 64 16 9 255 51 13 7 255 -minecraft:lava[level=11] 128 33 18 255 102 26 14 255 64 16 9 255 51 13 7 255 -minecraft:lava[level=12] 128 33 18 255 102 26 14 255 64 16 9 255 51 13 7 255 -minecraft:lava[level=13] 128 33 18 255 102 26 14 255 64 16 9 255 51 13 7 255 -minecraft:lava[level=14] 128 33 18 255 102 26 14 255 64 16 9 255 51 13 7 255 -minecraft:lava[level=15] 128 33 18 255 102 26 14 255 64 16 9 255 51 13 7 255 +minecraft:water 69 154 225 126 55 123 180 126 34 77 112 126 27 61 90 126 +minecraft:water[level=1] 69 154 225 126 55 123 180 126 34 77 112 126 27 61 90 126 +minecraft:water[level=2] 69 154 225 126 55 123 180 126 34 77 112 126 27 61 90 126 +minecraft:water[level=3] 69 154 225 126 55 123 180 126 34 77 112 126 27 61 90 126 +minecraft:water[level=4] 69 154 225 126 55 123 180 126 34 77 112 126 27 61 90 126 +minecraft:water[level=5] 69 154 225 126 55 123 180 126 34 77 112 126 27 61 90 126 +minecraft:water[level=6] 69 154 225 126 55 123 180 126 34 77 112 126 27 61 90 126 +minecraft:water[level=7] 69 154 225 126 55 123 180 126 34 77 112 126 27 61 90 126 +minecraft:water[level=8] 69 154 225 126 55 123 180 126 34 77 112 126 27 61 90 126 +minecraft:water[level=9] 69 154 225 126 55 123 180 126 34 77 112 126 27 61 90 126 +minecraft:water[level=10] 69 154 225 126 55 123 180 126 34 77 112 126 27 61 90 126 +minecraft:water[level=11] 69 154 225 126 55 123 180 126 34 77 112 126 27 61 90 126 +minecraft:water[level=12] 69 154 225 126 55 123 180 126 34 77 112 126 27 61 90 126 +minecraft:water[level=13] 69 154 225 126 55 123 180 126 34 77 112 126 27 61 90 126 +minecraft:water[level=14] 69 154 225 126 55 123 180 126 34 77 112 126 27 61 90 126 +minecraft:water[level=15] 69 154 225 126 55 123 180 126 34 77 112 126 27 61 90 126 +minecraft:lava 125 24 10 255 100 19 8 255 62 12 5 255 50 9 4 255 +minecraft:lava[level=1] 125 24 10 255 100 19 8 255 62 12 5 255 50 9 4 255 +minecraft:lava[level=2] 125 24 10 255 100 19 8 255 62 12 5 255 50 9 4 255 +minecraft:lava[level=3] 125 24 10 255 100 19 8 255 62 12 5 255 50 9 4 255 +minecraft:lava[level=4] 125 24 10 255 100 19 8 255 62 12 5 255 50 9 4 255 +minecraft:lava[level=5] 125 24 10 255 100 19 8 255 62 12 5 255 50 9 4 255 +minecraft:lava[level=6] 125 24 10 255 100 19 8 255 62 12 5 255 50 9 4 255 +minecraft:lava[level=7] 125 24 10 255 100 19 8 255 62 12 5 255 50 9 4 255 +minecraft:lava[level=8] 125 24 10 255 100 19 8 255 62 12 5 255 50 9 4 255 +minecraft:lava[level=9] 125 24 10 255 100 19 8 255 62 12 5 255 50 9 4 255 +minecraft:lava[level=10] 125 24 10 255 100 19 8 255 62 12 5 255 50 9 4 255 +minecraft:lava[level=11] 125 24 10 255 100 19 8 255 62 12 5 255 50 9 4 255 +minecraft:lava[level=12] 125 24 10 255 100 19 8 255 62 12 5 255 50 9 4 255 +minecraft:lava[level=13] 125 24 10 255 100 19 8 255 62 12 5 255 50 9 4 255 +minecraft:lava[level=14] 125 24 10 255 100 19 8 255 62 12 5 255 50 9 4 255 +minecraft:lava[level=15] 125 24 10 255 100 19 8 255 62 12 5 255 50 9 4 255 minecraft:sand 230 217 160 255 184 173 128 255 115 108 80 255 92 86 64 255 minecraft:red_sand 156 96 58 255 124 76 46 255 78 48 29 255 62 38 23 255 minecraft:gravel 77 73 61 255 61 58 48 255 38 36 30 255 30 29 24 255 minecraft:gold_ore 130 129 101 255 104 103 80 255 65 64 50 255 52 51 40 255 -minecraft:deepslate_gold_ore 115 102 78 255 92 81 62 255 57 51 39 255 46 40 31 255 +minecraft:deepslate_gold_ore 94 84 64 255 75 67 51 255 47 42 32 255 37 33 25 255 minecraft:iron_ore 120 119 108 255 96 95 86 255 60 59 54 255 48 47 43 255 -minecraft:deepslate_iron_ore 106 99 94 255 84 79 75 255 53 49 47 255 42 39 37 255 +minecraft:deepslate_iron_ore 80 69 67 255 64 55 53 255 40 34 33 255 32 27 26 255 minecraft:coal_ore 91 99 95 255 72 79 76 255 45 49 47 255 36 39 38 255 -minecraft:deepslate_coal_ore 74 74 76 255 59 59 60 255 37 37 38 255 29 29 30 255 -minecraft:nether_gold_ore 115 54 42 255 92 43 33 255 57 27 21 255 46 21 16 255 +minecraft:deepslate_coal_ore 54 53 56 255 43 42 44 255 27 26 28 255 21 21 22 255 +minecraft:nether_gold_ore 117 68 58 255 93 54 46 255 58 34 29 255 46 27 23 255 minecraft:oak_log 73 60 40 255 58 48 32 255 36 30 20 255 29 24 16 255 minecraft:oak_log[axis=y] 140 123 88 255 112 98 70 255 70 61 44 255 56 49 35 255 minecraft:oak_log[axis=z] 73 60 40 255 58 48 32 255 36 30 20 255 29 24 16 255 @@ -130,123 +145,123 @@ minecraft:stripped_acacia_wood[axis=z] 160 91 48 255 128 72 38 255 80 45 24 255 minecraft:stripped_dark_oak_wood 87 67 44 255 69 53 35 255 43 33 22 255 34 26 17 255 minecraft:stripped_dark_oak_wood[axis=y] 87 67 44 255 69 53 35 255 43 33 22 255 34 26 17 255 minecraft:stripped_dark_oak_wood[axis=z] 87 67 44 255 69 53 35 255 43 33 22 255 34 26 17 255 -minecraft:oak_leaves 44 78 32 214 35 62 25 214 22 39 16 214 17 31 12 214 -minecraft:oak_leaves[distance=1,persistent=false] 44 78 32 214 35 62 25 214 22 39 16 214 17 31 12 214 -minecraft:oak_leaves[distance=2,persistent=true] 44 78 32 214 35 62 25 214 22 39 16 214 17 31 12 214 -minecraft:oak_leaves[distance=2,persistent=false] 44 78 32 214 35 62 25 214 22 39 16 214 17 31 12 214 -minecraft:oak_leaves[distance=3,persistent=true] 44 78 32 214 35 62 25 214 22 39 16 214 17 31 12 214 -minecraft:oak_leaves[distance=3,persistent=false] 44 78 32 214 35 62 25 214 22 39 16 214 17 31 12 214 -minecraft:oak_leaves[distance=4,persistent=true] 44 78 32 214 35 62 25 214 22 39 16 214 17 31 12 214 -minecraft:oak_leaves[distance=4,persistent=false] 44 78 32 214 35 62 25 214 22 39 16 214 17 31 12 214 -minecraft:oak_leaves[distance=5,persistent=true] 44 78 32 214 35 62 25 214 22 39 16 214 17 31 12 214 -minecraft:oak_leaves[distance=5,persistent=false] 44 78 32 214 35 62 25 214 22 39 16 214 17 31 12 214 -minecraft:oak_leaves[distance=6,persistent=true] 44 78 32 214 35 62 25 214 22 39 16 214 17 31 12 214 -minecraft:oak_leaves[distance=6,persistent=false] 44 78 32 214 35 62 25 214 22 39 16 214 17 31 12 214 -minecraft:oak_leaves[distance=7,persistent=true] 44 78 32 214 35 62 25 214 22 39 16 214 17 31 12 214 -minecraft:oak_leaves[distance=7,persistent=false] 44 78 32 214 35 62 25 214 22 39 16 214 17 31 12 214 -minecraft:spruce_leaves 37 64 31 229 29 51 24 229 18 32 15 229 14 25 12 229 -minecraft:spruce_leaves[distance=1,persistent=false] 37 64 31 229 29 51 24 229 18 32 15 229 14 25 12 229 -minecraft:spruce_leaves[distance=2,persistent=true] 37 64 31 229 29 51 24 229 18 32 15 229 14 25 12 229 -minecraft:spruce_leaves[distance=2,persistent=false] 37 64 31 229 29 51 24 229 18 32 15 229 14 25 12 229 -minecraft:spruce_leaves[distance=3,persistent=true] 37 64 31 229 29 51 24 229 18 32 15 229 14 25 12 229 -minecraft:spruce_leaves[distance=3,persistent=false] 37 64 31 229 29 51 24 229 18 32 15 229 14 25 12 229 -minecraft:spruce_leaves[distance=4,persistent=true] 37 64 31 229 29 51 24 229 18 32 15 229 14 25 12 229 -minecraft:spruce_leaves[distance=4,persistent=false] 37 64 31 229 29 51 24 229 18 32 15 229 14 25 12 229 -minecraft:spruce_leaves[distance=5,persistent=true] 37 64 31 229 29 51 24 229 18 32 15 229 14 25 12 229 -minecraft:spruce_leaves[distance=5,persistent=false] 37 64 31 229 29 51 24 229 18 32 15 229 14 25 12 229 -minecraft:spruce_leaves[distance=6,persistent=true] 37 64 31 229 29 51 24 229 18 32 15 229 14 25 12 229 -minecraft:spruce_leaves[distance=6,persistent=false] 37 64 31 229 29 51 24 229 18 32 15 229 14 25 12 229 -minecraft:spruce_leaves[distance=7,persistent=true] 37 64 31 229 29 51 24 229 18 32 15 229 14 25 12 229 -minecraft:spruce_leaves[distance=7,persistent=false] 37 64 31 229 29 51 24 229 18 32 15 229 14 25 12 229 -minecraft:birch_leaves 86 113 57 166 68 90 45 166 43 56 28 166 34 45 22 166 -minecraft:birch_leaves[distance=1,persistent=false] 86 113 57 166 68 90 45 166 43 56 28 166 34 45 22 166 -minecraft:birch_leaves[distance=2,persistent=true] 86 113 57 166 68 90 45 166 43 56 28 166 34 45 22 166 -minecraft:birch_leaves[distance=2,persistent=false] 86 113 57 166 68 90 45 166 43 56 28 166 34 45 22 166 -minecraft:birch_leaves[distance=3,persistent=true] 86 113 57 166 68 90 45 166 43 56 28 166 34 45 22 166 -minecraft:birch_leaves[distance=3,persistent=false] 86 113 57 166 68 90 45 166 43 56 28 166 34 45 22 166 -minecraft:birch_leaves[distance=4,persistent=true] 86 113 57 166 68 90 45 166 43 56 28 166 34 45 22 166 -minecraft:birch_leaves[distance=4,persistent=false] 86 113 57 166 68 90 45 166 43 56 28 166 34 45 22 166 -minecraft:birch_leaves[distance=5,persistent=true] 86 113 57 166 68 90 45 166 43 56 28 166 34 45 22 166 -minecraft:birch_leaves[distance=5,persistent=false] 86 113 57 166 68 90 45 166 43 56 28 166 34 45 22 166 -minecraft:birch_leaves[distance=6,persistent=true] 86 113 57 166 68 90 45 166 43 56 28 166 34 45 22 166 -minecraft:birch_leaves[distance=6,persistent=false] 86 113 57 166 68 90 45 166 43 56 28 166 34 45 22 166 -minecraft:birch_leaves[distance=7,persistent=true] 86 113 57 166 68 90 45 166 43 56 28 166 34 45 22 166 -minecraft:birch_leaves[distance=7,persistent=false] 86 113 57 166 68 90 45 166 43 56 28 166 34 45 22 166 -minecraft:jungle_leaves 43 77 32 232 34 61 25 232 21 38 16 232 17 30 12 232 -minecraft:jungle_leaves[distance=1,persistent=false] 43 77 32 232 34 61 25 232 21 38 16 232 17 30 12 232 -minecraft:jungle_leaves[distance=2,persistent=true] 43 77 32 232 34 61 25 232 21 38 16 232 17 30 12 232 -minecraft:jungle_leaves[distance=2,persistent=false] 43 77 32 232 34 61 25 232 21 38 16 232 17 30 12 232 -minecraft:jungle_leaves[distance=3,persistent=true] 43 77 32 232 34 61 25 232 21 38 16 232 17 30 12 232 -minecraft:jungle_leaves[distance=3,persistent=false] 43 77 32 232 34 61 25 232 21 38 16 232 17 30 12 232 -minecraft:jungle_leaves[distance=4,persistent=true] 43 77 32 232 34 61 25 232 21 38 16 232 17 30 12 232 -minecraft:jungle_leaves[distance=4,persistent=false] 43 77 32 232 34 61 25 232 21 38 16 232 17 30 12 232 -minecraft:jungle_leaves[distance=5,persistent=true] 43 77 32 232 34 61 25 232 21 38 16 232 17 30 12 232 -minecraft:jungle_leaves[distance=5,persistent=false] 43 77 32 232 34 61 25 232 21 38 16 232 17 30 12 232 -minecraft:jungle_leaves[distance=6,persistent=true] 43 77 32 232 34 61 25 232 21 38 16 232 17 30 12 232 -minecraft:jungle_leaves[distance=6,persistent=false] 43 77 32 232 34 61 25 232 21 38 16 232 17 30 12 232 -minecraft:jungle_leaves[distance=7,persistent=true] 43 77 32 232 34 61 25 232 21 38 16 232 17 30 12 232 -minecraft:jungle_leaves[distance=7,persistent=false] 43 77 32 232 34 61 25 232 21 38 16 232 17 30 12 232 -minecraft:acacia_leaves 47 82 34 228 37 65 27 228 23 41 17 228 18 32 13 228 -minecraft:acacia_leaves[distance=1,persistent=false] 47 82 34 228 37 65 27 228 23 41 17 228 18 32 13 228 -minecraft:acacia_leaves[distance=2,persistent=true] 47 82 34 228 37 65 27 228 23 41 17 228 18 32 13 228 -minecraft:acacia_leaves[distance=2,persistent=false] 47 82 34 228 37 65 27 228 23 41 17 228 18 32 13 228 -minecraft:acacia_leaves[distance=3,persistent=true] 47 82 34 228 37 65 27 228 23 41 17 228 18 32 13 228 -minecraft:acacia_leaves[distance=3,persistent=false] 47 82 34 228 37 65 27 228 23 41 17 228 18 32 13 228 -minecraft:acacia_leaves[distance=4,persistent=true] 47 82 34 228 37 65 27 228 23 41 17 228 18 32 13 228 -minecraft:acacia_leaves[distance=4,persistent=false] 47 82 34 228 37 65 27 228 23 41 17 228 18 32 13 228 -minecraft:acacia_leaves[distance=5,persistent=true] 47 82 34 228 37 65 27 228 23 41 17 228 18 32 13 228 -minecraft:acacia_leaves[distance=5,persistent=false] 47 82 34 228 37 65 27 228 23 41 17 228 18 32 13 228 -minecraft:acacia_leaves[distance=6,persistent=true] 47 82 34 228 37 65 27 228 23 41 17 228 18 32 13 228 -minecraft:acacia_leaves[distance=6,persistent=false] 47 82 34 228 37 65 27 228 23 41 17 228 18 32 13 228 -minecraft:acacia_leaves[distance=7,persistent=true] 47 82 34 228 37 65 27 228 23 41 17 228 18 32 13 228 -minecraft:acacia_leaves[distance=7,persistent=false] 47 82 34 228 37 65 27 228 23 41 17 228 18 32 13 228 -minecraft:dark_oak_leaves 44 78 32 214 35 62 25 214 22 39 16 214 17 31 12 214 -minecraft:dark_oak_leaves[distance=1,persistent=false] 44 78 32 214 35 62 25 214 22 39 16 214 17 31 12 214 -minecraft:dark_oak_leaves[distance=2,persistent=true] 44 78 32 214 35 62 25 214 22 39 16 214 17 31 12 214 -minecraft:dark_oak_leaves[distance=2,persistent=false] 44 78 32 214 35 62 25 214 22 39 16 214 17 31 12 214 -minecraft:dark_oak_leaves[distance=3,persistent=true] 44 78 32 214 35 62 25 214 22 39 16 214 17 31 12 214 -minecraft:dark_oak_leaves[distance=3,persistent=false] 44 78 32 214 35 62 25 214 22 39 16 214 17 31 12 214 -minecraft:dark_oak_leaves[distance=4,persistent=true] 44 78 32 214 35 62 25 214 22 39 16 214 17 31 12 214 -minecraft:dark_oak_leaves[distance=4,persistent=false] 44 78 32 214 35 62 25 214 22 39 16 214 17 31 12 214 -minecraft:dark_oak_leaves[distance=5,persistent=true] 44 78 32 214 35 62 25 214 22 39 16 214 17 31 12 214 -minecraft:dark_oak_leaves[distance=5,persistent=false] 44 78 32 214 35 62 25 214 22 39 16 214 17 31 12 214 -minecraft:dark_oak_leaves[distance=6,persistent=true] 44 78 32 214 35 62 25 214 22 39 16 214 17 31 12 214 -minecraft:dark_oak_leaves[distance=6,persistent=false] 44 78 32 214 35 62 25 214 22 39 16 214 17 31 12 214 -minecraft:dark_oak_leaves[distance=7,persistent=true] 44 78 32 214 35 62 25 214 22 39 16 214 17 31 12 214 -minecraft:dark_oak_leaves[distance=7,persistent=false] 44 78 32 214 35 62 25 214 22 39 16 214 17 31 12 214 -minecraft:azalea_leaves 24 54 8 196 19 43 6 196 12 27 4 196 9 21 3 196 -minecraft:azalea_leaves[distance=1,persistent=false] 24 54 8 196 19 43 6 196 12 27 4 196 9 21 3 196 -minecraft:azalea_leaves[distance=2,persistent=true] 24 54 8 196 19 43 6 196 12 27 4 196 9 21 3 196 -minecraft:azalea_leaves[distance=2,persistent=false] 24 54 8 196 19 43 6 196 12 27 4 196 9 21 3 196 -minecraft:azalea_leaves[distance=3,persistent=true] 24 54 8 196 19 43 6 196 12 27 4 196 9 21 3 196 -minecraft:azalea_leaves[distance=3,persistent=false] 24 54 8 196 19 43 6 196 12 27 4 196 9 21 3 196 -minecraft:azalea_leaves[distance=4,persistent=true] 24 54 8 196 19 43 6 196 12 27 4 196 9 21 3 196 -minecraft:azalea_leaves[distance=4,persistent=false] 24 54 8 196 19 43 6 196 12 27 4 196 9 21 3 196 -minecraft:azalea_leaves[distance=5,persistent=true] 24 54 8 196 19 43 6 196 12 27 4 196 9 21 3 196 -minecraft:azalea_leaves[distance=5,persistent=false] 24 54 8 196 19 43 6 196 12 27 4 196 9 21 3 196 -minecraft:azalea_leaves[distance=6,persistent=true] 24 54 8 196 19 43 6 196 12 27 4 196 9 21 3 196 -minecraft:azalea_leaves[distance=6,persistent=false] 24 54 8 196 19 43 6 196 12 27 4 196 9 21 3 196 -minecraft:azalea_leaves[distance=7,persistent=true] 24 54 8 196 19 43 6 196 12 27 4 196 9 21 3 196 -minecraft:azalea_leaves[distance=7,persistent=false] 24 54 8 196 19 43 6 196 12 27 4 196 9 21 3 196 -minecraft:flowering_azalea_leaves 27 53 12 204 21 42 9 204 13 26 6 204 10 21 4 204 -minecraft:flowering_azalea_leaves[distance=1,persistent=false] 27 53 12 204 21 42 9 204 13 26 6 204 10 21 4 204 -minecraft:flowering_azalea_leaves[distance=2,persistent=true] 27 53 12 204 21 42 9 204 13 26 6 204 10 21 4 204 -minecraft:flowering_azalea_leaves[distance=2,persistent=false] 27 53 12 204 21 42 9 204 13 26 6 204 10 21 4 204 -minecraft:flowering_azalea_leaves[distance=3,persistent=true] 27 53 12 204 21 42 9 204 13 26 6 204 10 21 4 204 -minecraft:flowering_azalea_leaves[distance=3,persistent=false] 27 53 12 204 21 42 9 204 13 26 6 204 10 21 4 204 -minecraft:flowering_azalea_leaves[distance=4,persistent=true] 27 53 12 204 21 42 9 204 13 26 6 204 10 21 4 204 -minecraft:flowering_azalea_leaves[distance=4,persistent=false] 27 53 12 204 21 42 9 204 13 26 6 204 10 21 4 204 -minecraft:flowering_azalea_leaves[distance=5,persistent=true] 27 53 12 204 21 42 9 204 13 26 6 204 10 21 4 204 -minecraft:flowering_azalea_leaves[distance=5,persistent=false] 27 53 12 204 21 42 9 204 13 26 6 204 10 21 4 204 -minecraft:flowering_azalea_leaves[distance=6,persistent=true] 27 53 12 204 21 42 9 204 13 26 6 204 10 21 4 204 -minecraft:flowering_azalea_leaves[distance=6,persistent=false] 27 53 12 204 21 42 9 204 13 26 6 204 10 21 4 204 -minecraft:flowering_azalea_leaves[distance=7,persistent=true] 27 53 12 204 21 42 9 204 13 26 6 204 10 21 4 204 -minecraft:flowering_azalea_leaves[distance=7,persistent=false] 27 53 12 204 21 42 9 204 13 26 6 204 10 21 4 204 +minecraft:oak_leaves 50 66 30 171 40 52 24 171 25 33 15 171 20 26 12 171 +minecraft:oak_leaves[distance=1,persistent=false] 50 66 30 171 40 52 24 171 25 33 15 171 20 26 12 171 +minecraft:oak_leaves[distance=2,persistent=true] 50 66 30 171 40 52 24 171 25 33 15 171 20 26 12 171 +minecraft:oak_leaves[distance=2,persistent=false] 50 66 30 171 40 52 24 171 25 33 15 171 20 26 12 171 +minecraft:oak_leaves[distance=3,persistent=true] 50 66 30 171 40 52 24 171 25 33 15 171 20 26 12 171 +minecraft:oak_leaves[distance=3,persistent=false] 50 66 30 171 40 52 24 171 25 33 15 171 20 26 12 171 +minecraft:oak_leaves[distance=4,persistent=true] 50 66 30 171 40 52 24 171 25 33 15 171 20 26 12 171 +minecraft:oak_leaves[distance=4,persistent=false] 50 66 30 171 40 52 24 171 25 33 15 171 20 26 12 171 +minecraft:oak_leaves[distance=5,persistent=true] 50 66 30 171 40 52 24 171 25 33 15 171 20 26 12 171 +minecraft:oak_leaves[distance=5,persistent=false] 50 66 30 171 40 52 24 171 25 33 15 171 20 26 12 171 +minecraft:oak_leaves[distance=6,persistent=true] 50 66 30 171 40 52 24 171 25 33 15 171 20 26 12 171 +minecraft:oak_leaves[distance=6,persistent=false] 50 66 30 171 40 52 24 171 25 33 15 171 20 26 12 171 +minecraft:oak_leaves[distance=7,persistent=true] 50 66 30 171 40 52 24 171 25 33 15 171 20 26 12 171 +minecraft:oak_leaves[distance=7,persistent=false] 50 66 30 171 40 52 24 171 25 33 15 171 20 26 12 171 +minecraft:spruce_leaves 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=1,persistent=false] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=2,persistent=true] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=2,persistent=false] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=3,persistent=true] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=3,persistent=false] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=4,persistent=true] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=4,persistent=false] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=5,persistent=true] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=5,persistent=false] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=6,persistent=true] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=6,persistent=false] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=7,persistent=true] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=7,persistent=false] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:birch_leaves 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=1,persistent=false] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=2,persistent=true] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=2,persistent=false] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=3,persistent=true] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=3,persistent=false] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=4,persistent=true] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=4,persistent=false] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=5,persistent=true] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=5,persistent=false] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=6,persistent=true] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=6,persistent=false] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=7,persistent=true] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=7,persistent=false] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:jungle_leaves 55 71 30 177 44 56 24 177 27 35 15 177 22 28 12 177 +minecraft:jungle_leaves[distance=1,persistent=false] 55 71 30 177 44 56 24 177 27 35 15 177 22 28 12 177 +minecraft:jungle_leaves[distance=2,persistent=true] 55 71 30 177 44 56 24 177 27 35 15 177 22 28 12 177 +minecraft:jungle_leaves[distance=2,persistent=false] 55 71 30 177 44 56 24 177 27 35 15 177 22 28 12 177 +minecraft:jungle_leaves[distance=3,persistent=true] 55 71 30 177 44 56 24 177 27 35 15 177 22 28 12 177 +minecraft:jungle_leaves[distance=3,persistent=false] 55 71 30 177 44 56 24 177 27 35 15 177 22 28 12 177 +minecraft:jungle_leaves[distance=4,persistent=true] 55 71 30 177 44 56 24 177 27 35 15 177 22 28 12 177 +minecraft:jungle_leaves[distance=4,persistent=false] 55 71 30 177 44 56 24 177 27 35 15 177 22 28 12 177 +minecraft:jungle_leaves[distance=5,persistent=true] 55 71 30 177 44 56 24 177 27 35 15 177 22 28 12 177 +minecraft:jungle_leaves[distance=5,persistent=false] 55 71 30 177 44 56 24 177 27 35 15 177 22 28 12 177 +minecraft:jungle_leaves[distance=6,persistent=true] 55 71 30 177 44 56 24 177 27 35 15 177 22 28 12 177 +minecraft:jungle_leaves[distance=6,persistent=false] 55 71 30 177 44 56 24 177 27 35 15 177 22 28 12 177 +minecraft:jungle_leaves[distance=7,persistent=true] 55 71 30 177 44 56 24 177 27 35 15 177 22 28 12 177 +minecraft:jungle_leaves[distance=7,persistent=false] 55 71 30 177 44 56 24 177 27 35 15 177 22 28 12 177 +minecraft:acacia_leaves 52 68 31 147 41 54 24 147 26 34 15 147 20 27 12 147 +minecraft:acacia_leaves[distance=1,persistent=false] 52 68 31 147 41 54 24 147 26 34 15 147 20 27 12 147 +minecraft:acacia_leaves[distance=2,persistent=true] 52 68 31 147 41 54 24 147 26 34 15 147 20 27 12 147 +minecraft:acacia_leaves[distance=2,persistent=false] 52 68 31 147 41 54 24 147 26 34 15 147 20 27 12 147 +minecraft:acacia_leaves[distance=3,persistent=true] 52 68 31 147 41 54 24 147 26 34 15 147 20 27 12 147 +minecraft:acacia_leaves[distance=3,persistent=false] 52 68 31 147 41 54 24 147 26 34 15 147 20 27 12 147 +minecraft:acacia_leaves[distance=4,persistent=true] 52 68 31 147 41 54 24 147 26 34 15 147 20 27 12 147 +minecraft:acacia_leaves[distance=4,persistent=false] 52 68 31 147 41 54 24 147 26 34 15 147 20 27 12 147 +minecraft:acacia_leaves[distance=5,persistent=true] 52 68 31 147 41 54 24 147 26 34 15 147 20 27 12 147 +minecraft:acacia_leaves[distance=5,persistent=false] 52 68 31 147 41 54 24 147 26 34 15 147 20 27 12 147 +minecraft:acacia_leaves[distance=6,persistent=true] 52 68 31 147 41 54 24 147 26 34 15 147 20 27 12 147 +minecraft:acacia_leaves[distance=6,persistent=false] 52 68 31 147 41 54 24 147 26 34 15 147 20 27 12 147 +minecraft:acacia_leaves[distance=7,persistent=true] 52 68 31 147 41 54 24 147 26 34 15 147 20 27 12 147 +minecraft:acacia_leaves[distance=7,persistent=false] 52 68 31 147 41 54 24 147 26 34 15 147 20 27 12 147 +minecraft:dark_oak_leaves 52 69 31 178 41 55 24 178 26 34 15 178 20 27 12 178 +minecraft:dark_oak_leaves[distance=1,persistent=false] 52 69 31 178 41 55 24 178 26 34 15 178 20 27 12 178 +minecraft:dark_oak_leaves[distance=2,persistent=true] 52 69 31 178 41 55 24 178 26 34 15 178 20 27 12 178 +minecraft:dark_oak_leaves[distance=2,persistent=false] 52 69 31 178 41 55 24 178 26 34 15 178 20 27 12 178 +minecraft:dark_oak_leaves[distance=3,persistent=true] 52 69 31 178 41 55 24 178 26 34 15 178 20 27 12 178 +minecraft:dark_oak_leaves[distance=3,persistent=false] 52 69 31 178 41 55 24 178 26 34 15 178 20 27 12 178 +minecraft:dark_oak_leaves[distance=4,persistent=true] 52 69 31 178 41 55 24 178 26 34 15 178 20 27 12 178 +minecraft:dark_oak_leaves[distance=4,persistent=false] 52 69 31 178 41 55 24 178 26 34 15 178 20 27 12 178 +minecraft:dark_oak_leaves[distance=5,persistent=true] 52 69 31 178 41 55 24 178 26 34 15 178 20 27 12 178 +minecraft:dark_oak_leaves[distance=5,persistent=false] 52 69 31 178 41 55 24 178 26 34 15 178 20 27 12 178 +minecraft:dark_oak_leaves[distance=6,persistent=true] 52 69 31 178 41 55 24 178 26 34 15 178 20 27 12 178 +minecraft:dark_oak_leaves[distance=6,persistent=false] 52 69 31 178 41 55 24 178 26 34 15 178 20 27 12 178 +minecraft:dark_oak_leaves[distance=7,persistent=true] 52 69 31 178 41 55 24 178 26 34 15 178 20 27 12 178 +minecraft:dark_oak_leaves[distance=7,persistent=false] 52 69 31 178 41 55 24 178 26 34 15 178 20 27 12 178 +minecraft:azalea_leaves 31 52 9 196 24 41 7 196 15 26 4 196 12 20 3 196 +minecraft:azalea_leaves[distance=1,persistent=false] 31 52 9 196 24 41 7 196 15 26 4 196 12 20 3 196 +minecraft:azalea_leaves[distance=2,persistent=true] 31 52 9 196 24 41 7 196 15 26 4 196 12 20 3 196 +minecraft:azalea_leaves[distance=2,persistent=false] 31 52 9 196 24 41 7 196 15 26 4 196 12 20 3 196 +minecraft:azalea_leaves[distance=3,persistent=true] 31 52 9 196 24 41 7 196 15 26 4 196 12 20 3 196 +minecraft:azalea_leaves[distance=3,persistent=false] 31 52 9 196 24 41 7 196 15 26 4 196 12 20 3 196 +minecraft:azalea_leaves[distance=4,persistent=true] 31 52 9 196 24 41 7 196 15 26 4 196 12 20 3 196 +minecraft:azalea_leaves[distance=4,persistent=false] 31 52 9 196 24 41 7 196 15 26 4 196 12 20 3 196 +minecraft:azalea_leaves[distance=5,persistent=true] 31 52 9 196 24 41 7 196 15 26 4 196 12 20 3 196 +minecraft:azalea_leaves[distance=5,persistent=false] 31 52 9 196 24 41 7 196 15 26 4 196 12 20 3 196 +minecraft:azalea_leaves[distance=6,persistent=true] 31 52 9 196 24 41 7 196 15 26 4 196 12 20 3 196 +minecraft:azalea_leaves[distance=6,persistent=false] 31 52 9 196 24 41 7 196 15 26 4 196 12 20 3 196 +minecraft:azalea_leaves[distance=7,persistent=true] 31 52 9 196 24 41 7 196 15 26 4 196 12 20 3 196 +minecraft:azalea_leaves[distance=7,persistent=false] 31 52 9 196 24 41 7 196 15 26 4 196 12 20 3 196 +minecraft:flowering_azalea_leaves 34 51 12 204 27 40 9 204 17 25 6 204 13 20 4 204 +minecraft:flowering_azalea_leaves[distance=1,persistent=false] 34 51 12 204 27 40 9 204 17 25 6 204 13 20 4 204 +minecraft:flowering_azalea_leaves[distance=2,persistent=true] 34 51 12 204 27 40 9 204 17 25 6 204 13 20 4 204 +minecraft:flowering_azalea_leaves[distance=2,persistent=false] 34 51 12 204 27 40 9 204 17 25 6 204 13 20 4 204 +minecraft:flowering_azalea_leaves[distance=3,persistent=true] 34 51 12 204 27 40 9 204 17 25 6 204 13 20 4 204 +minecraft:flowering_azalea_leaves[distance=3,persistent=false] 34 51 12 204 27 40 9 204 17 25 6 204 13 20 4 204 +minecraft:flowering_azalea_leaves[distance=4,persistent=true] 34 51 12 204 27 40 9 204 17 25 6 204 13 20 4 204 +minecraft:flowering_azalea_leaves[distance=4,persistent=false] 34 51 12 204 27 40 9 204 17 25 6 204 13 20 4 204 +minecraft:flowering_azalea_leaves[distance=5,persistent=true] 34 51 12 204 27 40 9 204 17 25 6 204 13 20 4 204 +minecraft:flowering_azalea_leaves[distance=5,persistent=false] 34 51 12 204 27 40 9 204 17 25 6 204 13 20 4 204 +minecraft:flowering_azalea_leaves[distance=6,persistent=true] 34 51 12 204 27 40 9 204 17 25 6 204 13 20 4 204 +minecraft:flowering_azalea_leaves[distance=6,persistent=false] 34 51 12 204 27 40 9 204 17 25 6 204 13 20 4 204 +minecraft:flowering_azalea_leaves[distance=7,persistent=true] 34 51 12 204 27 40 9 204 17 25 6 204 13 20 4 204 +minecraft:flowering_azalea_leaves[distance=7,persistent=false] 34 51 12 204 27 40 9 204 17 25 6 204 13 20 4 204 minecraft:sponge 186 167 86 255 148 133 68 255 93 83 43 255 74 66 34 255 minecraft:wet_sponge 159 143 77 255 127 114 61 255 79 71 38 255 63 57 30 255 minecraft:glass 67 66 60 96 53 52 48 96 33 33 30 96 26 26 24 96 minecraft:lapis_ore 92 114 131 255 73 91 104 255 46 57 65 255 36 45 52 255 -minecraft:deepslate_lapis_ore 79 90 115 255 63 72 92 255 39 45 57 255 31 36 46 255 +minecraft:deepslate_lapis_ore 56 69 94 255 44 55 75 255 28 34 47 255 22 27 37 255 minecraft:lapis_block 44 86 152 255 35 68 121 255 22 43 76 255 17 34 60 255 minecraft:dispenser 116 117 104 255 92 93 83 255 58 58 52 255 46 46 41 255 minecraft:dispenser[facing=north,triggered=false] 116 117 104 255 92 93 83 255 58 58 52 255 46 46 41 255 @@ -1087,18 +1102,18 @@ minecraft:powered_rail[powered=false,shape=ascending_north,waterlogged=true] 91 minecraft:powered_rail[powered=false,shape=ascending_north,waterlogged=false] 91 77 53 211 72 61 42 211 45 38 26 211 36 30 21 211 minecraft:powered_rail[powered=false,shape=ascending_south,waterlogged=true] 91 77 53 211 72 61 42 211 45 38 26 211 36 30 21 211 minecraft:powered_rail[powered=false,shape=ascending_south,waterlogged=false] 91 77 53 211 72 61 42 211 45 38 26 211 36 30 21 211 -minecraft:detector_rail 86 80 72 232 68 64 57 232 43 40 36 232 34 32 28 232 -minecraft:detector_rail[powered=true,shape=north_south,waterlogged=false] 86 80 72 232 68 64 57 232 43 40 36 232 34 32 28 232 -minecraft:detector_rail[powered=true,shape=east_west,waterlogged=true] 86 80 72 232 68 64 57 232 43 40 36 232 34 32 28 232 -minecraft:detector_rail[powered=true,shape=east_west,waterlogged=false] 86 80 72 232 68 64 57 232 43 40 36 232 34 32 28 232 -minecraft:detector_rail[powered=true,shape=ascending_east,waterlogged=true] 86 80 72 232 68 64 57 232 43 40 36 232 34 32 28 232 -minecraft:detector_rail[powered=true,shape=ascending_east,waterlogged=false] 86 80 72 232 68 64 57 232 43 40 36 232 34 32 28 232 -minecraft:detector_rail[powered=true,shape=ascending_west,waterlogged=true] 86 80 72 232 68 64 57 232 43 40 36 232 34 32 28 232 -minecraft:detector_rail[powered=true,shape=ascending_west,waterlogged=false] 86 80 72 232 68 64 57 232 43 40 36 232 34 32 28 232 -minecraft:detector_rail[powered=true,shape=ascending_north,waterlogged=true] 86 80 72 232 68 64 57 232 43 40 36 232 34 32 28 232 -minecraft:detector_rail[powered=true,shape=ascending_north,waterlogged=false] 86 80 72 232 68 64 57 232 43 40 36 232 34 32 28 232 -minecraft:detector_rail[powered=true,shape=ascending_south,waterlogged=true] 86 80 72 232 68 64 57 232 43 40 36 232 34 32 28 232 -minecraft:detector_rail[powered=true,shape=ascending_south,waterlogged=false] 86 80 72 232 68 64 57 232 43 40 36 232 34 32 28 232 +minecraft:detector_rail 86 80 72 231 68 64 57 231 43 40 36 231 34 32 28 231 +minecraft:detector_rail[powered=true,shape=north_south,waterlogged=false] 86 80 72 231 68 64 57 231 43 40 36 231 34 32 28 231 +minecraft:detector_rail[powered=true,shape=east_west,waterlogged=true] 86 80 72 231 68 64 57 231 43 40 36 231 34 32 28 231 +minecraft:detector_rail[powered=true,shape=east_west,waterlogged=false] 86 80 72 231 68 64 57 231 43 40 36 231 34 32 28 231 +minecraft:detector_rail[powered=true,shape=ascending_east,waterlogged=true] 86 80 72 231 68 64 57 231 43 40 36 231 34 32 28 231 +minecraft:detector_rail[powered=true,shape=ascending_east,waterlogged=false] 86 80 72 231 68 64 57 231 43 40 36 231 34 32 28 231 +minecraft:detector_rail[powered=true,shape=ascending_west,waterlogged=true] 86 80 72 231 68 64 57 231 43 40 36 231 34 32 28 231 +minecraft:detector_rail[powered=true,shape=ascending_west,waterlogged=false] 86 80 72 231 68 64 57 231 43 40 36 231 34 32 28 231 +minecraft:detector_rail[powered=true,shape=ascending_north,waterlogged=true] 86 80 72 231 68 64 57 231 43 40 36 231 34 32 28 231 +minecraft:detector_rail[powered=true,shape=ascending_north,waterlogged=false] 86 80 72 231 68 64 57 231 43 40 36 231 34 32 28 231 +minecraft:detector_rail[powered=true,shape=ascending_south,waterlogged=true] 86 80 72 231 68 64 57 231 43 40 36 231 34 32 28 231 +minecraft:detector_rail[powered=true,shape=ascending_south,waterlogged=false] 86 80 72 231 68 64 57 231 43 40 36 231 34 32 28 231 minecraft:detector_rail[powered=false,shape=north_south,waterlogged=true] 86 80 72 232 68 64 57 232 43 40 36 232 34 32 28 232 minecraft:detector_rail[powered=false,shape=north_south,waterlogged=false] 86 80 72 232 68 64 57 232 43 40 36 232 34 32 28 232 minecraft:detector_rail[powered=false,shape=east_west,waterlogged=true] 86 80 72 232 68 64 57 232 43 40 36 232 34 32 28 232 @@ -1111,61 +1126,61 @@ minecraft:detector_rail[powered=false,shape=ascending_north,waterlogged=true] 86 minecraft:detector_rail[powered=false,shape=ascending_north,waterlogged=false] 86 80 72 232 68 64 57 232 43 40 36 232 34 32 28 232 minecraft:detector_rail[powered=false,shape=ascending_south,waterlogged=true] 86 80 72 232 68 64 57 232 43 40 36 232 34 32 28 232 minecraft:detector_rail[powered=false,shape=ascending_south,waterlogged=false] 86 80 72 232 68 64 57 232 43 40 36 232 34 32 28 232 -minecraft:sticky_piston 119 133 126 255 95 106 100 255 59 66 63 255 47 53 50 255 -minecraft:sticky_piston[extended=true,facing=east] 119 133 126 255 95 106 100 255 59 66 63 255 47 53 50 255 -minecraft:sticky_piston[extended=true,facing=south] 119 133 126 255 95 106 100 255 59 66 63 255 47 53 50 255 -minecraft:sticky_piston[extended=true,facing=west] 119 133 126 255 95 106 100 255 59 66 63 255 47 53 50 255 -minecraft:sticky_piston[extended=true,facing=up] 119 133 126 255 95 106 100 255 59 66 63 255 47 53 50 255 -minecraft:sticky_piston[extended=true,facing=down] 119 133 126 255 95 106 100 255 59 66 63 255 47 53 50 255 -minecraft:sticky_piston[extended=false,facing=north] 119 133 126 255 95 106 100 255 59 66 63 255 47 53 50 255 -minecraft:sticky_piston[extended=false,facing=east] 119 133 126 255 95 106 100 255 59 66 63 255 47 53 50 255 -minecraft:sticky_piston[extended=false,facing=south] 119 133 126 255 95 106 100 255 59 66 63 255 47 53 50 255 -minecraft:sticky_piston[extended=false,facing=west] 119 133 126 255 95 106 100 255 59 66 63 255 47 53 50 255 -minecraft:sticky_piston[extended=false,facing=up] 119 133 126 255 95 106 100 255 59 66 63 255 47 53 50 255 -minecraft:sticky_piston[extended=false,facing=down] 119 133 126 255 95 106 100 255 59 66 63 255 47 53 50 255 +minecraft:sticky_piston 86 79 65 15 68 63 52 15 43 39 32 15 34 31 26 15 +minecraft:sticky_piston[extended=true,facing=east] 86 79 65 15 68 63 52 15 43 39 32 15 34 31 26 15 +minecraft:sticky_piston[extended=true,facing=south] 86 79 65 15 68 63 52 15 43 39 32 15 34 31 26 15 +minecraft:sticky_piston[extended=true,facing=west] 86 79 65 15 68 63 52 15 43 39 32 15 34 31 26 15 +minecraft:sticky_piston[extended=true,facing=up] 86 79 65 15 68 63 52 15 43 39 32 15 34 31 26 15 +minecraft:sticky_piston[extended=true,facing=down] 86 79 65 15 68 63 52 15 43 39 32 15 34 31 26 15 +minecraft:sticky_piston[extended=false,facing=north] 86 79 65 15 68 63 52 15 43 39 32 15 34 31 26 15 +minecraft:sticky_piston[extended=false,facing=east] 86 79 65 15 68 63 52 15 43 39 32 15 34 31 26 15 +minecraft:sticky_piston[extended=false,facing=south] 86 79 65 15 68 63 52 15 43 39 32 15 34 31 26 15 +minecraft:sticky_piston[extended=false,facing=west] 86 79 65 15 68 63 52 15 43 39 32 15 34 31 26 15 +minecraft:sticky_piston[extended=false,facing=up] 86 79 65 15 68 63 52 15 43 39 32 15 34 31 26 15 +minecraft:sticky_piston[extended=false,facing=down] 86 79 65 15 68 63 52 15 43 39 32 15 34 31 26 15 minecraft:cobweb 191 193 197 76 152 154 157 76 95 96 98 76 76 77 78 76 -minecraft:grass 57 101 42 64 45 80 33 64 28 50 21 64 22 40 16 64 -minecraft:fern 35 63 26 126 28 50 20 126 17 31 13 126 14 25 10 126 -minecraft:dead_bush 103 96 56 121 82 76 44 121 51 48 28 121 41 38 22 121 -minecraft:seagrass 15 51 8 67 12 40 6 67 7 25 4 67 6 20 3 67 -minecraft:tall_seagrass 16 55 9 62 12 44 7 62 8 27 4 62 6 22 3 62 -minecraft:tall_seagrass[half=lower] 15 53 8 99 12 42 6 99 7 26 4 99 6 21 3 99 -minecraft:piston 119 133 126 255 95 106 100 255 59 66 63 255 47 53 50 255 -minecraft:piston[extended=true,facing=east] 119 133 126 255 95 106 100 255 59 66 63 255 47 53 50 255 -minecraft:piston[extended=true,facing=south] 119 133 126 255 95 106 100 255 59 66 63 255 47 53 50 255 -minecraft:piston[extended=true,facing=west] 119 133 126 255 95 106 100 255 59 66 63 255 47 53 50 255 -minecraft:piston[extended=true,facing=up] 119 133 126 255 95 106 100 255 59 66 63 255 47 53 50 255 -minecraft:piston[extended=true,facing=down] 119 133 126 255 95 106 100 255 59 66 63 255 47 53 50 255 -minecraft:piston[extended=false,facing=north] 119 133 126 255 95 106 100 255 59 66 63 255 47 53 50 255 -minecraft:piston[extended=false,facing=east] 119 133 126 255 95 106 100 255 59 66 63 255 47 53 50 255 -minecraft:piston[extended=false,facing=south] 119 133 126 255 95 106 100 255 59 66 63 255 47 53 50 255 -minecraft:piston[extended=false,facing=west] 119 133 126 255 95 106 100 255 59 66 63 255 47 53 50 255 -minecraft:piston[extended=false,facing=up] 119 133 126 255 95 106 100 255 59 66 63 255 47 53 50 255 -minecraft:piston[extended=false,facing=down] 119 133 126 255 95 106 100 255 59 66 63 255 47 53 50 255 -minecraft:piston_head 119 133 126 255 95 106 100 255 59 66 63 255 47 53 50 255 -minecraft:piston_head[facing=north,short=true,type=sticky] 119 133 126 255 95 106 100 255 59 66 63 255 47 53 50 255 -minecraft:piston_head[facing=north,short=false,type=normal] 119 133 126 255 95 106 100 255 59 66 63 255 47 53 50 255 -minecraft:piston_head[facing=north,short=false,type=sticky] 119 133 126 255 95 106 100 255 59 66 63 255 47 53 50 255 -minecraft:piston_head[facing=east,short=true,type=normal] 119 133 126 255 95 106 100 255 59 66 63 255 47 53 50 255 -minecraft:piston_head[facing=east,short=true,type=sticky] 119 133 126 255 95 106 100 255 59 66 63 255 47 53 50 255 -minecraft:piston_head[facing=east,short=false,type=normal] 119 133 126 255 95 106 100 255 59 66 63 255 47 53 50 255 -minecraft:piston_head[facing=east,short=false,type=sticky] 119 133 126 255 95 106 100 255 59 66 63 255 47 53 50 255 -minecraft:piston_head[facing=south,short=true,type=normal] 119 133 126 255 95 106 100 255 59 66 63 255 47 53 50 255 -minecraft:piston_head[facing=south,short=true,type=sticky] 119 133 126 255 95 106 100 255 59 66 63 255 47 53 50 255 -minecraft:piston_head[facing=south,short=false,type=normal] 119 133 126 255 95 106 100 255 59 66 63 255 47 53 50 255 -minecraft:piston_head[facing=south,short=false,type=sticky] 119 133 126 255 95 106 100 255 59 66 63 255 47 53 50 255 -minecraft:piston_head[facing=west,short=true,type=normal] 119 133 126 255 95 106 100 255 59 66 63 255 47 53 50 255 -minecraft:piston_head[facing=west,short=true,type=sticky] 119 133 126 255 95 106 100 255 59 66 63 255 47 53 50 255 -minecraft:piston_head[facing=west,short=false,type=normal] 119 133 126 255 95 106 100 255 59 66 63 255 47 53 50 255 -minecraft:piston_head[facing=west,short=false,type=sticky] 119 133 126 255 95 106 100 255 59 66 63 255 47 53 50 255 -minecraft:piston_head[facing=up,short=true,type=normal] 119 133 126 255 95 106 100 255 59 66 63 255 47 53 50 255 -minecraft:piston_head[facing=up,short=true,type=sticky] 119 133 126 255 95 106 100 255 59 66 63 255 47 53 50 255 -minecraft:piston_head[facing=up,short=false,type=normal] 119 133 126 255 95 106 100 255 59 66 63 255 47 53 50 255 -minecraft:piston_head[facing=up,short=false,type=sticky] 119 133 126 255 95 106 100 255 59 66 63 255 47 53 50 255 -minecraft:piston_head[facing=down,short=true,type=normal] 119 133 126 255 95 106 100 255 59 66 63 255 47 53 50 255 -minecraft:piston_head[facing=down,short=true,type=sticky] 119 133 126 255 95 106 100 255 59 66 63 255 47 53 50 255 -minecraft:piston_head[facing=down,short=false,type=normal] 119 133 126 255 95 106 100 255 59 66 63 255 47 53 50 255 -minecraft:piston_head[facing=down,short=false,type=sticky] 119 133 126 255 95 106 100 255 59 66 63 255 47 53 50 255 +minecraft:grass 70 114 52 77 56 91 41 77 35 57 26 77 28 45 20 77 +minecraft:fern 44 71 32 133 35 56 25 133 22 35 16 133 17 28 12 133 +minecraft:dead_bush 107 78 40 77 85 62 32 77 53 39 20 77 42 31 16 77 +minecraft:seagrass 18 54 10 18 14 43 8 18 9 27 5 18 7 21 4 18 +minecraft:tall_seagrass 21 63 12 63 16 50 9 63 10 31 6 63 8 25 4 63 +minecraft:tall_seagrass[half=lower] 20 60 11 99 16 48 8 99 10 30 5 99 8 24 4 99 +minecraft:piston 86 79 65 15 68 63 52 15 43 39 32 15 34 31 26 15 +minecraft:piston[extended=true,facing=east] 86 79 65 15 68 63 52 15 43 39 32 15 34 31 26 15 +minecraft:piston[extended=true,facing=south] 86 79 65 15 68 63 52 15 43 39 32 15 34 31 26 15 +minecraft:piston[extended=true,facing=west] 86 79 65 15 68 63 52 15 43 39 32 15 34 31 26 15 +minecraft:piston[extended=true,facing=up] 86 79 65 15 68 63 52 15 43 39 32 15 34 31 26 15 +minecraft:piston[extended=true,facing=down] 86 79 65 15 68 63 52 15 43 39 32 15 34 31 26 15 +minecraft:piston[extended=false,facing=north] 86 79 65 15 68 63 52 15 43 39 32 15 34 31 26 15 +minecraft:piston[extended=false,facing=east] 86 79 65 15 68 63 52 15 43 39 32 15 34 31 26 15 +minecraft:piston[extended=false,facing=south] 86 79 65 15 68 63 52 15 43 39 32 15 34 31 26 15 +minecraft:piston[extended=false,facing=west] 86 79 65 15 68 63 52 15 43 39 32 15 34 31 26 15 +minecraft:piston[extended=false,facing=up] 86 79 65 15 68 63 52 15 43 39 32 15 34 31 26 15 +minecraft:piston[extended=false,facing=down] 86 79 65 15 68 63 52 15 43 39 32 15 34 31 26 15 +minecraft:piston_head 82 67 49 47 65 53 39 47 41 33 24 47 32 26 19 47 +minecraft:piston_head[facing=north,short=true,type=sticky] 82 67 49 47 65 53 39 47 41 33 24 47 32 26 19 47 +minecraft:piston_head[facing=north,short=false,type=normal] 82 67 49 47 65 53 39 47 41 33 24 47 32 26 19 47 +minecraft:piston_head[facing=north,short=false,type=sticky] 82 67 49 47 65 53 39 47 41 33 24 47 32 26 19 47 +minecraft:piston_head[facing=east,short=true,type=normal] 82 67 49 47 65 53 39 47 41 33 24 47 32 26 19 47 +minecraft:piston_head[facing=east,short=true,type=sticky] 82 67 49 47 65 53 39 47 41 33 24 47 32 26 19 47 +minecraft:piston_head[facing=east,short=false,type=normal] 82 67 49 47 65 53 39 47 41 33 24 47 32 26 19 47 +minecraft:piston_head[facing=east,short=false,type=sticky] 82 67 49 47 65 53 39 47 41 33 24 47 32 26 19 47 +minecraft:piston_head[facing=south,short=true,type=normal] 82 67 49 47 65 53 39 47 41 33 24 47 32 26 19 47 +minecraft:piston_head[facing=south,short=true,type=sticky] 82 67 49 47 65 53 39 47 41 33 24 47 32 26 19 47 +minecraft:piston_head[facing=south,short=false,type=normal] 82 67 49 47 65 53 39 47 41 33 24 47 32 26 19 47 +minecraft:piston_head[facing=south,short=false,type=sticky] 82 67 49 47 65 53 39 47 41 33 24 47 32 26 19 47 +minecraft:piston_head[facing=west,short=true,type=normal] 82 67 49 47 65 53 39 47 41 33 24 47 32 26 19 47 +minecraft:piston_head[facing=west,short=true,type=sticky] 82 67 49 47 65 53 39 47 41 33 24 47 32 26 19 47 +minecraft:piston_head[facing=west,short=false,type=normal] 82 67 49 47 65 53 39 47 41 33 24 47 32 26 19 47 +minecraft:piston_head[facing=west,short=false,type=sticky] 82 67 49 47 65 53 39 47 41 33 24 47 32 26 19 47 +minecraft:piston_head[facing=up,short=true,type=normal] 82 67 49 47 65 53 39 47 41 33 24 47 32 26 19 47 +minecraft:piston_head[facing=up,short=true,type=sticky] 82 67 49 47 65 53 39 47 41 33 24 47 32 26 19 47 +minecraft:piston_head[facing=up,short=false,type=normal] 82 67 49 47 65 53 39 47 41 33 24 47 32 26 19 47 +minecraft:piston_head[facing=up,short=false,type=sticky] 82 67 49 47 65 53 39 47 41 33 24 47 32 26 19 47 +minecraft:piston_head[facing=down,short=true,type=normal] 82 67 49 47 65 53 39 47 41 33 24 47 32 26 19 47 +minecraft:piston_head[facing=down,short=true,type=sticky] 82 67 49 47 65 53 39 47 41 33 24 47 32 26 19 47 +minecraft:piston_head[facing=down,short=false,type=normal] 82 67 49 47 65 53 39 47 41 33 24 47 32 26 19 47 +minecraft:piston_head[facing=down,short=false,type=sticky] 82 67 49 47 65 53 39 47 41 33 24 47 32 26 19 47 minecraft:white_wool 220 218 213 255 176 174 170 255 110 109 106 255 88 87 85 255 minecraft:orange_wool 217 100 46 255 173 80 36 255 108 50 23 255 86 40 18 255 minecraft:magenta_wool 169 81 188 255 135 64 150 255 84 40 94 255 67 32 75 255 @@ -1182,19 +1197,19 @@ minecraft:brown_wool 84 50 29 255 67 40 23 255 42 25 14 255 33 20 11 255 minecraft:green_wool 54 98 25 255 43 78 20 255 27 49 12 255 21 39 10 255 minecraft:red_wool 130 33 34 255 104 26 27 255 65 16 17 255 52 13 13 255 minecraft:black_wool 25 23 21 255 20 18 16 255 12 11 10 255 10 9 8 255 -minecraft:dandelion 122 112 26 19 97 89 20 19 61 56 13 19 48 44 10 19 -minecraft:poppy 94 33 25 22 75 26 20 22 47 16 12 22 37 13 10 22 +minecraft:dandelion 147 172 43 31 117 137 34 31 73 86 21 31 58 68 17 31 +minecraft:poppy 128 64 37 34 102 51 29 34 64 32 18 34 51 25 14 34 minecraft:blue_orchid 59 100 122 63 47 80 97 63 29 50 61 63 23 40 48 63 minecraft:allium 117 106 120 68 93 84 96 68 58 53 60 68 46 42 48 68 -minecraft:azure_bluet 63 69 55 69 50 55 44 69 31 34 27 69 25 27 22 69 -minecraft:red_tulip 96 69 39 104 76 55 31 104 48 34 19 104 38 27 15 104 -minecraft:orange_tulip 98 92 35 104 78 73 28 104 49 46 17 104 39 36 14 104 -minecraft:white_tulip 117 135 98 104 93 108 78 104 58 67 49 104 46 54 39 104 -minecraft:pink_tulip 113 100 69 104 90 80 55 104 56 50 34 104 45 40 27 104 -minecraft:oxeye_daisy 180 183 162 51 144 146 129 51 90 91 81 51 72 73 64 51 -minecraft:cornflower 59 94 127 60 47 75 101 60 29 47 63 60 23 37 50 60 -minecraft:wither_rose 32 36 29 18 25 28 23 18 16 18 14 18 12 14 11 18 -minecraft:lily_of_the_valley 126 154 120 45 100 123 96 45 63 77 60 45 50 61 48 45 +minecraft:azure_bluet 140 149 115 43 112 119 92 43 70 74 57 43 56 59 46 43 +minecraft:red_tulip 89 128 32 48 71 102 25 48 44 64 16 48 35 51 12 48 +minecraft:orange_tulip 93 142 30 40 74 113 24 40 46 71 15 40 37 56 12 40 +minecraft:white_tulip 93 164 71 44 74 131 56 44 46 82 35 44 37 65 28 44 +minecraft:pink_tulip 99 157 78 40 79 125 62 40 49 78 39 40 39 62 31 40 +minecraft:oxeye_daisy 174 174 151 77 139 139 120 77 87 87 75 77 69 69 60 77 +minecraft:cornflower 58 93 124 72 46 74 99 72 29 46 62 72 23 37 49 72 +minecraft:wither_rose 32 37 28 36 25 29 22 36 16 18 14 36 12 14 11 36 +minecraft:lily_of_the_valley 108 136 101 60 86 108 80 60 54 68 50 60 43 54 40 60 minecraft:brown_mushroom 142 108 85 43 113 86 68 43 71 54 42 43 56 43 34 43 minecraft:red_mushroom 157 89 78 35 125 71 62 35 78 44 39 35 62 35 31 35 minecraft:gold_block 189 160 89 255 151 128 71 255 94 80 44 255 75 64 35 255 @@ -1205,524 +1220,524 @@ minecraft:tnt[unstable=false] 88 36 30 255 70 28 24 255 44 18 15 255 35 14 12 25 minecraft:bookshelf 86 70 50 255 68 56 40 255 43 35 25 255 34 28 20 255 minecraft:mossy_cobblestone 83 104 73 255 66 83 58 255 41 52 36 255 33 41 29 255 minecraft:obsidian 47 44 57 255 37 35 45 255 23 22 28 255 18 17 22 255 -minecraft:torch 70 71 68 71 56 56 54 71 35 35 34 71 28 28 27 71 -minecraft:wall_torch 70 71 68 71 56 56 54 71 35 35 34 71 28 28 27 71 -minecraft:wall_torch[facing=south] 70 71 68 71 56 56 54 71 35 35 34 71 28 28 27 71 -minecraft:wall_torch[facing=west] 70 71 68 71 56 56 54 71 35 35 34 71 28 28 27 71 -minecraft:wall_torch[facing=east] 70 71 68 71 56 56 54 71 35 35 34 71 28 28 27 71 -minecraft:fire 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=0,east=true,north=true,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=0,east=true,north=true,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=0,east=true,north=true,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=0,east=true,north=true,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=0,east=true,north=true,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=0,east=true,north=true,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=0,east=true,north=true,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=0,east=true,north=false,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=0,east=true,north=false,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=0,east=true,north=false,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=0,east=true,north=false,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=0,east=true,north=false,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=0,east=true,north=false,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=0,east=true,north=false,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=0,east=true,north=false,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=0,east=false,north=true,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=0,east=false,north=true,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=0,east=false,north=true,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=0,east=false,north=true,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=0,east=false,north=true,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=0,east=false,north=true,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=0,east=false,north=true,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=0,east=false,north=true,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=0,east=false,north=false,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=0,east=false,north=false,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=0,east=false,north=false,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=0,east=false,north=false,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=0,east=false,north=false,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=0,east=false,north=false,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=0,east=false,north=false,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=0,east=false,north=false,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=1,east=true,north=true,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=1,east=true,north=true,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=1,east=true,north=true,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=1,east=true,north=true,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=1,east=true,north=true,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=1,east=true,north=true,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=1,east=true,north=true,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=1,east=true,north=true,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=1,east=true,north=false,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=1,east=true,north=false,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=1,east=true,north=false,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=1,east=true,north=false,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=1,east=true,north=false,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=1,east=true,north=false,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=1,east=true,north=false,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=1,east=true,north=false,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=1,east=false,north=true,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=1,east=false,north=true,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=1,east=false,north=true,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=1,east=false,north=true,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=1,east=false,north=true,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=1,east=false,north=true,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=1,east=false,north=true,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=1,east=false,north=true,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=1,east=false,north=false,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=1,east=false,north=false,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=1,east=false,north=false,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=1,east=false,north=false,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=1,east=false,north=false,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=1,east=false,north=false,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=1,east=false,north=false,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=1,east=false,north=false,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=2,east=true,north=true,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=2,east=true,north=true,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=2,east=true,north=true,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=2,east=true,north=true,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=2,east=true,north=true,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=2,east=true,north=true,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=2,east=true,north=true,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=2,east=true,north=true,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=2,east=true,north=false,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=2,east=true,north=false,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=2,east=true,north=false,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=2,east=true,north=false,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=2,east=true,north=false,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=2,east=true,north=false,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=2,east=true,north=false,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=2,east=true,north=false,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=2,east=false,north=true,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=2,east=false,north=true,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=2,east=false,north=true,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=2,east=false,north=true,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=2,east=false,north=true,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=2,east=false,north=true,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=2,east=false,north=true,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=2,east=false,north=true,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=2,east=false,north=false,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=2,east=false,north=false,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=2,east=false,north=false,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=2,east=false,north=false,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=2,east=false,north=false,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=2,east=false,north=false,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=2,east=false,north=false,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=2,east=false,north=false,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=3,east=true,north=true,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=3,east=true,north=true,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=3,east=true,north=true,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=3,east=true,north=true,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=3,east=true,north=true,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=3,east=true,north=true,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=3,east=true,north=true,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=3,east=true,north=true,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=3,east=true,north=false,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=3,east=true,north=false,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=3,east=true,north=false,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=3,east=true,north=false,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=3,east=true,north=false,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=3,east=true,north=false,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=3,east=true,north=false,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=3,east=true,north=false,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=3,east=false,north=true,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=3,east=false,north=true,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=3,east=false,north=true,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=3,east=false,north=true,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=3,east=false,north=true,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=3,east=false,north=true,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=3,east=false,north=true,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=3,east=false,north=true,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=3,east=false,north=false,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=3,east=false,north=false,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=3,east=false,north=false,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=3,east=false,north=false,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=3,east=false,north=false,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=3,east=false,north=false,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=3,east=false,north=false,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=3,east=false,north=false,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=4,east=true,north=true,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=4,east=true,north=true,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=4,east=true,north=true,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=4,east=true,north=true,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=4,east=true,north=true,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=4,east=true,north=true,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=4,east=true,north=true,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=4,east=true,north=true,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=4,east=true,north=false,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=4,east=true,north=false,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=4,east=true,north=false,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=4,east=true,north=false,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=4,east=true,north=false,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=4,east=true,north=false,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=4,east=true,north=false,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=4,east=true,north=false,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=4,east=false,north=true,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=4,east=false,north=true,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=4,east=false,north=true,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=4,east=false,north=true,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=4,east=false,north=true,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=4,east=false,north=true,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=4,east=false,north=true,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=4,east=false,north=true,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=4,east=false,north=false,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=4,east=false,north=false,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=4,east=false,north=false,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=4,east=false,north=false,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=4,east=false,north=false,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=4,east=false,north=false,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=4,east=false,north=false,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=4,east=false,north=false,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=5,east=true,north=true,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=5,east=true,north=true,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=5,east=true,north=true,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=5,east=true,north=true,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=5,east=true,north=true,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=5,east=true,north=true,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=5,east=true,north=true,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=5,east=true,north=true,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=5,east=true,north=false,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=5,east=true,north=false,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=5,east=true,north=false,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=5,east=true,north=false,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=5,east=true,north=false,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=5,east=true,north=false,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=5,east=true,north=false,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=5,east=true,north=false,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=5,east=false,north=true,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=5,east=false,north=true,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=5,east=false,north=true,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=5,east=false,north=true,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=5,east=false,north=true,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=5,east=false,north=true,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=5,east=false,north=true,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=5,east=false,north=true,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=5,east=false,north=false,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=5,east=false,north=false,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=5,east=false,north=false,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=5,east=false,north=false,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=5,east=false,north=false,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=5,east=false,north=false,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=5,east=false,north=false,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=5,east=false,north=false,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=6,east=true,north=true,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=6,east=true,north=true,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=6,east=true,north=true,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=6,east=true,north=true,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=6,east=true,north=true,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=6,east=true,north=true,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=6,east=true,north=true,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=6,east=true,north=true,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=6,east=true,north=false,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=6,east=true,north=false,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=6,east=true,north=false,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=6,east=true,north=false,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=6,east=true,north=false,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=6,east=true,north=false,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=6,east=true,north=false,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=6,east=true,north=false,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=6,east=false,north=true,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=6,east=false,north=true,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=6,east=false,north=true,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=6,east=false,north=true,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=6,east=false,north=true,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=6,east=false,north=true,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=6,east=false,north=true,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=6,east=false,north=true,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=6,east=false,north=false,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=6,east=false,north=false,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=6,east=false,north=false,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=6,east=false,north=false,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=6,east=false,north=false,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=6,east=false,north=false,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=6,east=false,north=false,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=6,east=false,north=false,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=7,east=true,north=true,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=7,east=true,north=true,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=7,east=true,north=true,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=7,east=true,north=true,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=7,east=true,north=true,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=7,east=true,north=true,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=7,east=true,north=true,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=7,east=true,north=true,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=7,east=true,north=false,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=7,east=true,north=false,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=7,east=true,north=false,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=7,east=true,north=false,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=7,east=true,north=false,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=7,east=true,north=false,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=7,east=true,north=false,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=7,east=true,north=false,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=7,east=false,north=true,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=7,east=false,north=true,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=7,east=false,north=true,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=7,east=false,north=true,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=7,east=false,north=true,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=7,east=false,north=true,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=7,east=false,north=true,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=7,east=false,north=true,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=7,east=false,north=false,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=7,east=false,north=false,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=7,east=false,north=false,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=7,east=false,north=false,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=7,east=false,north=false,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=7,east=false,north=false,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=7,east=false,north=false,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=7,east=false,north=false,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=8,east=true,north=true,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=8,east=true,north=true,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=8,east=true,north=true,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=8,east=true,north=true,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=8,east=true,north=true,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=8,east=true,north=true,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=8,east=true,north=true,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=8,east=true,north=true,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=8,east=true,north=false,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=8,east=true,north=false,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=8,east=true,north=false,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=8,east=true,north=false,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=8,east=true,north=false,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=8,east=true,north=false,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=8,east=true,north=false,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=8,east=true,north=false,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=8,east=false,north=true,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=8,east=false,north=true,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=8,east=false,north=true,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=8,east=false,north=true,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=8,east=false,north=true,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=8,east=false,north=true,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=8,east=false,north=true,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=8,east=false,north=true,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=8,east=false,north=false,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=8,east=false,north=false,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=8,east=false,north=false,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=8,east=false,north=false,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=8,east=false,north=false,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=8,east=false,north=false,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=8,east=false,north=false,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=8,east=false,north=false,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=9,east=true,north=true,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=9,east=true,north=true,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=9,east=true,north=true,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=9,east=true,north=true,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=9,east=true,north=true,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=9,east=true,north=true,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=9,east=true,north=true,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=9,east=true,north=true,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=9,east=true,north=false,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=9,east=true,north=false,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=9,east=true,north=false,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=9,east=true,north=false,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=9,east=true,north=false,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=9,east=true,north=false,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=9,east=true,north=false,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=9,east=true,north=false,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=9,east=false,north=true,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=9,east=false,north=true,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=9,east=false,north=true,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=9,east=false,north=true,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=9,east=false,north=true,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=9,east=false,north=true,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=9,east=false,north=true,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=9,east=false,north=true,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=9,east=false,north=false,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=9,east=false,north=false,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=9,east=false,north=false,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=9,east=false,north=false,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=9,east=false,north=false,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=9,east=false,north=false,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=9,east=false,north=false,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=9,east=false,north=false,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=10,east=true,north=true,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=10,east=true,north=true,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=10,east=true,north=true,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=10,east=true,north=true,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=10,east=true,north=true,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=10,east=true,north=true,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=10,east=true,north=true,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=10,east=true,north=true,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=10,east=true,north=false,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=10,east=true,north=false,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=10,east=true,north=false,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=10,east=true,north=false,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=10,east=true,north=false,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=10,east=true,north=false,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=10,east=true,north=false,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=10,east=true,north=false,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=10,east=false,north=true,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=10,east=false,north=true,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=10,east=false,north=true,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=10,east=false,north=true,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=10,east=false,north=true,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=10,east=false,north=true,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=10,east=false,north=true,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=10,east=false,north=true,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=10,east=false,north=false,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=10,east=false,north=false,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=10,east=false,north=false,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=10,east=false,north=false,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=10,east=false,north=false,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=10,east=false,north=false,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=10,east=false,north=false,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=10,east=false,north=false,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=11,east=true,north=true,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=11,east=true,north=true,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=11,east=true,north=true,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=11,east=true,north=true,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=11,east=true,north=true,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=11,east=true,north=true,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=11,east=true,north=true,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=11,east=true,north=true,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=11,east=true,north=false,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=11,east=true,north=false,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=11,east=true,north=false,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=11,east=true,north=false,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=11,east=true,north=false,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=11,east=true,north=false,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=11,east=true,north=false,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=11,east=true,north=false,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=11,east=false,north=true,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=11,east=false,north=true,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=11,east=false,north=true,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=11,east=false,north=true,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=11,east=false,north=true,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=11,east=false,north=true,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=11,east=false,north=true,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=11,east=false,north=true,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=11,east=false,north=false,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=11,east=false,north=false,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=11,east=false,north=false,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=11,east=false,north=false,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=11,east=false,north=false,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=11,east=false,north=false,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=11,east=false,north=false,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=11,east=false,north=false,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=12,east=true,north=true,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=12,east=true,north=true,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=12,east=true,north=true,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=12,east=true,north=true,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=12,east=true,north=true,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=12,east=true,north=true,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=12,east=true,north=true,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=12,east=true,north=true,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=12,east=true,north=false,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=12,east=true,north=false,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=12,east=true,north=false,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=12,east=true,north=false,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=12,east=true,north=false,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=12,east=true,north=false,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=12,east=true,north=false,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=12,east=true,north=false,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=12,east=false,north=true,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=12,east=false,north=true,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=12,east=false,north=true,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=12,east=false,north=true,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=12,east=false,north=true,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=12,east=false,north=true,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=12,east=false,north=true,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=12,east=false,north=true,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=12,east=false,north=false,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=12,east=false,north=false,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=12,east=false,north=false,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=12,east=false,north=false,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=12,east=false,north=false,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=12,east=false,north=false,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=12,east=false,north=false,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=12,east=false,north=false,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=13,east=true,north=true,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=13,east=true,north=true,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=13,east=true,north=true,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=13,east=true,north=true,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=13,east=true,north=true,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=13,east=true,north=true,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=13,east=true,north=true,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=13,east=true,north=true,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=13,east=true,north=false,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=13,east=true,north=false,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=13,east=true,north=false,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=13,east=true,north=false,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=13,east=true,north=false,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=13,east=true,north=false,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=13,east=true,north=false,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=13,east=true,north=false,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=13,east=false,north=true,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=13,east=false,north=true,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=13,east=false,north=true,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=13,east=false,north=true,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=13,east=false,north=true,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=13,east=false,north=true,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=13,east=false,north=true,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=13,east=false,north=true,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=13,east=false,north=false,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=13,east=false,north=false,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=13,east=false,north=false,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=13,east=false,north=false,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=13,east=false,north=false,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=13,east=false,north=false,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=13,east=false,north=false,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=13,east=false,north=false,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=14,east=true,north=true,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=14,east=true,north=true,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=14,east=true,north=true,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=14,east=true,north=true,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=14,east=true,north=true,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=14,east=true,north=true,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=14,east=true,north=true,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=14,east=true,north=true,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=14,east=true,north=false,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=14,east=true,north=false,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=14,east=true,north=false,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=14,east=true,north=false,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=14,east=true,north=false,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=14,east=true,north=false,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=14,east=true,north=false,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=14,east=true,north=false,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=14,east=false,north=true,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=14,east=false,north=true,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=14,east=false,north=true,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=14,east=false,north=true,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=14,east=false,north=true,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=14,east=false,north=true,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=14,east=false,north=true,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=14,east=false,north=true,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=14,east=false,north=false,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=14,east=false,north=false,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=14,east=false,north=false,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=14,east=false,north=false,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=14,east=false,north=false,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=14,east=false,north=false,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=14,east=false,north=false,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=14,east=false,north=false,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=15,east=true,north=true,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=15,east=true,north=true,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=15,east=true,north=true,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=15,east=true,north=true,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=15,east=true,north=true,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=15,east=true,north=true,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=15,east=true,north=true,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=15,east=true,north=true,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=15,east=true,north=false,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=15,east=true,north=false,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=15,east=true,north=false,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=15,east=true,north=false,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=15,east=true,north=false,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=15,east=true,north=false,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=15,east=true,north=false,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=15,east=true,north=false,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=15,east=false,north=true,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=15,east=false,north=true,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=15,east=false,north=true,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=15,east=false,north=true,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=15,east=false,north=true,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=15,east=false,north=true,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=15,east=false,north=true,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=15,east=false,north=true,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=15,east=false,north=false,south=true,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=15,east=false,north=false,south=true,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=15,east=false,north=false,south=true,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=15,east=false,north=false,south=true,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=15,east=false,north=false,south=false,up=true,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=15,east=false,north=false,south=false,up=true,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=15,east=false,north=false,south=false,up=false,west=true] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:fire[age=15,east=false,north=false,south=false,up=false,west=false] 239 149 41 167 191 119 32 167 119 74 20 167 95 59 16 167 -minecraft:soul_fire 54 195 200 145 43 156 160 145 27 97 100 145 21 78 80 145 +minecraft:torch 68 69 65 75 54 55 52 75 34 34 32 75 27 27 26 75 +minecraft:wall_torch 68 69 65 75 54 55 52 75 34 34 32 75 27 27 26 75 +minecraft:wall_torch[facing=south] 68 69 65 75 54 55 52 75 34 34 32 75 27 27 26 75 +minecraft:wall_torch[facing=west] 68 69 65 75 54 55 52 75 34 34 32 75 27 27 26 75 +minecraft:wall_torch[facing=east] 68 69 65 75 54 55 52 75 34 34 32 75 27 27 26 75 +minecraft:fire 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=0,east=true,north=true,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=0,east=true,north=true,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=0,east=true,north=true,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=0,east=true,north=true,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=0,east=true,north=true,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=0,east=true,north=true,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=0,east=true,north=true,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=0,east=true,north=false,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=0,east=true,north=false,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=0,east=true,north=false,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=0,east=true,north=false,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=0,east=true,north=false,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=0,east=true,north=false,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=0,east=true,north=false,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=0,east=true,north=false,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=0,east=false,north=true,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=0,east=false,north=true,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=0,east=false,north=true,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=0,east=false,north=true,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=0,east=false,north=true,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=0,east=false,north=true,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=0,east=false,north=true,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=0,east=false,north=true,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=0,east=false,north=false,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=0,east=false,north=false,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=0,east=false,north=false,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=0,east=false,north=false,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=0,east=false,north=false,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=0,east=false,north=false,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=0,east=false,north=false,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=0,east=false,north=false,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=1,east=true,north=true,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=1,east=true,north=true,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=1,east=true,north=true,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=1,east=true,north=true,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=1,east=true,north=true,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=1,east=true,north=true,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=1,east=true,north=true,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=1,east=true,north=true,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=1,east=true,north=false,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=1,east=true,north=false,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=1,east=true,north=false,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=1,east=true,north=false,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=1,east=true,north=false,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=1,east=true,north=false,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=1,east=true,north=false,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=1,east=true,north=false,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=1,east=false,north=true,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=1,east=false,north=true,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=1,east=false,north=true,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=1,east=false,north=true,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=1,east=false,north=true,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=1,east=false,north=true,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=1,east=false,north=true,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=1,east=false,north=true,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=1,east=false,north=false,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=1,east=false,north=false,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=1,east=false,north=false,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=1,east=false,north=false,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=1,east=false,north=false,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=1,east=false,north=false,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=1,east=false,north=false,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=1,east=false,north=false,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=2,east=true,north=true,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=2,east=true,north=true,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=2,east=true,north=true,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=2,east=true,north=true,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=2,east=true,north=true,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=2,east=true,north=true,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=2,east=true,north=true,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=2,east=true,north=true,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=2,east=true,north=false,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=2,east=true,north=false,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=2,east=true,north=false,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=2,east=true,north=false,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=2,east=true,north=false,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=2,east=true,north=false,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=2,east=true,north=false,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=2,east=true,north=false,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=2,east=false,north=true,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=2,east=false,north=true,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=2,east=false,north=true,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=2,east=false,north=true,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=2,east=false,north=true,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=2,east=false,north=true,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=2,east=false,north=true,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=2,east=false,north=true,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=2,east=false,north=false,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=2,east=false,north=false,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=2,east=false,north=false,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=2,east=false,north=false,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=2,east=false,north=false,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=2,east=false,north=false,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=2,east=false,north=false,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=2,east=false,north=false,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=3,east=true,north=true,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=3,east=true,north=true,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=3,east=true,north=true,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=3,east=true,north=true,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=3,east=true,north=true,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=3,east=true,north=true,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=3,east=true,north=true,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=3,east=true,north=true,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=3,east=true,north=false,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=3,east=true,north=false,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=3,east=true,north=false,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=3,east=true,north=false,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=3,east=true,north=false,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=3,east=true,north=false,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=3,east=true,north=false,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=3,east=true,north=false,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=3,east=false,north=true,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=3,east=false,north=true,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=3,east=false,north=true,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=3,east=false,north=true,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=3,east=false,north=true,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=3,east=false,north=true,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=3,east=false,north=true,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=3,east=false,north=true,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=3,east=false,north=false,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=3,east=false,north=false,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=3,east=false,north=false,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=3,east=false,north=false,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=3,east=false,north=false,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=3,east=false,north=false,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=3,east=false,north=false,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=3,east=false,north=false,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=4,east=true,north=true,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=4,east=true,north=true,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=4,east=true,north=true,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=4,east=true,north=true,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=4,east=true,north=true,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=4,east=true,north=true,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=4,east=true,north=true,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=4,east=true,north=true,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=4,east=true,north=false,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=4,east=true,north=false,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=4,east=true,north=false,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=4,east=true,north=false,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=4,east=true,north=false,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=4,east=true,north=false,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=4,east=true,north=false,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=4,east=true,north=false,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=4,east=false,north=true,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=4,east=false,north=true,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=4,east=false,north=true,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=4,east=false,north=true,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=4,east=false,north=true,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=4,east=false,north=true,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=4,east=false,north=true,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=4,east=false,north=true,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=4,east=false,north=false,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=4,east=false,north=false,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=4,east=false,north=false,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=4,east=false,north=false,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=4,east=false,north=false,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=4,east=false,north=false,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=4,east=false,north=false,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=4,east=false,north=false,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=5,east=true,north=true,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=5,east=true,north=true,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=5,east=true,north=true,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=5,east=true,north=true,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=5,east=true,north=true,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=5,east=true,north=true,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=5,east=true,north=true,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=5,east=true,north=true,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=5,east=true,north=false,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=5,east=true,north=false,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=5,east=true,north=false,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=5,east=true,north=false,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=5,east=true,north=false,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=5,east=true,north=false,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=5,east=true,north=false,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=5,east=true,north=false,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=5,east=false,north=true,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=5,east=false,north=true,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=5,east=false,north=true,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=5,east=false,north=true,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=5,east=false,north=true,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=5,east=false,north=true,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=5,east=false,north=true,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=5,east=false,north=true,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=5,east=false,north=false,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=5,east=false,north=false,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=5,east=false,north=false,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=5,east=false,north=false,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=5,east=false,north=false,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=5,east=false,north=false,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=5,east=false,north=false,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=5,east=false,north=false,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=6,east=true,north=true,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=6,east=true,north=true,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=6,east=true,north=true,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=6,east=true,north=true,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=6,east=true,north=true,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=6,east=true,north=true,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=6,east=true,north=true,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=6,east=true,north=true,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=6,east=true,north=false,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=6,east=true,north=false,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=6,east=true,north=false,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=6,east=true,north=false,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=6,east=true,north=false,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=6,east=true,north=false,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=6,east=true,north=false,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=6,east=true,north=false,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=6,east=false,north=true,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=6,east=false,north=true,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=6,east=false,north=true,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=6,east=false,north=true,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=6,east=false,north=true,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=6,east=false,north=true,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=6,east=false,north=true,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=6,east=false,north=true,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=6,east=false,north=false,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=6,east=false,north=false,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=6,east=false,north=false,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=6,east=false,north=false,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=6,east=false,north=false,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=6,east=false,north=false,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=6,east=false,north=false,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=6,east=false,north=false,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=7,east=true,north=true,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=7,east=true,north=true,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=7,east=true,north=true,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=7,east=true,north=true,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=7,east=true,north=true,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=7,east=true,north=true,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=7,east=true,north=true,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=7,east=true,north=true,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=7,east=true,north=false,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=7,east=true,north=false,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=7,east=true,north=false,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=7,east=true,north=false,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=7,east=true,north=false,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=7,east=true,north=false,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=7,east=true,north=false,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=7,east=true,north=false,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=7,east=false,north=true,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=7,east=false,north=true,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=7,east=false,north=true,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=7,east=false,north=true,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=7,east=false,north=true,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=7,east=false,north=true,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=7,east=false,north=true,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=7,east=false,north=true,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=7,east=false,north=false,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=7,east=false,north=false,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=7,east=false,north=false,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=7,east=false,north=false,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=7,east=false,north=false,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=7,east=false,north=false,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=7,east=false,north=false,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=7,east=false,north=false,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=8,east=true,north=true,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=8,east=true,north=true,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=8,east=true,north=true,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=8,east=true,north=true,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=8,east=true,north=true,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=8,east=true,north=true,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=8,east=true,north=true,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=8,east=true,north=true,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=8,east=true,north=false,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=8,east=true,north=false,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=8,east=true,north=false,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=8,east=true,north=false,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=8,east=true,north=false,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=8,east=true,north=false,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=8,east=true,north=false,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=8,east=true,north=false,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=8,east=false,north=true,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=8,east=false,north=true,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=8,east=false,north=true,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=8,east=false,north=true,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=8,east=false,north=true,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=8,east=false,north=true,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=8,east=false,north=true,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=8,east=false,north=true,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=8,east=false,north=false,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=8,east=false,north=false,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=8,east=false,north=false,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=8,east=false,north=false,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=8,east=false,north=false,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=8,east=false,north=false,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=8,east=false,north=false,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=8,east=false,north=false,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=9,east=true,north=true,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=9,east=true,north=true,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=9,east=true,north=true,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=9,east=true,north=true,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=9,east=true,north=true,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=9,east=true,north=true,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=9,east=true,north=true,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=9,east=true,north=true,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=9,east=true,north=false,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=9,east=true,north=false,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=9,east=true,north=false,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=9,east=true,north=false,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=9,east=true,north=false,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=9,east=true,north=false,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=9,east=true,north=false,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=9,east=true,north=false,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=9,east=false,north=true,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=9,east=false,north=true,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=9,east=false,north=true,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=9,east=false,north=true,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=9,east=false,north=true,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=9,east=false,north=true,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=9,east=false,north=true,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=9,east=false,north=true,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=9,east=false,north=false,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=9,east=false,north=false,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=9,east=false,north=false,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=9,east=false,north=false,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=9,east=false,north=false,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=9,east=false,north=false,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=9,east=false,north=false,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=9,east=false,north=false,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=10,east=true,north=true,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=10,east=true,north=true,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=10,east=true,north=true,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=10,east=true,north=true,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=10,east=true,north=true,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=10,east=true,north=true,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=10,east=true,north=true,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=10,east=true,north=true,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=10,east=true,north=false,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=10,east=true,north=false,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=10,east=true,north=false,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=10,east=true,north=false,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=10,east=true,north=false,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=10,east=true,north=false,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=10,east=true,north=false,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=10,east=true,north=false,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=10,east=false,north=true,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=10,east=false,north=true,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=10,east=false,north=true,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=10,east=false,north=true,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=10,east=false,north=true,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=10,east=false,north=true,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=10,east=false,north=true,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=10,east=false,north=true,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=10,east=false,north=false,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=10,east=false,north=false,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=10,east=false,north=false,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=10,east=false,north=false,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=10,east=false,north=false,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=10,east=false,north=false,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=10,east=false,north=false,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=10,east=false,north=false,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=11,east=true,north=true,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=11,east=true,north=true,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=11,east=true,north=true,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=11,east=true,north=true,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=11,east=true,north=true,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=11,east=true,north=true,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=11,east=true,north=true,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=11,east=true,north=true,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=11,east=true,north=false,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=11,east=true,north=false,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=11,east=true,north=false,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=11,east=true,north=false,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=11,east=true,north=false,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=11,east=true,north=false,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=11,east=true,north=false,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=11,east=true,north=false,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=11,east=false,north=true,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=11,east=false,north=true,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=11,east=false,north=true,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=11,east=false,north=true,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=11,east=false,north=true,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=11,east=false,north=true,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=11,east=false,north=true,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=11,east=false,north=true,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=11,east=false,north=false,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=11,east=false,north=false,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=11,east=false,north=false,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=11,east=false,north=false,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=11,east=false,north=false,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=11,east=false,north=false,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=11,east=false,north=false,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=11,east=false,north=false,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=12,east=true,north=true,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=12,east=true,north=true,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=12,east=true,north=true,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=12,east=true,north=true,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=12,east=true,north=true,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=12,east=true,north=true,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=12,east=true,north=true,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=12,east=true,north=true,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=12,east=true,north=false,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=12,east=true,north=false,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=12,east=true,north=false,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=12,east=true,north=false,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=12,east=true,north=false,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=12,east=true,north=false,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=12,east=true,north=false,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=12,east=true,north=false,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=12,east=false,north=true,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=12,east=false,north=true,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=12,east=false,north=true,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=12,east=false,north=true,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=12,east=false,north=true,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=12,east=false,north=true,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=12,east=false,north=true,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=12,east=false,north=true,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=12,east=false,north=false,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=12,east=false,north=false,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=12,east=false,north=false,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=12,east=false,north=false,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=12,east=false,north=false,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=12,east=false,north=false,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=12,east=false,north=false,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=12,east=false,north=false,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=13,east=true,north=true,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=13,east=true,north=true,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=13,east=true,north=true,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=13,east=true,north=true,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=13,east=true,north=true,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=13,east=true,north=true,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=13,east=true,north=true,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=13,east=true,north=true,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=13,east=true,north=false,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=13,east=true,north=false,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=13,east=true,north=false,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=13,east=true,north=false,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=13,east=true,north=false,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=13,east=true,north=false,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=13,east=true,north=false,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=13,east=true,north=false,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=13,east=false,north=true,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=13,east=false,north=true,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=13,east=false,north=true,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=13,east=false,north=true,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=13,east=false,north=true,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=13,east=false,north=true,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=13,east=false,north=true,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=13,east=false,north=true,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=13,east=false,north=false,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=13,east=false,north=false,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=13,east=false,north=false,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=13,east=false,north=false,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=13,east=false,north=false,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=13,east=false,north=false,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=13,east=false,north=false,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=13,east=false,north=false,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=14,east=true,north=true,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=14,east=true,north=true,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=14,east=true,north=true,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=14,east=true,north=true,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=14,east=true,north=true,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=14,east=true,north=true,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=14,east=true,north=true,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=14,east=true,north=true,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=14,east=true,north=false,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=14,east=true,north=false,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=14,east=true,north=false,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=14,east=true,north=false,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=14,east=true,north=false,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=14,east=true,north=false,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=14,east=true,north=false,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=14,east=true,north=false,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=14,east=false,north=true,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=14,east=false,north=true,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=14,east=false,north=true,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=14,east=false,north=true,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=14,east=false,north=true,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=14,east=false,north=true,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=14,east=false,north=true,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=14,east=false,north=true,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=14,east=false,north=false,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=14,east=false,north=false,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=14,east=false,north=false,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=14,east=false,north=false,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=14,east=false,north=false,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=14,east=false,north=false,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=14,east=false,north=false,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=14,east=false,north=false,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=15,east=true,north=true,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=15,east=true,north=true,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=15,east=true,north=true,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=15,east=true,north=true,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=15,east=true,north=true,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=15,east=true,north=true,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=15,east=true,north=true,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=15,east=true,north=true,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=15,east=true,north=false,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=15,east=true,north=false,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=15,east=true,north=false,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=15,east=true,north=false,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=15,east=true,north=false,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=15,east=true,north=false,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=15,east=true,north=false,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=15,east=true,north=false,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=15,east=false,north=true,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=15,east=false,north=true,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=15,east=false,north=true,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=15,east=false,north=true,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=15,east=false,north=true,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=15,east=false,north=true,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=15,east=false,north=true,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=15,east=false,north=true,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=15,east=false,north=false,south=true,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=15,east=false,north=false,south=true,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=15,east=false,north=false,south=true,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=15,east=false,north=false,south=true,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=15,east=false,north=false,south=false,up=true,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=15,east=false,north=false,south=false,up=true,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=15,east=false,north=false,south=false,up=false,west=true] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:fire[age=15,east=false,north=false,south=false,up=false,west=false] 233 125 30 104 186 100 24 104 116 62 15 104 93 50 12 104 +minecraft:soul_fire 126 244 255 167 100 195 204 167 63 122 127 167 50 97 102 167 minecraft:spawner 61 58 54 204 48 46 43 204 30 29 27 204 24 23 21 204 minecraft:oak_stairs 86 70 50 255 68 56 40 255 43 35 25 255 34 28 20 255 minecraft:oak_stairs[facing=north,half=top,shape=straight,waterlogged=false] 86 70 50 255 68 56 40 255 43 35 25 255 34 28 20 255 @@ -3125,17 +3140,17 @@ minecraft:redstone_wire[east=none,north=none,power=15,south=none,west=up] 233 23 minecraft:redstone_wire[east=none,north=none,power=15,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 minecraft:redstone_wire[east=none,north=none,power=15,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 minecraft:diamond_ore 107 140 139 255 85 112 111 255 53 70 69 255 42 56 55 255 -minecraft:deepslate_diamond_ore 83 106 106 255 66 84 84 255 41 53 53 255 33 42 42 255 +minecraft:deepslate_diamond_ore 75 100 106 255 60 80 84 255 37 50 53 255 30 40 42 255 minecraft:diamond_block 109 148 146 255 87 118 116 255 54 74 73 255 43 59 58 255 minecraft:crafting_table 189 182 162 255 151 145 129 255 94 91 81 255 75 72 64 255 -minecraft:wheat 40 81 31 29 32 64 24 29 20 40 15 29 16 32 12 29 -minecraft:wheat[age=1] 40 80 31 39 32 64 24 39 20 40 15 39 16 32 12 39 -minecraft:wheat[age=2] 40 79 30 50 32 63 24 50 20 39 15 50 16 31 12 50 -minecraft:wheat[age=3] 39 78 30 60 31 62 24 60 19 39 15 60 15 31 12 60 -minecraft:wheat[age=4] 65 94 39 82 52 75 31 82 32 47 19 82 26 37 15 82 -minecraft:wheat[age=5] 85 107 46 109 68 85 36 109 42 53 23 109 34 42 18 109 -minecraft:wheat[age=6] 114 120 52 123 91 96 41 123 57 60 26 123 45 48 20 123 -minecraft:wheat[age=7] 162 140 87 134 129 112 69 134 81 70 43 134 64 56 34 134 +minecraft:wheat 8 127 15 6 6 101 12 6 4 63 7 6 3 50 6 6 +minecraft:wheat[age=1] 5 127 7 15 4 101 5 15 2 63 3 15 2 50 2 15 +minecraft:wheat[age=2] 6 133 12 32 4 106 9 32 3 66 6 32 2 53 4 32 +minecraft:wheat[age=3] 10 130 13 57 8 104 10 57 5 65 6 57 4 52 5 57 +minecraft:wheat[age=4] 37 132 18 78 29 105 14 78 18 66 9 78 14 52 7 78 +minecraft:wheat[age=5] 63 129 18 103 50 103 14 103 31 64 9 103 25 51 7 103 +minecraft:wheat[age=6] 141 133 37 125 112 106 29 125 70 66 18 125 56 53 14 125 +minecraft:wheat[age=7] 166 151 73 138 132 120 58 138 83 75 36 138 66 60 29 138 minecraft:farmland 73 74 44 255 58 59 35 255 36 37 22 255 29 29 17 255 minecraft:farmland[moisture=1] 54 60 35 255 43 48 28 255 27 30 17 255 21 24 14 255 minecraft:farmland[moisture=2] 54 60 35 255 43 48 28 255 27 30 17 255 21 24 14 255 @@ -3152,262 +3167,262 @@ minecraft:furnace[facing=west,lit=true] 116 117 104 255 92 93 83 255 58 58 52 25 minecraft:furnace[facing=west,lit=false] 116 117 104 255 92 93 83 255 58 58 52 255 46 46 41 255 minecraft:furnace[facing=east,lit=true] 116 117 104 255 92 93 83 255 58 58 52 255 46 46 41 255 minecraft:furnace[facing=east,lit=false] 116 117 104 255 92 93 83 255 58 58 52 255 46 46 41 255 -minecraft:oak_sign 71 65 50 10 56 52 40 10 35 32 25 10 28 26 20 10 -minecraft:oak_sign[rotation=0,waterlogged=false] 71 65 50 10 56 52 40 10 35 32 25 10 28 26 20 10 -minecraft:oak_sign[rotation=1,waterlogged=true] 71 65 50 10 56 52 40 10 35 32 25 10 28 26 20 10 -minecraft:oak_sign[rotation=1,waterlogged=false] 71 65 50 10 56 52 40 10 35 32 25 10 28 26 20 10 -minecraft:oak_sign[rotation=2,waterlogged=true] 71 65 50 10 56 52 40 10 35 32 25 10 28 26 20 10 -minecraft:oak_sign[rotation=2,waterlogged=false] 71 65 50 10 56 52 40 10 35 32 25 10 28 26 20 10 -minecraft:oak_sign[rotation=3,waterlogged=true] 71 65 50 10 56 52 40 10 35 32 25 10 28 26 20 10 -minecraft:oak_sign[rotation=3,waterlogged=false] 71 65 50 10 56 52 40 10 35 32 25 10 28 26 20 10 -minecraft:oak_sign[rotation=4,waterlogged=true] 71 65 50 10 56 52 40 10 35 32 25 10 28 26 20 10 -minecraft:oak_sign[rotation=4,waterlogged=false] 71 65 50 10 56 52 40 10 35 32 25 10 28 26 20 10 -minecraft:oak_sign[rotation=5,waterlogged=true] 71 65 50 10 56 52 40 10 35 32 25 10 28 26 20 10 -minecraft:oak_sign[rotation=5,waterlogged=false] 71 65 50 10 56 52 40 10 35 32 25 10 28 26 20 10 -minecraft:oak_sign[rotation=6,waterlogged=true] 71 65 50 10 56 52 40 10 35 32 25 10 28 26 20 10 -minecraft:oak_sign[rotation=6,waterlogged=false] 71 65 50 10 56 52 40 10 35 32 25 10 28 26 20 10 -minecraft:oak_sign[rotation=7,waterlogged=true] 71 65 50 10 56 52 40 10 35 32 25 10 28 26 20 10 -minecraft:oak_sign[rotation=7,waterlogged=false] 71 65 50 10 56 52 40 10 35 32 25 10 28 26 20 10 -minecraft:oak_sign[rotation=8,waterlogged=true] 71 65 50 10 56 52 40 10 35 32 25 10 28 26 20 10 -minecraft:oak_sign[rotation=8,waterlogged=false] 71 65 50 10 56 52 40 10 35 32 25 10 28 26 20 10 -minecraft:oak_sign[rotation=9,waterlogged=true] 71 65 50 10 56 52 40 10 35 32 25 10 28 26 20 10 -minecraft:oak_sign[rotation=9,waterlogged=false] 71 65 50 10 56 52 40 10 35 32 25 10 28 26 20 10 -minecraft:oak_sign[rotation=10,waterlogged=true] 71 65 50 10 56 52 40 10 35 32 25 10 28 26 20 10 -minecraft:oak_sign[rotation=10,waterlogged=false] 71 65 50 10 56 52 40 10 35 32 25 10 28 26 20 10 -minecraft:oak_sign[rotation=11,waterlogged=true] 71 65 50 10 56 52 40 10 35 32 25 10 28 26 20 10 -minecraft:oak_sign[rotation=11,waterlogged=false] 71 65 50 10 56 52 40 10 35 32 25 10 28 26 20 10 -minecraft:oak_sign[rotation=12,waterlogged=true] 71 65 50 10 56 52 40 10 35 32 25 10 28 26 20 10 -minecraft:oak_sign[rotation=12,waterlogged=false] 71 65 50 10 56 52 40 10 35 32 25 10 28 26 20 10 -minecraft:oak_sign[rotation=13,waterlogged=true] 71 65 50 10 56 52 40 10 35 32 25 10 28 26 20 10 -minecraft:oak_sign[rotation=13,waterlogged=false] 71 65 50 10 56 52 40 10 35 32 25 10 28 26 20 10 -minecraft:oak_sign[rotation=14,waterlogged=true] 71 65 50 10 56 52 40 10 35 32 25 10 28 26 20 10 -minecraft:oak_sign[rotation=14,waterlogged=false] 71 65 50 10 56 52 40 10 35 32 25 10 28 26 20 10 -minecraft:oak_sign[rotation=15,waterlogged=true] 71 65 50 10 56 52 40 10 35 32 25 10 28 26 20 10 -minecraft:oak_sign[rotation=15,waterlogged=false] 71 65 50 10 56 52 40 10 35 32 25 10 28 26 20 10 -minecraft:spruce_sign 82 55 47 10 65 44 37 10 41 27 23 10 32 22 18 10 -minecraft:spruce_sign[rotation=0,waterlogged=false] 82 55 47 10 65 44 37 10 41 27 23 10 32 22 18 10 -minecraft:spruce_sign[rotation=1,waterlogged=true] 82 55 47 10 65 44 37 10 41 27 23 10 32 22 18 10 -minecraft:spruce_sign[rotation=1,waterlogged=false] 82 55 47 10 65 44 37 10 41 27 23 10 32 22 18 10 -minecraft:spruce_sign[rotation=2,waterlogged=true] 82 55 47 10 65 44 37 10 41 27 23 10 32 22 18 10 -minecraft:spruce_sign[rotation=2,waterlogged=false] 82 55 47 10 65 44 37 10 41 27 23 10 32 22 18 10 -minecraft:spruce_sign[rotation=3,waterlogged=true] 82 55 47 10 65 44 37 10 41 27 23 10 32 22 18 10 -minecraft:spruce_sign[rotation=3,waterlogged=false] 82 55 47 10 65 44 37 10 41 27 23 10 32 22 18 10 -minecraft:spruce_sign[rotation=4,waterlogged=true] 82 55 47 10 65 44 37 10 41 27 23 10 32 22 18 10 -minecraft:spruce_sign[rotation=4,waterlogged=false] 82 55 47 10 65 44 37 10 41 27 23 10 32 22 18 10 -minecraft:spruce_sign[rotation=5,waterlogged=true] 82 55 47 10 65 44 37 10 41 27 23 10 32 22 18 10 -minecraft:spruce_sign[rotation=5,waterlogged=false] 82 55 47 10 65 44 37 10 41 27 23 10 32 22 18 10 -minecraft:spruce_sign[rotation=6,waterlogged=true] 82 55 47 10 65 44 37 10 41 27 23 10 32 22 18 10 -minecraft:spruce_sign[rotation=6,waterlogged=false] 82 55 47 10 65 44 37 10 41 27 23 10 32 22 18 10 -minecraft:spruce_sign[rotation=7,waterlogged=true] 82 55 47 10 65 44 37 10 41 27 23 10 32 22 18 10 -minecraft:spruce_sign[rotation=7,waterlogged=false] 82 55 47 10 65 44 37 10 41 27 23 10 32 22 18 10 -minecraft:spruce_sign[rotation=8,waterlogged=true] 82 55 47 10 65 44 37 10 41 27 23 10 32 22 18 10 -minecraft:spruce_sign[rotation=8,waterlogged=false] 82 55 47 10 65 44 37 10 41 27 23 10 32 22 18 10 -minecraft:spruce_sign[rotation=9,waterlogged=true] 82 55 47 10 65 44 37 10 41 27 23 10 32 22 18 10 -minecraft:spruce_sign[rotation=9,waterlogged=false] 82 55 47 10 65 44 37 10 41 27 23 10 32 22 18 10 -minecraft:spruce_sign[rotation=10,waterlogged=true] 82 55 47 10 65 44 37 10 41 27 23 10 32 22 18 10 -minecraft:spruce_sign[rotation=10,waterlogged=false] 82 55 47 10 65 44 37 10 41 27 23 10 32 22 18 10 -minecraft:spruce_sign[rotation=11,waterlogged=true] 82 55 47 10 65 44 37 10 41 27 23 10 32 22 18 10 -minecraft:spruce_sign[rotation=11,waterlogged=false] 82 55 47 10 65 44 37 10 41 27 23 10 32 22 18 10 -minecraft:spruce_sign[rotation=12,waterlogged=true] 82 55 47 10 65 44 37 10 41 27 23 10 32 22 18 10 -minecraft:spruce_sign[rotation=12,waterlogged=false] 82 55 47 10 65 44 37 10 41 27 23 10 32 22 18 10 -minecraft:spruce_sign[rotation=13,waterlogged=true] 82 55 47 10 65 44 37 10 41 27 23 10 32 22 18 10 -minecraft:spruce_sign[rotation=13,waterlogged=false] 82 55 47 10 65 44 37 10 41 27 23 10 32 22 18 10 -minecraft:spruce_sign[rotation=14,waterlogged=true] 82 55 47 10 65 44 37 10 41 27 23 10 32 22 18 10 -minecraft:spruce_sign[rotation=14,waterlogged=false] 82 55 47 10 65 44 37 10 41 27 23 10 32 22 18 10 -minecraft:spruce_sign[rotation=15,waterlogged=true] 82 55 47 10 65 44 37 10 41 27 23 10 32 22 18 10 -minecraft:spruce_sign[rotation=15,waterlogged=false] 82 55 47 10 65 44 37 10 41 27 23 10 32 22 18 10 -minecraft:birch_sign 183 169 121 10 146 135 96 10 91 84 60 10 73 67 48 10 -minecraft:birch_sign[rotation=0,waterlogged=false] 183 169 121 10 146 135 96 10 91 84 60 10 73 67 48 10 -minecraft:birch_sign[rotation=1,waterlogged=true] 183 169 121 10 146 135 96 10 91 84 60 10 73 67 48 10 -minecraft:birch_sign[rotation=1,waterlogged=false] 183 169 121 10 146 135 96 10 91 84 60 10 73 67 48 10 -minecraft:birch_sign[rotation=2,waterlogged=true] 183 169 121 10 146 135 96 10 91 84 60 10 73 67 48 10 -minecraft:birch_sign[rotation=2,waterlogged=false] 183 169 121 10 146 135 96 10 91 84 60 10 73 67 48 10 -minecraft:birch_sign[rotation=3,waterlogged=true] 183 169 121 10 146 135 96 10 91 84 60 10 73 67 48 10 -minecraft:birch_sign[rotation=3,waterlogged=false] 183 169 121 10 146 135 96 10 91 84 60 10 73 67 48 10 -minecraft:birch_sign[rotation=4,waterlogged=true] 183 169 121 10 146 135 96 10 91 84 60 10 73 67 48 10 -minecraft:birch_sign[rotation=4,waterlogged=false] 183 169 121 10 146 135 96 10 91 84 60 10 73 67 48 10 -minecraft:birch_sign[rotation=5,waterlogged=true] 183 169 121 10 146 135 96 10 91 84 60 10 73 67 48 10 -minecraft:birch_sign[rotation=5,waterlogged=false] 183 169 121 10 146 135 96 10 91 84 60 10 73 67 48 10 -minecraft:birch_sign[rotation=6,waterlogged=true] 183 169 121 10 146 135 96 10 91 84 60 10 73 67 48 10 -minecraft:birch_sign[rotation=6,waterlogged=false] 183 169 121 10 146 135 96 10 91 84 60 10 73 67 48 10 -minecraft:birch_sign[rotation=7,waterlogged=true] 183 169 121 10 146 135 96 10 91 84 60 10 73 67 48 10 -minecraft:birch_sign[rotation=7,waterlogged=false] 183 169 121 10 146 135 96 10 91 84 60 10 73 67 48 10 -minecraft:birch_sign[rotation=8,waterlogged=true] 183 169 121 10 146 135 96 10 91 84 60 10 73 67 48 10 -minecraft:birch_sign[rotation=8,waterlogged=false] 183 169 121 10 146 135 96 10 91 84 60 10 73 67 48 10 -minecraft:birch_sign[rotation=9,waterlogged=true] 183 169 121 10 146 135 96 10 91 84 60 10 73 67 48 10 -minecraft:birch_sign[rotation=9,waterlogged=false] 183 169 121 10 146 135 96 10 91 84 60 10 73 67 48 10 -minecraft:birch_sign[rotation=10,waterlogged=true] 183 169 121 10 146 135 96 10 91 84 60 10 73 67 48 10 -minecraft:birch_sign[rotation=10,waterlogged=false] 183 169 121 10 146 135 96 10 91 84 60 10 73 67 48 10 -minecraft:birch_sign[rotation=11,waterlogged=true] 183 169 121 10 146 135 96 10 91 84 60 10 73 67 48 10 -minecraft:birch_sign[rotation=11,waterlogged=false] 183 169 121 10 146 135 96 10 91 84 60 10 73 67 48 10 -minecraft:birch_sign[rotation=12,waterlogged=true] 183 169 121 10 146 135 96 10 91 84 60 10 73 67 48 10 -minecraft:birch_sign[rotation=12,waterlogged=false] 183 169 121 10 146 135 96 10 91 84 60 10 73 67 48 10 -minecraft:birch_sign[rotation=13,waterlogged=true] 183 169 121 10 146 135 96 10 91 84 60 10 73 67 48 10 -minecraft:birch_sign[rotation=13,waterlogged=false] 183 169 121 10 146 135 96 10 91 84 60 10 73 67 48 10 -minecraft:birch_sign[rotation=14,waterlogged=true] 183 169 121 10 146 135 96 10 91 84 60 10 73 67 48 10 -minecraft:birch_sign[rotation=14,waterlogged=false] 183 169 121 10 146 135 96 10 91 84 60 10 73 67 48 10 -minecraft:birch_sign[rotation=15,waterlogged=true] 183 169 121 10 146 135 96 10 91 84 60 10 73 67 48 10 -minecraft:birch_sign[rotation=15,waterlogged=false] 183 169 121 10 146 135 96 10 91 84 60 10 73 67 48 10 -minecraft:acacia_sign 70 37 20 10 56 29 16 10 35 18 10 10 28 14 8 10 -minecraft:acacia_sign[rotation=0,waterlogged=false] 70 37 20 10 56 29 16 10 35 18 10 10 28 14 8 10 -minecraft:acacia_sign[rotation=1,waterlogged=true] 70 37 20 10 56 29 16 10 35 18 10 10 28 14 8 10 -minecraft:acacia_sign[rotation=1,waterlogged=false] 70 37 20 10 56 29 16 10 35 18 10 10 28 14 8 10 -minecraft:acacia_sign[rotation=2,waterlogged=true] 70 37 20 10 56 29 16 10 35 18 10 10 28 14 8 10 -minecraft:acacia_sign[rotation=2,waterlogged=false] 70 37 20 10 56 29 16 10 35 18 10 10 28 14 8 10 -minecraft:acacia_sign[rotation=3,waterlogged=true] 70 37 20 10 56 29 16 10 35 18 10 10 28 14 8 10 -minecraft:acacia_sign[rotation=3,waterlogged=false] 70 37 20 10 56 29 16 10 35 18 10 10 28 14 8 10 -minecraft:acacia_sign[rotation=4,waterlogged=true] 70 37 20 10 56 29 16 10 35 18 10 10 28 14 8 10 -minecraft:acacia_sign[rotation=4,waterlogged=false] 70 37 20 10 56 29 16 10 35 18 10 10 28 14 8 10 -minecraft:acacia_sign[rotation=5,waterlogged=true] 70 37 20 10 56 29 16 10 35 18 10 10 28 14 8 10 -minecraft:acacia_sign[rotation=5,waterlogged=false] 70 37 20 10 56 29 16 10 35 18 10 10 28 14 8 10 -minecraft:acacia_sign[rotation=6,waterlogged=true] 70 37 20 10 56 29 16 10 35 18 10 10 28 14 8 10 -minecraft:acacia_sign[rotation=6,waterlogged=false] 70 37 20 10 56 29 16 10 35 18 10 10 28 14 8 10 -minecraft:acacia_sign[rotation=7,waterlogged=true] 70 37 20 10 56 29 16 10 35 18 10 10 28 14 8 10 -minecraft:acacia_sign[rotation=7,waterlogged=false] 70 37 20 10 56 29 16 10 35 18 10 10 28 14 8 10 -minecraft:acacia_sign[rotation=8,waterlogged=true] 70 37 20 10 56 29 16 10 35 18 10 10 28 14 8 10 -minecraft:acacia_sign[rotation=8,waterlogged=false] 70 37 20 10 56 29 16 10 35 18 10 10 28 14 8 10 -minecraft:acacia_sign[rotation=9,waterlogged=true] 70 37 20 10 56 29 16 10 35 18 10 10 28 14 8 10 -minecraft:acacia_sign[rotation=9,waterlogged=false] 70 37 20 10 56 29 16 10 35 18 10 10 28 14 8 10 -minecraft:acacia_sign[rotation=10,waterlogged=true] 70 37 20 10 56 29 16 10 35 18 10 10 28 14 8 10 -minecraft:acacia_sign[rotation=10,waterlogged=false] 70 37 20 10 56 29 16 10 35 18 10 10 28 14 8 10 -minecraft:acacia_sign[rotation=11,waterlogged=true] 70 37 20 10 56 29 16 10 35 18 10 10 28 14 8 10 -minecraft:acacia_sign[rotation=11,waterlogged=false] 70 37 20 10 56 29 16 10 35 18 10 10 28 14 8 10 -minecraft:acacia_sign[rotation=12,waterlogged=true] 70 37 20 10 56 29 16 10 35 18 10 10 28 14 8 10 -minecraft:acacia_sign[rotation=12,waterlogged=false] 70 37 20 10 56 29 16 10 35 18 10 10 28 14 8 10 -minecraft:acacia_sign[rotation=13,waterlogged=true] 70 37 20 10 56 29 16 10 35 18 10 10 28 14 8 10 -minecraft:acacia_sign[rotation=13,waterlogged=false] 70 37 20 10 56 29 16 10 35 18 10 10 28 14 8 10 -minecraft:acacia_sign[rotation=14,waterlogged=true] 70 37 20 10 56 29 16 10 35 18 10 10 28 14 8 10 -minecraft:acacia_sign[rotation=14,waterlogged=false] 70 37 20 10 56 29 16 10 35 18 10 10 28 14 8 10 -minecraft:acacia_sign[rotation=15,waterlogged=true] 70 37 20 10 56 29 16 10 35 18 10 10 28 14 8 10 -minecraft:acacia_sign[rotation=15,waterlogged=false] 70 37 20 10 56 29 16 10 35 18 10 10 28 14 8 10 -minecraft:jungle_sign 67 59 31 10 53 47 24 10 33 29 15 10 26 23 12 10 -minecraft:jungle_sign[rotation=0,waterlogged=false] 67 59 31 10 53 47 24 10 33 29 15 10 26 23 12 10 -minecraft:jungle_sign[rotation=1,waterlogged=true] 67 59 31 10 53 47 24 10 33 29 15 10 26 23 12 10 -minecraft:jungle_sign[rotation=1,waterlogged=false] 67 59 31 10 53 47 24 10 33 29 15 10 26 23 12 10 -minecraft:jungle_sign[rotation=2,waterlogged=true] 67 59 31 10 53 47 24 10 33 29 15 10 26 23 12 10 -minecraft:jungle_sign[rotation=2,waterlogged=false] 67 59 31 10 53 47 24 10 33 29 15 10 26 23 12 10 -minecraft:jungle_sign[rotation=3,waterlogged=true] 67 59 31 10 53 47 24 10 33 29 15 10 26 23 12 10 -minecraft:jungle_sign[rotation=3,waterlogged=false] 67 59 31 10 53 47 24 10 33 29 15 10 26 23 12 10 -minecraft:jungle_sign[rotation=4,waterlogged=true] 67 59 31 10 53 47 24 10 33 29 15 10 26 23 12 10 -minecraft:jungle_sign[rotation=4,waterlogged=false] 67 59 31 10 53 47 24 10 33 29 15 10 26 23 12 10 -minecraft:jungle_sign[rotation=5,waterlogged=true] 67 59 31 10 53 47 24 10 33 29 15 10 26 23 12 10 -minecraft:jungle_sign[rotation=5,waterlogged=false] 67 59 31 10 53 47 24 10 33 29 15 10 26 23 12 10 -minecraft:jungle_sign[rotation=6,waterlogged=true] 67 59 31 10 53 47 24 10 33 29 15 10 26 23 12 10 -minecraft:jungle_sign[rotation=6,waterlogged=false] 67 59 31 10 53 47 24 10 33 29 15 10 26 23 12 10 -minecraft:jungle_sign[rotation=7,waterlogged=true] 67 59 31 10 53 47 24 10 33 29 15 10 26 23 12 10 -minecraft:jungle_sign[rotation=7,waterlogged=false] 67 59 31 10 53 47 24 10 33 29 15 10 26 23 12 10 -minecraft:jungle_sign[rotation=8,waterlogged=true] 67 59 31 10 53 47 24 10 33 29 15 10 26 23 12 10 -minecraft:jungle_sign[rotation=8,waterlogged=false] 67 59 31 10 53 47 24 10 33 29 15 10 26 23 12 10 -minecraft:jungle_sign[rotation=9,waterlogged=true] 67 59 31 10 53 47 24 10 33 29 15 10 26 23 12 10 -minecraft:jungle_sign[rotation=9,waterlogged=false] 67 59 31 10 53 47 24 10 33 29 15 10 26 23 12 10 -minecraft:jungle_sign[rotation=10,waterlogged=true] 67 59 31 10 53 47 24 10 33 29 15 10 26 23 12 10 -minecraft:jungle_sign[rotation=10,waterlogged=false] 67 59 31 10 53 47 24 10 33 29 15 10 26 23 12 10 -minecraft:jungle_sign[rotation=11,waterlogged=true] 67 59 31 10 53 47 24 10 33 29 15 10 26 23 12 10 -minecraft:jungle_sign[rotation=11,waterlogged=false] 67 59 31 10 53 47 24 10 33 29 15 10 26 23 12 10 -minecraft:jungle_sign[rotation=12,waterlogged=true] 67 59 31 10 53 47 24 10 33 29 15 10 26 23 12 10 -minecraft:jungle_sign[rotation=12,waterlogged=false] 67 59 31 10 53 47 24 10 33 29 15 10 26 23 12 10 -minecraft:jungle_sign[rotation=13,waterlogged=true] 67 59 31 10 53 47 24 10 33 29 15 10 26 23 12 10 -minecraft:jungle_sign[rotation=13,waterlogged=false] 67 59 31 10 53 47 24 10 33 29 15 10 26 23 12 10 -minecraft:jungle_sign[rotation=14,waterlogged=true] 67 59 31 10 53 47 24 10 33 29 15 10 26 23 12 10 -minecraft:jungle_sign[rotation=14,waterlogged=false] 67 59 31 10 53 47 24 10 33 29 15 10 26 23 12 10 -minecraft:jungle_sign[rotation=15,waterlogged=true] 67 59 31 10 53 47 24 10 33 29 15 10 26 23 12 10 -minecraft:jungle_sign[rotation=15,waterlogged=false] 67 59 31 10 53 47 24 10 33 29 15 10 26 23 12 10 -minecraft:dark_oak_sign 54 47 36 10 43 37 28 10 27 23 18 10 21 18 14 10 -minecraft:dark_oak_sign[rotation=0,waterlogged=false] 54 47 36 10 43 37 28 10 27 23 18 10 21 18 14 10 -minecraft:dark_oak_sign[rotation=1,waterlogged=true] 54 47 36 10 43 37 28 10 27 23 18 10 21 18 14 10 -minecraft:dark_oak_sign[rotation=1,waterlogged=false] 54 47 36 10 43 37 28 10 27 23 18 10 21 18 14 10 -minecraft:dark_oak_sign[rotation=2,waterlogged=true] 54 47 36 10 43 37 28 10 27 23 18 10 21 18 14 10 -minecraft:dark_oak_sign[rotation=2,waterlogged=false] 54 47 36 10 43 37 28 10 27 23 18 10 21 18 14 10 -minecraft:dark_oak_sign[rotation=3,waterlogged=true] 54 47 36 10 43 37 28 10 27 23 18 10 21 18 14 10 -minecraft:dark_oak_sign[rotation=3,waterlogged=false] 54 47 36 10 43 37 28 10 27 23 18 10 21 18 14 10 -minecraft:dark_oak_sign[rotation=4,waterlogged=true] 54 47 36 10 43 37 28 10 27 23 18 10 21 18 14 10 -minecraft:dark_oak_sign[rotation=4,waterlogged=false] 54 47 36 10 43 37 28 10 27 23 18 10 21 18 14 10 -minecraft:dark_oak_sign[rotation=5,waterlogged=true] 54 47 36 10 43 37 28 10 27 23 18 10 21 18 14 10 -minecraft:dark_oak_sign[rotation=5,waterlogged=false] 54 47 36 10 43 37 28 10 27 23 18 10 21 18 14 10 -minecraft:dark_oak_sign[rotation=6,waterlogged=true] 54 47 36 10 43 37 28 10 27 23 18 10 21 18 14 10 -minecraft:dark_oak_sign[rotation=6,waterlogged=false] 54 47 36 10 43 37 28 10 27 23 18 10 21 18 14 10 -minecraft:dark_oak_sign[rotation=7,waterlogged=true] 54 47 36 10 43 37 28 10 27 23 18 10 21 18 14 10 -minecraft:dark_oak_sign[rotation=7,waterlogged=false] 54 47 36 10 43 37 28 10 27 23 18 10 21 18 14 10 -minecraft:dark_oak_sign[rotation=8,waterlogged=true] 54 47 36 10 43 37 28 10 27 23 18 10 21 18 14 10 -minecraft:dark_oak_sign[rotation=8,waterlogged=false] 54 47 36 10 43 37 28 10 27 23 18 10 21 18 14 10 -minecraft:dark_oak_sign[rotation=9,waterlogged=true] 54 47 36 10 43 37 28 10 27 23 18 10 21 18 14 10 -minecraft:dark_oak_sign[rotation=9,waterlogged=false] 54 47 36 10 43 37 28 10 27 23 18 10 21 18 14 10 -minecraft:dark_oak_sign[rotation=10,waterlogged=true] 54 47 36 10 43 37 28 10 27 23 18 10 21 18 14 10 -minecraft:dark_oak_sign[rotation=10,waterlogged=false] 54 47 36 10 43 37 28 10 27 23 18 10 21 18 14 10 -minecraft:dark_oak_sign[rotation=11,waterlogged=true] 54 47 36 10 43 37 28 10 27 23 18 10 21 18 14 10 -minecraft:dark_oak_sign[rotation=11,waterlogged=false] 54 47 36 10 43 37 28 10 27 23 18 10 21 18 14 10 -minecraft:dark_oak_sign[rotation=12,waterlogged=true] 54 47 36 10 43 37 28 10 27 23 18 10 21 18 14 10 -minecraft:dark_oak_sign[rotation=12,waterlogged=false] 54 47 36 10 43 37 28 10 27 23 18 10 21 18 14 10 -minecraft:dark_oak_sign[rotation=13,waterlogged=true] 54 47 36 10 43 37 28 10 27 23 18 10 21 18 14 10 -minecraft:dark_oak_sign[rotation=13,waterlogged=false] 54 47 36 10 43 37 28 10 27 23 18 10 21 18 14 10 -minecraft:dark_oak_sign[rotation=14,waterlogged=true] 54 47 36 10 43 37 28 10 27 23 18 10 21 18 14 10 -minecraft:dark_oak_sign[rotation=14,waterlogged=false] 54 47 36 10 43 37 28 10 27 23 18 10 21 18 14 10 -minecraft:dark_oak_sign[rotation=15,waterlogged=true] 54 47 36 10 43 37 28 10 27 23 18 10 21 18 14 10 -minecraft:dark_oak_sign[rotation=15,waterlogged=false] 54 47 36 10 43 37 28 10 27 23 18 10 21 18 14 10 -minecraft:oak_door 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=north,half=upper,hinge=left,open=true,powered=false] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=north,half=upper,hinge=left,open=false,powered=true] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=north,half=upper,hinge=left,open=false,powered=false] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=north,half=upper,hinge=right,open=true,powered=true] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=north,half=upper,hinge=right,open=true,powered=false] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=north,half=upper,hinge=right,open=false,powered=true] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=north,half=upper,hinge=right,open=false,powered=false] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=north,half=lower,hinge=left,open=true,powered=true] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=north,half=lower,hinge=left,open=true,powered=false] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=north,half=lower,hinge=left,open=false,powered=true] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=north,half=lower,hinge=left,open=false,powered=false] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=north,half=lower,hinge=right,open=true,powered=true] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=north,half=lower,hinge=right,open=true,powered=false] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=north,half=lower,hinge=right,open=false,powered=true] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=north,half=lower,hinge=right,open=false,powered=false] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=south,half=upper,hinge=left,open=true,powered=true] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=south,half=upper,hinge=left,open=true,powered=false] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=south,half=upper,hinge=left,open=false,powered=true] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=south,half=upper,hinge=left,open=false,powered=false] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=south,half=upper,hinge=right,open=true,powered=true] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=south,half=upper,hinge=right,open=true,powered=false] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=south,half=upper,hinge=right,open=false,powered=true] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=south,half=upper,hinge=right,open=false,powered=false] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=south,half=lower,hinge=left,open=true,powered=true] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=south,half=lower,hinge=left,open=true,powered=false] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=south,half=lower,hinge=left,open=false,powered=true] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=south,half=lower,hinge=left,open=false,powered=false] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=south,half=lower,hinge=right,open=true,powered=true] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=south,half=lower,hinge=right,open=true,powered=false] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=south,half=lower,hinge=right,open=false,powered=true] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=south,half=lower,hinge=right,open=false,powered=false] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=west,half=upper,hinge=left,open=true,powered=true] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=west,half=upper,hinge=left,open=true,powered=false] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=west,half=upper,hinge=left,open=false,powered=true] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=west,half=upper,hinge=left,open=false,powered=false] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=west,half=upper,hinge=right,open=true,powered=true] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=west,half=upper,hinge=right,open=true,powered=false] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=west,half=upper,hinge=right,open=false,powered=true] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=west,half=upper,hinge=right,open=false,powered=false] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=west,half=lower,hinge=left,open=true,powered=true] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=west,half=lower,hinge=left,open=true,powered=false] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=west,half=lower,hinge=left,open=false,powered=true] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=west,half=lower,hinge=left,open=false,powered=false] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=west,half=lower,hinge=right,open=true,powered=true] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=west,half=lower,hinge=right,open=true,powered=false] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=west,half=lower,hinge=right,open=false,powered=true] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=west,half=lower,hinge=right,open=false,powered=false] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=east,half=upper,hinge=left,open=true,powered=true] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=east,half=upper,hinge=left,open=true,powered=false] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=east,half=upper,hinge=left,open=false,powered=true] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=east,half=upper,hinge=left,open=false,powered=false] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=east,half=upper,hinge=right,open=true,powered=true] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=east,half=upper,hinge=right,open=true,powered=false] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=east,half=upper,hinge=right,open=false,powered=true] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=east,half=upper,hinge=right,open=false,powered=false] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=east,half=lower,hinge=left,open=true,powered=true] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=east,half=lower,hinge=left,open=true,powered=false] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=east,half=lower,hinge=left,open=false,powered=true] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=east,half=lower,hinge=left,open=false,powered=false] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=east,half=lower,hinge=right,open=true,powered=true] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=east,half=lower,hinge=right,open=true,powered=false] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=east,half=lower,hinge=right,open=false,powered=true] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 -minecraft:oak_door[facing=east,half=lower,hinge=right,open=false,powered=false] 89 87 77 226 71 69 61 226 44 43 38 226 35 34 30 226 +minecraft:oak_sign 111 90 63 10 88 72 50 10 55 45 31 10 44 36 25 10 +minecraft:oak_sign[rotation=0,waterlogged=false] 111 90 63 10 88 72 50 10 55 45 31 10 44 36 25 10 +minecraft:oak_sign[rotation=1,waterlogged=true] 111 90 63 10 88 72 50 10 55 45 31 10 44 36 25 10 +minecraft:oak_sign[rotation=1,waterlogged=false] 111 90 63 10 88 72 50 10 55 45 31 10 44 36 25 10 +minecraft:oak_sign[rotation=2,waterlogged=true] 111 90 63 10 88 72 50 10 55 45 31 10 44 36 25 10 +minecraft:oak_sign[rotation=2,waterlogged=false] 111 90 63 10 88 72 50 10 55 45 31 10 44 36 25 10 +minecraft:oak_sign[rotation=3,waterlogged=true] 111 90 63 10 88 72 50 10 55 45 31 10 44 36 25 10 +minecraft:oak_sign[rotation=3,waterlogged=false] 111 90 63 10 88 72 50 10 55 45 31 10 44 36 25 10 +minecraft:oak_sign[rotation=4,waterlogged=true] 111 90 63 10 88 72 50 10 55 45 31 10 44 36 25 10 +minecraft:oak_sign[rotation=4,waterlogged=false] 111 90 63 10 88 72 50 10 55 45 31 10 44 36 25 10 +minecraft:oak_sign[rotation=5,waterlogged=true] 111 90 63 10 88 72 50 10 55 45 31 10 44 36 25 10 +minecraft:oak_sign[rotation=5,waterlogged=false] 111 90 63 10 88 72 50 10 55 45 31 10 44 36 25 10 +minecraft:oak_sign[rotation=6,waterlogged=true] 111 90 63 10 88 72 50 10 55 45 31 10 44 36 25 10 +minecraft:oak_sign[rotation=6,waterlogged=false] 111 90 63 10 88 72 50 10 55 45 31 10 44 36 25 10 +minecraft:oak_sign[rotation=7,waterlogged=true] 111 90 63 10 88 72 50 10 55 45 31 10 44 36 25 10 +minecraft:oak_sign[rotation=7,waterlogged=false] 111 90 63 10 88 72 50 10 55 45 31 10 44 36 25 10 +minecraft:oak_sign[rotation=8,waterlogged=true] 111 90 63 10 88 72 50 10 55 45 31 10 44 36 25 10 +minecraft:oak_sign[rotation=8,waterlogged=false] 111 90 63 10 88 72 50 10 55 45 31 10 44 36 25 10 +minecraft:oak_sign[rotation=9,waterlogged=true] 111 90 63 10 88 72 50 10 55 45 31 10 44 36 25 10 +minecraft:oak_sign[rotation=9,waterlogged=false] 111 90 63 10 88 72 50 10 55 45 31 10 44 36 25 10 +minecraft:oak_sign[rotation=10,waterlogged=true] 111 90 63 10 88 72 50 10 55 45 31 10 44 36 25 10 +minecraft:oak_sign[rotation=10,waterlogged=false] 111 90 63 10 88 72 50 10 55 45 31 10 44 36 25 10 +minecraft:oak_sign[rotation=11,waterlogged=true] 111 90 63 10 88 72 50 10 55 45 31 10 44 36 25 10 +minecraft:oak_sign[rotation=11,waterlogged=false] 111 90 63 10 88 72 50 10 55 45 31 10 44 36 25 10 +minecraft:oak_sign[rotation=12,waterlogged=true] 111 90 63 10 88 72 50 10 55 45 31 10 44 36 25 10 +minecraft:oak_sign[rotation=12,waterlogged=false] 111 90 63 10 88 72 50 10 55 45 31 10 44 36 25 10 +minecraft:oak_sign[rotation=13,waterlogged=true] 111 90 63 10 88 72 50 10 55 45 31 10 44 36 25 10 +minecraft:oak_sign[rotation=13,waterlogged=false] 111 90 63 10 88 72 50 10 55 45 31 10 44 36 25 10 +minecraft:oak_sign[rotation=14,waterlogged=true] 111 90 63 10 88 72 50 10 55 45 31 10 44 36 25 10 +minecraft:oak_sign[rotation=14,waterlogged=false] 111 90 63 10 88 72 50 10 55 45 31 10 44 36 25 10 +minecraft:oak_sign[rotation=15,waterlogged=true] 111 90 63 10 88 72 50 10 55 45 31 10 44 36 25 10 +minecraft:oak_sign[rotation=15,waterlogged=false] 111 90 63 10 88 72 50 10 55 45 31 10 44 36 25 10 +minecraft:spruce_sign 85 57 48 10 68 45 38 10 42 28 24 10 34 22 19 10 +minecraft:spruce_sign[rotation=0,waterlogged=false] 85 57 48 10 68 45 38 10 42 28 24 10 34 22 19 10 +minecraft:spruce_sign[rotation=1,waterlogged=true] 85 57 48 10 68 45 38 10 42 28 24 10 34 22 19 10 +minecraft:spruce_sign[rotation=1,waterlogged=false] 85 57 48 10 68 45 38 10 42 28 24 10 34 22 19 10 +minecraft:spruce_sign[rotation=2,waterlogged=true] 85 57 48 10 68 45 38 10 42 28 24 10 34 22 19 10 +minecraft:spruce_sign[rotation=2,waterlogged=false] 85 57 48 10 68 45 38 10 42 28 24 10 34 22 19 10 +minecraft:spruce_sign[rotation=3,waterlogged=true] 85 57 48 10 68 45 38 10 42 28 24 10 34 22 19 10 +minecraft:spruce_sign[rotation=3,waterlogged=false] 85 57 48 10 68 45 38 10 42 28 24 10 34 22 19 10 +minecraft:spruce_sign[rotation=4,waterlogged=true] 85 57 48 10 68 45 38 10 42 28 24 10 34 22 19 10 +minecraft:spruce_sign[rotation=4,waterlogged=false] 85 57 48 10 68 45 38 10 42 28 24 10 34 22 19 10 +minecraft:spruce_sign[rotation=5,waterlogged=true] 85 57 48 10 68 45 38 10 42 28 24 10 34 22 19 10 +minecraft:spruce_sign[rotation=5,waterlogged=false] 85 57 48 10 68 45 38 10 42 28 24 10 34 22 19 10 +minecraft:spruce_sign[rotation=6,waterlogged=true] 85 57 48 10 68 45 38 10 42 28 24 10 34 22 19 10 +minecraft:spruce_sign[rotation=6,waterlogged=false] 85 57 48 10 68 45 38 10 42 28 24 10 34 22 19 10 +minecraft:spruce_sign[rotation=7,waterlogged=true] 85 57 48 10 68 45 38 10 42 28 24 10 34 22 19 10 +minecraft:spruce_sign[rotation=7,waterlogged=false] 85 57 48 10 68 45 38 10 42 28 24 10 34 22 19 10 +minecraft:spruce_sign[rotation=8,waterlogged=true] 85 57 48 10 68 45 38 10 42 28 24 10 34 22 19 10 +minecraft:spruce_sign[rotation=8,waterlogged=false] 85 57 48 10 68 45 38 10 42 28 24 10 34 22 19 10 +minecraft:spruce_sign[rotation=9,waterlogged=true] 85 57 48 10 68 45 38 10 42 28 24 10 34 22 19 10 +minecraft:spruce_sign[rotation=9,waterlogged=false] 85 57 48 10 68 45 38 10 42 28 24 10 34 22 19 10 +minecraft:spruce_sign[rotation=10,waterlogged=true] 85 57 48 10 68 45 38 10 42 28 24 10 34 22 19 10 +minecraft:spruce_sign[rotation=10,waterlogged=false] 85 57 48 10 68 45 38 10 42 28 24 10 34 22 19 10 +minecraft:spruce_sign[rotation=11,waterlogged=true] 85 57 48 10 68 45 38 10 42 28 24 10 34 22 19 10 +minecraft:spruce_sign[rotation=11,waterlogged=false] 85 57 48 10 68 45 38 10 42 28 24 10 34 22 19 10 +minecraft:spruce_sign[rotation=12,waterlogged=true] 85 57 48 10 68 45 38 10 42 28 24 10 34 22 19 10 +minecraft:spruce_sign[rotation=12,waterlogged=false] 85 57 48 10 68 45 38 10 42 28 24 10 34 22 19 10 +minecraft:spruce_sign[rotation=13,waterlogged=true] 85 57 48 10 68 45 38 10 42 28 24 10 34 22 19 10 +minecraft:spruce_sign[rotation=13,waterlogged=false] 85 57 48 10 68 45 38 10 42 28 24 10 34 22 19 10 +minecraft:spruce_sign[rotation=14,waterlogged=true] 85 57 48 10 68 45 38 10 42 28 24 10 34 22 19 10 +minecraft:spruce_sign[rotation=14,waterlogged=false] 85 57 48 10 68 45 38 10 42 28 24 10 34 22 19 10 +minecraft:spruce_sign[rotation=15,waterlogged=true] 85 57 48 10 68 45 38 10 42 28 24 10 34 22 19 10 +minecraft:spruce_sign[rotation=15,waterlogged=false] 85 57 48 10 68 45 38 10 42 28 24 10 34 22 19 10 +minecraft:birch_sign 172 158 113 10 137 126 90 10 86 79 56 10 68 63 45 10 +minecraft:birch_sign[rotation=0,waterlogged=false] 172 158 113 10 137 126 90 10 86 79 56 10 68 63 45 10 +minecraft:birch_sign[rotation=1,waterlogged=true] 172 158 113 10 137 126 90 10 86 79 56 10 68 63 45 10 +minecraft:birch_sign[rotation=1,waterlogged=false] 172 158 113 10 137 126 90 10 86 79 56 10 68 63 45 10 +minecraft:birch_sign[rotation=2,waterlogged=true] 172 158 113 10 137 126 90 10 86 79 56 10 68 63 45 10 +minecraft:birch_sign[rotation=2,waterlogged=false] 172 158 113 10 137 126 90 10 86 79 56 10 68 63 45 10 +minecraft:birch_sign[rotation=3,waterlogged=true] 172 158 113 10 137 126 90 10 86 79 56 10 68 63 45 10 +minecraft:birch_sign[rotation=3,waterlogged=false] 172 158 113 10 137 126 90 10 86 79 56 10 68 63 45 10 +minecraft:birch_sign[rotation=4,waterlogged=true] 172 158 113 10 137 126 90 10 86 79 56 10 68 63 45 10 +minecraft:birch_sign[rotation=4,waterlogged=false] 172 158 113 10 137 126 90 10 86 79 56 10 68 63 45 10 +minecraft:birch_sign[rotation=5,waterlogged=true] 172 158 113 10 137 126 90 10 86 79 56 10 68 63 45 10 +minecraft:birch_sign[rotation=5,waterlogged=false] 172 158 113 10 137 126 90 10 86 79 56 10 68 63 45 10 +minecraft:birch_sign[rotation=6,waterlogged=true] 172 158 113 10 137 126 90 10 86 79 56 10 68 63 45 10 +minecraft:birch_sign[rotation=6,waterlogged=false] 172 158 113 10 137 126 90 10 86 79 56 10 68 63 45 10 +minecraft:birch_sign[rotation=7,waterlogged=true] 172 158 113 10 137 126 90 10 86 79 56 10 68 63 45 10 +minecraft:birch_sign[rotation=7,waterlogged=false] 172 158 113 10 137 126 90 10 86 79 56 10 68 63 45 10 +minecraft:birch_sign[rotation=8,waterlogged=true] 172 158 113 10 137 126 90 10 86 79 56 10 68 63 45 10 +minecraft:birch_sign[rotation=8,waterlogged=false] 172 158 113 10 137 126 90 10 86 79 56 10 68 63 45 10 +minecraft:birch_sign[rotation=9,waterlogged=true] 172 158 113 10 137 126 90 10 86 79 56 10 68 63 45 10 +minecraft:birch_sign[rotation=9,waterlogged=false] 172 158 113 10 137 126 90 10 86 79 56 10 68 63 45 10 +minecraft:birch_sign[rotation=10,waterlogged=true] 172 158 113 10 137 126 90 10 86 79 56 10 68 63 45 10 +minecraft:birch_sign[rotation=10,waterlogged=false] 172 158 113 10 137 126 90 10 86 79 56 10 68 63 45 10 +minecraft:birch_sign[rotation=11,waterlogged=true] 172 158 113 10 137 126 90 10 86 79 56 10 68 63 45 10 +minecraft:birch_sign[rotation=11,waterlogged=false] 172 158 113 10 137 126 90 10 86 79 56 10 68 63 45 10 +minecraft:birch_sign[rotation=12,waterlogged=true] 172 158 113 10 137 126 90 10 86 79 56 10 68 63 45 10 +minecraft:birch_sign[rotation=12,waterlogged=false] 172 158 113 10 137 126 90 10 86 79 56 10 68 63 45 10 +minecraft:birch_sign[rotation=13,waterlogged=true] 172 158 113 10 137 126 90 10 86 79 56 10 68 63 45 10 +minecraft:birch_sign[rotation=13,waterlogged=false] 172 158 113 10 137 126 90 10 86 79 56 10 68 63 45 10 +minecraft:birch_sign[rotation=14,waterlogged=true] 172 158 113 10 137 126 90 10 86 79 56 10 68 63 45 10 +minecraft:birch_sign[rotation=14,waterlogged=false] 172 158 113 10 137 126 90 10 86 79 56 10 68 63 45 10 +minecraft:birch_sign[rotation=15,waterlogged=true] 172 158 113 10 137 126 90 10 86 79 56 10 68 63 45 10 +minecraft:birch_sign[rotation=15,waterlogged=false] 172 158 113 10 137 126 90 10 86 79 56 10 68 63 45 10 +minecraft:acacia_sign 107 56 26 10 85 44 20 10 53 28 13 10 42 22 10 10 +minecraft:acacia_sign[rotation=0,waterlogged=false] 107 56 26 10 85 44 20 10 53 28 13 10 42 22 10 10 +minecraft:acacia_sign[rotation=1,waterlogged=true] 107 56 26 10 85 44 20 10 53 28 13 10 42 22 10 10 +minecraft:acacia_sign[rotation=1,waterlogged=false] 107 56 26 10 85 44 20 10 53 28 13 10 42 22 10 10 +minecraft:acacia_sign[rotation=2,waterlogged=true] 107 56 26 10 85 44 20 10 53 28 13 10 42 22 10 10 +minecraft:acacia_sign[rotation=2,waterlogged=false] 107 56 26 10 85 44 20 10 53 28 13 10 42 22 10 10 +minecraft:acacia_sign[rotation=3,waterlogged=true] 107 56 26 10 85 44 20 10 53 28 13 10 42 22 10 10 +minecraft:acacia_sign[rotation=3,waterlogged=false] 107 56 26 10 85 44 20 10 53 28 13 10 42 22 10 10 +minecraft:acacia_sign[rotation=4,waterlogged=true] 107 56 26 10 85 44 20 10 53 28 13 10 42 22 10 10 +minecraft:acacia_sign[rotation=4,waterlogged=false] 107 56 26 10 85 44 20 10 53 28 13 10 42 22 10 10 +minecraft:acacia_sign[rotation=5,waterlogged=true] 107 56 26 10 85 44 20 10 53 28 13 10 42 22 10 10 +minecraft:acacia_sign[rotation=5,waterlogged=false] 107 56 26 10 85 44 20 10 53 28 13 10 42 22 10 10 +minecraft:acacia_sign[rotation=6,waterlogged=true] 107 56 26 10 85 44 20 10 53 28 13 10 42 22 10 10 +minecraft:acacia_sign[rotation=6,waterlogged=false] 107 56 26 10 85 44 20 10 53 28 13 10 42 22 10 10 +minecraft:acacia_sign[rotation=7,waterlogged=true] 107 56 26 10 85 44 20 10 53 28 13 10 42 22 10 10 +minecraft:acacia_sign[rotation=7,waterlogged=false] 107 56 26 10 85 44 20 10 53 28 13 10 42 22 10 10 +minecraft:acacia_sign[rotation=8,waterlogged=true] 107 56 26 10 85 44 20 10 53 28 13 10 42 22 10 10 +minecraft:acacia_sign[rotation=8,waterlogged=false] 107 56 26 10 85 44 20 10 53 28 13 10 42 22 10 10 +minecraft:acacia_sign[rotation=9,waterlogged=true] 107 56 26 10 85 44 20 10 53 28 13 10 42 22 10 10 +minecraft:acacia_sign[rotation=9,waterlogged=false] 107 56 26 10 85 44 20 10 53 28 13 10 42 22 10 10 +minecraft:acacia_sign[rotation=10,waterlogged=true] 107 56 26 10 85 44 20 10 53 28 13 10 42 22 10 10 +minecraft:acacia_sign[rotation=10,waterlogged=false] 107 56 26 10 85 44 20 10 53 28 13 10 42 22 10 10 +minecraft:acacia_sign[rotation=11,waterlogged=true] 107 56 26 10 85 44 20 10 53 28 13 10 42 22 10 10 +minecraft:acacia_sign[rotation=11,waterlogged=false] 107 56 26 10 85 44 20 10 53 28 13 10 42 22 10 10 +minecraft:acacia_sign[rotation=12,waterlogged=true] 107 56 26 10 85 44 20 10 53 28 13 10 42 22 10 10 +minecraft:acacia_sign[rotation=12,waterlogged=false] 107 56 26 10 85 44 20 10 53 28 13 10 42 22 10 10 +minecraft:acacia_sign[rotation=13,waterlogged=true] 107 56 26 10 85 44 20 10 53 28 13 10 42 22 10 10 +minecraft:acacia_sign[rotation=13,waterlogged=false] 107 56 26 10 85 44 20 10 53 28 13 10 42 22 10 10 +minecraft:acacia_sign[rotation=14,waterlogged=true] 107 56 26 10 85 44 20 10 53 28 13 10 42 22 10 10 +minecraft:acacia_sign[rotation=14,waterlogged=false] 107 56 26 10 85 44 20 10 53 28 13 10 42 22 10 10 +minecraft:acacia_sign[rotation=15,waterlogged=true] 107 56 26 10 85 44 20 10 53 28 13 10 42 22 10 10 +minecraft:acacia_sign[rotation=15,waterlogged=false] 107 56 26 10 85 44 20 10 53 28 13 10 42 22 10 10 +minecraft:jungle_sign 119 87 53 10 95 69 42 10 59 43 26 10 47 34 21 10 +minecraft:jungle_sign[rotation=0,waterlogged=false] 119 87 53 10 95 69 42 10 59 43 26 10 47 34 21 10 +minecraft:jungle_sign[rotation=1,waterlogged=true] 119 87 53 10 95 69 42 10 59 43 26 10 47 34 21 10 +minecraft:jungle_sign[rotation=1,waterlogged=false] 119 87 53 10 95 69 42 10 59 43 26 10 47 34 21 10 +minecraft:jungle_sign[rotation=2,waterlogged=true] 119 87 53 10 95 69 42 10 59 43 26 10 47 34 21 10 +minecraft:jungle_sign[rotation=2,waterlogged=false] 119 87 53 10 95 69 42 10 59 43 26 10 47 34 21 10 +minecraft:jungle_sign[rotation=3,waterlogged=true] 119 87 53 10 95 69 42 10 59 43 26 10 47 34 21 10 +minecraft:jungle_sign[rotation=3,waterlogged=false] 119 87 53 10 95 69 42 10 59 43 26 10 47 34 21 10 +minecraft:jungle_sign[rotation=4,waterlogged=true] 119 87 53 10 95 69 42 10 59 43 26 10 47 34 21 10 +minecraft:jungle_sign[rotation=4,waterlogged=false] 119 87 53 10 95 69 42 10 59 43 26 10 47 34 21 10 +minecraft:jungle_sign[rotation=5,waterlogged=true] 119 87 53 10 95 69 42 10 59 43 26 10 47 34 21 10 +minecraft:jungle_sign[rotation=5,waterlogged=false] 119 87 53 10 95 69 42 10 59 43 26 10 47 34 21 10 +minecraft:jungle_sign[rotation=6,waterlogged=true] 119 87 53 10 95 69 42 10 59 43 26 10 47 34 21 10 +minecraft:jungle_sign[rotation=6,waterlogged=false] 119 87 53 10 95 69 42 10 59 43 26 10 47 34 21 10 +minecraft:jungle_sign[rotation=7,waterlogged=true] 119 87 53 10 95 69 42 10 59 43 26 10 47 34 21 10 +minecraft:jungle_sign[rotation=7,waterlogged=false] 119 87 53 10 95 69 42 10 59 43 26 10 47 34 21 10 +minecraft:jungle_sign[rotation=8,waterlogged=true] 119 87 53 10 95 69 42 10 59 43 26 10 47 34 21 10 +minecraft:jungle_sign[rotation=8,waterlogged=false] 119 87 53 10 95 69 42 10 59 43 26 10 47 34 21 10 +minecraft:jungle_sign[rotation=9,waterlogged=true] 119 87 53 10 95 69 42 10 59 43 26 10 47 34 21 10 +minecraft:jungle_sign[rotation=9,waterlogged=false] 119 87 53 10 95 69 42 10 59 43 26 10 47 34 21 10 +minecraft:jungle_sign[rotation=10,waterlogged=true] 119 87 53 10 95 69 42 10 59 43 26 10 47 34 21 10 +minecraft:jungle_sign[rotation=10,waterlogged=false] 119 87 53 10 95 69 42 10 59 43 26 10 47 34 21 10 +minecraft:jungle_sign[rotation=11,waterlogged=true] 119 87 53 10 95 69 42 10 59 43 26 10 47 34 21 10 +minecraft:jungle_sign[rotation=11,waterlogged=false] 119 87 53 10 95 69 42 10 59 43 26 10 47 34 21 10 +minecraft:jungle_sign[rotation=12,waterlogged=true] 119 87 53 10 95 69 42 10 59 43 26 10 47 34 21 10 +minecraft:jungle_sign[rotation=12,waterlogged=false] 119 87 53 10 95 69 42 10 59 43 26 10 47 34 21 10 +minecraft:jungle_sign[rotation=13,waterlogged=true] 119 87 53 10 95 69 42 10 59 43 26 10 47 34 21 10 +minecraft:jungle_sign[rotation=13,waterlogged=false] 119 87 53 10 95 69 42 10 59 43 26 10 47 34 21 10 +minecraft:jungle_sign[rotation=14,waterlogged=true] 119 87 53 10 95 69 42 10 59 43 26 10 47 34 21 10 +minecraft:jungle_sign[rotation=14,waterlogged=false] 119 87 53 10 95 69 42 10 59 43 26 10 47 34 21 10 +minecraft:jungle_sign[rotation=15,waterlogged=true] 119 87 53 10 95 69 42 10 59 43 26 10 47 34 21 10 +minecraft:jungle_sign[rotation=15,waterlogged=false] 119 87 53 10 95 69 42 10 59 43 26 10 47 34 21 10 +minecraft:dark_oak_sign 66 58 41 10 52 46 32 10 33 29 20 10 26 23 16 10 +minecraft:dark_oak_sign[rotation=0,waterlogged=false] 66 58 41 10 52 46 32 10 33 29 20 10 26 23 16 10 +minecraft:dark_oak_sign[rotation=1,waterlogged=true] 66 58 41 10 52 46 32 10 33 29 20 10 26 23 16 10 +minecraft:dark_oak_sign[rotation=1,waterlogged=false] 66 58 41 10 52 46 32 10 33 29 20 10 26 23 16 10 +minecraft:dark_oak_sign[rotation=2,waterlogged=true] 66 58 41 10 52 46 32 10 33 29 20 10 26 23 16 10 +minecraft:dark_oak_sign[rotation=2,waterlogged=false] 66 58 41 10 52 46 32 10 33 29 20 10 26 23 16 10 +minecraft:dark_oak_sign[rotation=3,waterlogged=true] 66 58 41 10 52 46 32 10 33 29 20 10 26 23 16 10 +minecraft:dark_oak_sign[rotation=3,waterlogged=false] 66 58 41 10 52 46 32 10 33 29 20 10 26 23 16 10 +minecraft:dark_oak_sign[rotation=4,waterlogged=true] 66 58 41 10 52 46 32 10 33 29 20 10 26 23 16 10 +minecraft:dark_oak_sign[rotation=4,waterlogged=false] 66 58 41 10 52 46 32 10 33 29 20 10 26 23 16 10 +minecraft:dark_oak_sign[rotation=5,waterlogged=true] 66 58 41 10 52 46 32 10 33 29 20 10 26 23 16 10 +minecraft:dark_oak_sign[rotation=5,waterlogged=false] 66 58 41 10 52 46 32 10 33 29 20 10 26 23 16 10 +minecraft:dark_oak_sign[rotation=6,waterlogged=true] 66 58 41 10 52 46 32 10 33 29 20 10 26 23 16 10 +minecraft:dark_oak_sign[rotation=6,waterlogged=false] 66 58 41 10 52 46 32 10 33 29 20 10 26 23 16 10 +minecraft:dark_oak_sign[rotation=7,waterlogged=true] 66 58 41 10 52 46 32 10 33 29 20 10 26 23 16 10 +minecraft:dark_oak_sign[rotation=7,waterlogged=false] 66 58 41 10 52 46 32 10 33 29 20 10 26 23 16 10 +minecraft:dark_oak_sign[rotation=8,waterlogged=true] 66 58 41 10 52 46 32 10 33 29 20 10 26 23 16 10 +minecraft:dark_oak_sign[rotation=8,waterlogged=false] 66 58 41 10 52 46 32 10 33 29 20 10 26 23 16 10 +minecraft:dark_oak_sign[rotation=9,waterlogged=true] 66 58 41 10 52 46 32 10 33 29 20 10 26 23 16 10 +minecraft:dark_oak_sign[rotation=9,waterlogged=false] 66 58 41 10 52 46 32 10 33 29 20 10 26 23 16 10 +minecraft:dark_oak_sign[rotation=10,waterlogged=true] 66 58 41 10 52 46 32 10 33 29 20 10 26 23 16 10 +minecraft:dark_oak_sign[rotation=10,waterlogged=false] 66 58 41 10 52 46 32 10 33 29 20 10 26 23 16 10 +minecraft:dark_oak_sign[rotation=11,waterlogged=true] 66 58 41 10 52 46 32 10 33 29 20 10 26 23 16 10 +minecraft:dark_oak_sign[rotation=11,waterlogged=false] 66 58 41 10 52 46 32 10 33 29 20 10 26 23 16 10 +minecraft:dark_oak_sign[rotation=12,waterlogged=true] 66 58 41 10 52 46 32 10 33 29 20 10 26 23 16 10 +minecraft:dark_oak_sign[rotation=12,waterlogged=false] 66 58 41 10 52 46 32 10 33 29 20 10 26 23 16 10 +minecraft:dark_oak_sign[rotation=13,waterlogged=true] 66 58 41 10 52 46 32 10 33 29 20 10 26 23 16 10 +minecraft:dark_oak_sign[rotation=13,waterlogged=false] 66 58 41 10 52 46 32 10 33 29 20 10 26 23 16 10 +minecraft:dark_oak_sign[rotation=14,waterlogged=true] 66 58 41 10 52 46 32 10 33 29 20 10 26 23 16 10 +minecraft:dark_oak_sign[rotation=14,waterlogged=false] 66 58 41 10 52 46 32 10 33 29 20 10 26 23 16 10 +minecraft:dark_oak_sign[rotation=15,waterlogged=true] 66 58 41 10 52 46 32 10 33 29 20 10 26 23 16 10 +minecraft:dark_oak_sign[rotation=15,waterlogged=false] 66 58 41 10 52 46 32 10 33 29 20 10 26 23 16 10 +minecraft:oak_door 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=upper,hinge=left,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=upper,hinge=left,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=upper,hinge=left,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=upper,hinge=right,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=upper,hinge=right,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=upper,hinge=right,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=upper,hinge=right,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=lower,hinge=left,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=lower,hinge=left,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=lower,hinge=left,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=lower,hinge=left,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=lower,hinge=right,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=lower,hinge=right,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=lower,hinge=right,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=lower,hinge=right,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=upper,hinge=left,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=upper,hinge=left,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=upper,hinge=left,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=upper,hinge=left,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=upper,hinge=right,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=upper,hinge=right,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=upper,hinge=right,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=upper,hinge=right,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=lower,hinge=left,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=lower,hinge=left,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=lower,hinge=left,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=lower,hinge=left,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=lower,hinge=right,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=lower,hinge=right,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=lower,hinge=right,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=lower,hinge=right,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=upper,hinge=left,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=upper,hinge=left,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=upper,hinge=left,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=upper,hinge=left,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=upper,hinge=right,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=upper,hinge=right,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=upper,hinge=right,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=upper,hinge=right,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=lower,hinge=left,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=lower,hinge=left,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=lower,hinge=left,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=lower,hinge=left,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=lower,hinge=right,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=lower,hinge=right,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=lower,hinge=right,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=lower,hinge=right,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=upper,hinge=left,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=upper,hinge=left,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=upper,hinge=left,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=upper,hinge=left,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=upper,hinge=right,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=upper,hinge=right,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=upper,hinge=right,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=upper,hinge=right,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=lower,hinge=left,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=lower,hinge=left,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=lower,hinge=left,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=lower,hinge=left,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=lower,hinge=right,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=lower,hinge=right,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=lower,hinge=right,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=lower,hinge=right,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 minecraft:ladder 42 41 35 116 33 32 28 116 21 20 17 116 16 16 14 116 minecraft:ladder[facing=north,waterlogged=false] 42 41 35 116 33 32 28 116 21 20 17 116 16 16 14 116 minecraft:ladder[facing=south,waterlogged=true] 42 41 35 116 33 32 28 116 21 20 17 116 16 16 14 116 @@ -3516,54 +3531,54 @@ minecraft:cobblestone_stairs[facing=east,half=bottom,shape=outer_left,waterlogge minecraft:cobblestone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 99 109 98 255 79 87 78 255 49 54 49 255 39 43 39 255 minecraft:cobblestone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 99 109 98 255 79 87 78 255 49 54 49 255 39 43 39 255 minecraft:cobblestone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 99 109 98 255 79 87 78 255 49 54 49 255 39 43 39 255 -minecraft:oak_wall_sign 71 65 50 10 56 52 40 10 35 32 25 10 28 26 20 10 -minecraft:oak_wall_sign[facing=north,waterlogged=false] 71 65 50 10 56 52 40 10 35 32 25 10 28 26 20 10 -minecraft:oak_wall_sign[facing=south,waterlogged=true] 71 65 50 10 56 52 40 10 35 32 25 10 28 26 20 10 -minecraft:oak_wall_sign[facing=south,waterlogged=false] 71 65 50 10 56 52 40 10 35 32 25 10 28 26 20 10 -minecraft:oak_wall_sign[facing=west,waterlogged=true] 71 65 50 10 56 52 40 10 35 32 25 10 28 26 20 10 -minecraft:oak_wall_sign[facing=west,waterlogged=false] 71 65 50 10 56 52 40 10 35 32 25 10 28 26 20 10 -minecraft:oak_wall_sign[facing=east,waterlogged=true] 71 65 50 10 56 52 40 10 35 32 25 10 28 26 20 10 -minecraft:oak_wall_sign[facing=east,waterlogged=false] 71 65 50 10 56 52 40 10 35 32 25 10 28 26 20 10 -minecraft:spruce_wall_sign 82 55 47 10 65 44 37 10 41 27 23 10 32 22 18 10 -minecraft:spruce_wall_sign[facing=north,waterlogged=false] 82 55 47 10 65 44 37 10 41 27 23 10 32 22 18 10 -minecraft:spruce_wall_sign[facing=south,waterlogged=true] 82 55 47 10 65 44 37 10 41 27 23 10 32 22 18 10 -minecraft:spruce_wall_sign[facing=south,waterlogged=false] 82 55 47 10 65 44 37 10 41 27 23 10 32 22 18 10 -minecraft:spruce_wall_sign[facing=west,waterlogged=true] 82 55 47 10 65 44 37 10 41 27 23 10 32 22 18 10 -minecraft:spruce_wall_sign[facing=west,waterlogged=false] 82 55 47 10 65 44 37 10 41 27 23 10 32 22 18 10 -minecraft:spruce_wall_sign[facing=east,waterlogged=true] 82 55 47 10 65 44 37 10 41 27 23 10 32 22 18 10 -minecraft:spruce_wall_sign[facing=east,waterlogged=false] 82 55 47 10 65 44 37 10 41 27 23 10 32 22 18 10 -minecraft:birch_wall_sign 183 169 121 10 146 135 96 10 91 84 60 10 73 67 48 10 -minecraft:birch_wall_sign[facing=north,waterlogged=false] 183 169 121 10 146 135 96 10 91 84 60 10 73 67 48 10 -minecraft:birch_wall_sign[facing=south,waterlogged=true] 183 169 121 10 146 135 96 10 91 84 60 10 73 67 48 10 -minecraft:birch_wall_sign[facing=south,waterlogged=false] 183 169 121 10 146 135 96 10 91 84 60 10 73 67 48 10 -minecraft:birch_wall_sign[facing=west,waterlogged=true] 183 169 121 10 146 135 96 10 91 84 60 10 73 67 48 10 -minecraft:birch_wall_sign[facing=west,waterlogged=false] 183 169 121 10 146 135 96 10 91 84 60 10 73 67 48 10 -minecraft:birch_wall_sign[facing=east,waterlogged=true] 183 169 121 10 146 135 96 10 91 84 60 10 73 67 48 10 -minecraft:birch_wall_sign[facing=east,waterlogged=false] 183 169 121 10 146 135 96 10 91 84 60 10 73 67 48 10 -minecraft:acacia_wall_sign 70 37 20 10 56 29 16 10 35 18 10 10 28 14 8 10 -minecraft:acacia_wall_sign[facing=north,waterlogged=false] 70 37 20 10 56 29 16 10 35 18 10 10 28 14 8 10 -minecraft:acacia_wall_sign[facing=south,waterlogged=true] 70 37 20 10 56 29 16 10 35 18 10 10 28 14 8 10 -minecraft:acacia_wall_sign[facing=south,waterlogged=false] 70 37 20 10 56 29 16 10 35 18 10 10 28 14 8 10 -minecraft:acacia_wall_sign[facing=west,waterlogged=true] 70 37 20 10 56 29 16 10 35 18 10 10 28 14 8 10 -minecraft:acacia_wall_sign[facing=west,waterlogged=false] 70 37 20 10 56 29 16 10 35 18 10 10 28 14 8 10 -minecraft:acacia_wall_sign[facing=east,waterlogged=true] 70 37 20 10 56 29 16 10 35 18 10 10 28 14 8 10 -minecraft:acacia_wall_sign[facing=east,waterlogged=false] 70 37 20 10 56 29 16 10 35 18 10 10 28 14 8 10 -minecraft:jungle_wall_sign 67 59 31 10 53 47 24 10 33 29 15 10 26 23 12 10 -minecraft:jungle_wall_sign[facing=north,waterlogged=false] 67 59 31 10 53 47 24 10 33 29 15 10 26 23 12 10 -minecraft:jungle_wall_sign[facing=south,waterlogged=true] 67 59 31 10 53 47 24 10 33 29 15 10 26 23 12 10 -minecraft:jungle_wall_sign[facing=south,waterlogged=false] 67 59 31 10 53 47 24 10 33 29 15 10 26 23 12 10 -minecraft:jungle_wall_sign[facing=west,waterlogged=true] 67 59 31 10 53 47 24 10 33 29 15 10 26 23 12 10 -minecraft:jungle_wall_sign[facing=west,waterlogged=false] 67 59 31 10 53 47 24 10 33 29 15 10 26 23 12 10 -minecraft:jungle_wall_sign[facing=east,waterlogged=true] 67 59 31 10 53 47 24 10 33 29 15 10 26 23 12 10 -minecraft:jungle_wall_sign[facing=east,waterlogged=false] 67 59 31 10 53 47 24 10 33 29 15 10 26 23 12 10 -minecraft:dark_oak_wall_sign 54 47 36 10 43 37 28 10 27 23 18 10 21 18 14 10 -minecraft:dark_oak_wall_sign[facing=north,waterlogged=false] 54 47 36 10 43 37 28 10 27 23 18 10 21 18 14 10 -minecraft:dark_oak_wall_sign[facing=south,waterlogged=true] 54 47 36 10 43 37 28 10 27 23 18 10 21 18 14 10 -minecraft:dark_oak_wall_sign[facing=south,waterlogged=false] 54 47 36 10 43 37 28 10 27 23 18 10 21 18 14 10 -minecraft:dark_oak_wall_sign[facing=west,waterlogged=true] 54 47 36 10 43 37 28 10 27 23 18 10 21 18 14 10 -minecraft:dark_oak_wall_sign[facing=west,waterlogged=false] 54 47 36 10 43 37 28 10 27 23 18 10 21 18 14 10 -minecraft:dark_oak_wall_sign[facing=east,waterlogged=true] 54 47 36 10 43 37 28 10 27 23 18 10 21 18 14 10 -minecraft:dark_oak_wall_sign[facing=east,waterlogged=false] 54 47 36 10 43 37 28 10 27 23 18 10 21 18 14 10 +minecraft:oak_wall_sign 111 90 63 10 88 72 50 10 55 45 31 10 44 36 25 10 +minecraft:oak_wall_sign[facing=north,waterlogged=false] 111 90 63 10 88 72 50 10 55 45 31 10 44 36 25 10 +minecraft:oak_wall_sign[facing=south,waterlogged=true] 111 90 63 10 88 72 50 10 55 45 31 10 44 36 25 10 +minecraft:oak_wall_sign[facing=south,waterlogged=false] 111 90 63 10 88 72 50 10 55 45 31 10 44 36 25 10 +minecraft:oak_wall_sign[facing=west,waterlogged=true] 111 90 63 10 88 72 50 10 55 45 31 10 44 36 25 10 +minecraft:oak_wall_sign[facing=west,waterlogged=false] 111 90 63 10 88 72 50 10 55 45 31 10 44 36 25 10 +minecraft:oak_wall_sign[facing=east,waterlogged=true] 111 90 63 10 88 72 50 10 55 45 31 10 44 36 25 10 +minecraft:oak_wall_sign[facing=east,waterlogged=false] 111 90 63 10 88 72 50 10 55 45 31 10 44 36 25 10 +minecraft:spruce_wall_sign 85 57 48 10 68 45 38 10 42 28 24 10 34 22 19 10 +minecraft:spruce_wall_sign[facing=north,waterlogged=false] 85 57 48 10 68 45 38 10 42 28 24 10 34 22 19 10 +minecraft:spruce_wall_sign[facing=south,waterlogged=true] 85 57 48 10 68 45 38 10 42 28 24 10 34 22 19 10 +minecraft:spruce_wall_sign[facing=south,waterlogged=false] 85 57 48 10 68 45 38 10 42 28 24 10 34 22 19 10 +minecraft:spruce_wall_sign[facing=west,waterlogged=true] 85 57 48 10 68 45 38 10 42 28 24 10 34 22 19 10 +minecraft:spruce_wall_sign[facing=west,waterlogged=false] 85 57 48 10 68 45 38 10 42 28 24 10 34 22 19 10 +minecraft:spruce_wall_sign[facing=east,waterlogged=true] 85 57 48 10 68 45 38 10 42 28 24 10 34 22 19 10 +minecraft:spruce_wall_sign[facing=east,waterlogged=false] 85 57 48 10 68 45 38 10 42 28 24 10 34 22 19 10 +minecraft:birch_wall_sign 172 158 113 10 137 126 90 10 86 79 56 10 68 63 45 10 +minecraft:birch_wall_sign[facing=north,waterlogged=false] 172 158 113 10 137 126 90 10 86 79 56 10 68 63 45 10 +minecraft:birch_wall_sign[facing=south,waterlogged=true] 172 158 113 10 137 126 90 10 86 79 56 10 68 63 45 10 +minecraft:birch_wall_sign[facing=south,waterlogged=false] 172 158 113 10 137 126 90 10 86 79 56 10 68 63 45 10 +minecraft:birch_wall_sign[facing=west,waterlogged=true] 172 158 113 10 137 126 90 10 86 79 56 10 68 63 45 10 +minecraft:birch_wall_sign[facing=west,waterlogged=false] 172 158 113 10 137 126 90 10 86 79 56 10 68 63 45 10 +minecraft:birch_wall_sign[facing=east,waterlogged=true] 172 158 113 10 137 126 90 10 86 79 56 10 68 63 45 10 +minecraft:birch_wall_sign[facing=east,waterlogged=false] 172 158 113 10 137 126 90 10 86 79 56 10 68 63 45 10 +minecraft:acacia_wall_sign 107 56 26 10 85 44 20 10 53 28 13 10 42 22 10 10 +minecraft:acacia_wall_sign[facing=north,waterlogged=false] 107 56 26 10 85 44 20 10 53 28 13 10 42 22 10 10 +minecraft:acacia_wall_sign[facing=south,waterlogged=true] 107 56 26 10 85 44 20 10 53 28 13 10 42 22 10 10 +minecraft:acacia_wall_sign[facing=south,waterlogged=false] 107 56 26 10 85 44 20 10 53 28 13 10 42 22 10 10 +minecraft:acacia_wall_sign[facing=west,waterlogged=true] 107 56 26 10 85 44 20 10 53 28 13 10 42 22 10 10 +minecraft:acacia_wall_sign[facing=west,waterlogged=false] 107 56 26 10 85 44 20 10 53 28 13 10 42 22 10 10 +minecraft:acacia_wall_sign[facing=east,waterlogged=true] 107 56 26 10 85 44 20 10 53 28 13 10 42 22 10 10 +minecraft:acacia_wall_sign[facing=east,waterlogged=false] 107 56 26 10 85 44 20 10 53 28 13 10 42 22 10 10 +minecraft:jungle_wall_sign 119 87 53 10 95 69 42 10 59 43 26 10 47 34 21 10 +minecraft:jungle_wall_sign[facing=north,waterlogged=false] 119 87 53 10 95 69 42 10 59 43 26 10 47 34 21 10 +minecraft:jungle_wall_sign[facing=south,waterlogged=true] 119 87 53 10 95 69 42 10 59 43 26 10 47 34 21 10 +minecraft:jungle_wall_sign[facing=south,waterlogged=false] 119 87 53 10 95 69 42 10 59 43 26 10 47 34 21 10 +minecraft:jungle_wall_sign[facing=west,waterlogged=true] 119 87 53 10 95 69 42 10 59 43 26 10 47 34 21 10 +minecraft:jungle_wall_sign[facing=west,waterlogged=false] 119 87 53 10 95 69 42 10 59 43 26 10 47 34 21 10 +minecraft:jungle_wall_sign[facing=east,waterlogged=true] 119 87 53 10 95 69 42 10 59 43 26 10 47 34 21 10 +minecraft:jungle_wall_sign[facing=east,waterlogged=false] 119 87 53 10 95 69 42 10 59 43 26 10 47 34 21 10 +minecraft:dark_oak_wall_sign 66 58 41 10 52 46 32 10 33 29 20 10 26 23 16 10 +minecraft:dark_oak_wall_sign[facing=north,waterlogged=false] 66 58 41 10 52 46 32 10 33 29 20 10 26 23 16 10 +minecraft:dark_oak_wall_sign[facing=south,waterlogged=true] 66 58 41 10 52 46 32 10 33 29 20 10 26 23 16 10 +minecraft:dark_oak_wall_sign[facing=south,waterlogged=false] 66 58 41 10 52 46 32 10 33 29 20 10 26 23 16 10 +minecraft:dark_oak_wall_sign[facing=west,waterlogged=true] 66 58 41 10 52 46 32 10 33 29 20 10 26 23 16 10 +minecraft:dark_oak_wall_sign[facing=west,waterlogged=false] 66 58 41 10 52 46 32 10 33 29 20 10 26 23 16 10 +minecraft:dark_oak_wall_sign[facing=east,waterlogged=true] 66 58 41 10 52 46 32 10 33 29 20 10 26 23 16 10 +minecraft:dark_oak_wall_sign[facing=east,waterlogged=false] 66 58 41 10 52 46 32 10 33 29 20 10 26 23 16 10 minecraft:lever 99 109 98 255 79 87 78 255 49 54 49 255 39 43 39 255 minecraft:lever[face=floor,facing=north,powered=false] 99 109 98 255 79 87 78 255 49 54 49 255 39 43 39 255 minecraft:lever[face=floor,facing=south,powered=true] 99 109 98 255 79 87 78 255 49 54 49 255 39 43 39 255 @@ -3590,96 +3605,96 @@ minecraft:lever[face=ceiling,facing=east,powered=true] 99 109 98 255 79 87 78 25 minecraft:lever[face=ceiling,facing=east,powered=false] 99 109 98 255 79 87 78 255 49 54 49 255 39 43 39 255 minecraft:stone_pressure_plate 121 134 127 255 96 107 101 255 60 67 63 255 48 53 50 255 minecraft:stone_pressure_plate[powered=false] 121 134 127 255 96 107 101 255 60 67 63 255 48 53 50 255 -minecraft:iron_door 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=north,half=upper,hinge=left,open=true,powered=false] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=north,half=upper,hinge=left,open=false,powered=true] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=north,half=upper,hinge=left,open=false,powered=false] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=north,half=upper,hinge=right,open=true,powered=true] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=north,half=upper,hinge=right,open=true,powered=false] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=north,half=upper,hinge=right,open=false,powered=true] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=north,half=upper,hinge=right,open=false,powered=false] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=north,half=lower,hinge=left,open=true,powered=true] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=north,half=lower,hinge=left,open=true,powered=false] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=north,half=lower,hinge=left,open=false,powered=true] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=north,half=lower,hinge=left,open=false,powered=false] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=north,half=lower,hinge=right,open=true,powered=true] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=north,half=lower,hinge=right,open=true,powered=false] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=north,half=lower,hinge=right,open=false,powered=true] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=north,half=lower,hinge=right,open=false,powered=false] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=south,half=upper,hinge=left,open=true,powered=true] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=south,half=upper,hinge=left,open=true,powered=false] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=south,half=upper,hinge=left,open=false,powered=true] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=south,half=upper,hinge=left,open=false,powered=false] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=south,half=upper,hinge=right,open=true,powered=true] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=south,half=upper,hinge=right,open=true,powered=false] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=south,half=upper,hinge=right,open=false,powered=true] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=south,half=upper,hinge=right,open=false,powered=false] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=south,half=lower,hinge=left,open=true,powered=true] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=south,half=lower,hinge=left,open=true,powered=false] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=south,half=lower,hinge=left,open=false,powered=true] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=south,half=lower,hinge=left,open=false,powered=false] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=south,half=lower,hinge=right,open=true,powered=true] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=south,half=lower,hinge=right,open=true,powered=false] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=south,half=lower,hinge=right,open=false,powered=true] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=south,half=lower,hinge=right,open=false,powered=false] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=west,half=upper,hinge=left,open=true,powered=true] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=west,half=upper,hinge=left,open=true,powered=false] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=west,half=upper,hinge=left,open=false,powered=true] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=west,half=upper,hinge=left,open=false,powered=false] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=west,half=upper,hinge=right,open=true,powered=true] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=west,half=upper,hinge=right,open=true,powered=false] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=west,half=upper,hinge=right,open=false,powered=true] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=west,half=upper,hinge=right,open=false,powered=false] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=west,half=lower,hinge=left,open=true,powered=true] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=west,half=lower,hinge=left,open=true,powered=false] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=west,half=lower,hinge=left,open=false,powered=true] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=west,half=lower,hinge=left,open=false,powered=false] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=west,half=lower,hinge=right,open=true,powered=true] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=west,half=lower,hinge=right,open=true,powered=false] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=west,half=lower,hinge=right,open=false,powered=true] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=west,half=lower,hinge=right,open=false,powered=false] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=east,half=upper,hinge=left,open=true,powered=true] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=east,half=upper,hinge=left,open=true,powered=false] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=east,half=upper,hinge=left,open=false,powered=true] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=east,half=upper,hinge=left,open=false,powered=false] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=east,half=upper,hinge=right,open=true,powered=true] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=east,half=upper,hinge=right,open=true,powered=false] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=east,half=upper,hinge=right,open=false,powered=true] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=east,half=upper,hinge=right,open=false,powered=false] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=east,half=lower,hinge=left,open=true,powered=true] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=east,half=lower,hinge=left,open=true,powered=false] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=east,half=lower,hinge=left,open=false,powered=true] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=east,half=lower,hinge=left,open=false,powered=false] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=east,half=lower,hinge=right,open=true,powered=true] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=east,half=lower,hinge=right,open=true,powered=false] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=east,half=lower,hinge=right,open=false,powered=true] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 -minecraft:iron_door[facing=east,half=lower,hinge=right,open=false,powered=false] 102 106 100 239 81 84 80 239 51 53 50 239 40 42 40 239 +minecraft:iron_door 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=upper,hinge=left,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=upper,hinge=left,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=upper,hinge=left,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=upper,hinge=right,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=upper,hinge=right,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=upper,hinge=right,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=upper,hinge=right,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=lower,hinge=left,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=lower,hinge=left,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=lower,hinge=left,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=lower,hinge=left,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=lower,hinge=right,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=lower,hinge=right,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=lower,hinge=right,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=lower,hinge=right,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=upper,hinge=left,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=upper,hinge=left,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=upper,hinge=left,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=upper,hinge=left,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=upper,hinge=right,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=upper,hinge=right,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=upper,hinge=right,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=upper,hinge=right,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=lower,hinge=left,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=lower,hinge=left,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=lower,hinge=left,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=lower,hinge=left,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=lower,hinge=right,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=lower,hinge=right,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=lower,hinge=right,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=lower,hinge=right,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=upper,hinge=left,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=upper,hinge=left,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=upper,hinge=left,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=upper,hinge=left,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=upper,hinge=right,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=upper,hinge=right,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=upper,hinge=right,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=upper,hinge=right,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=lower,hinge=left,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=lower,hinge=left,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=lower,hinge=left,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=lower,hinge=left,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=lower,hinge=right,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=lower,hinge=right,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=lower,hinge=right,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=lower,hinge=right,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=upper,hinge=left,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=upper,hinge=left,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=upper,hinge=left,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=upper,hinge=left,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=upper,hinge=right,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=upper,hinge=right,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=upper,hinge=right,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=upper,hinge=right,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=lower,hinge=left,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=lower,hinge=left,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=lower,hinge=left,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=lower,hinge=left,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=lower,hinge=right,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=lower,hinge=right,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=lower,hinge=right,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=lower,hinge=right,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 minecraft:oak_pressure_plate 86 70 50 255 68 56 40 255 43 35 25 255 34 28 20 255 minecraft:oak_pressure_plate[powered=false] 86 70 50 255 68 56 40 255 43 35 25 255 34 28 20 255 minecraft:spruce_pressure_plate 62 43 38 255 49 34 30 255 31 21 19 255 24 17 15 255 minecraft:spruce_pressure_plate[powered=false] 62 43 38 255 49 34 30 255 31 21 19 255 24 17 15 255 minecraft:birch_pressure_plate 114 100 75 255 91 80 60 255 57 50 37 255 45 40 30 255 minecraft:birch_pressure_plate[powered=false] 114 100 75 255 91 80 60 255 57 50 37 255 45 40 30 255 -minecraft:jungle_pressure_plate 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_pressure_plate[powered=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 +minecraft:jungle_pressure_plate 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_pressure_plate[powered=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 minecraft:acacia_pressure_plate 76 40 21 255 60 32 16 255 38 20 10 255 30 16 8 255 minecraft:acacia_pressure_plate[powered=false] 76 40 21 255 60 32 16 255 38 20 10 255 30 16 8 255 minecraft:dark_oak_pressure_plate 56 49 38 255 44 39 30 255 28 24 19 255 22 19 15 255 minecraft:dark_oak_pressure_plate[powered=false] 56 49 38 255 44 39 30 255 28 24 19 255 22 19 15 255 -minecraft:redstone_ore 131 83 79 255 104 66 63 255 65 41 39 255 52 33 31 255 -minecraft:redstone_ore[lit=false] 131 83 79 255 104 66 63 255 65 41 39 255 52 33 31 255 +minecraft:redstone_ore 130 84 80 252 104 67 64 252 65 42 40 252 52 33 32 252 +minecraft:redstone_ore[lit=false] 130 84 80 252 104 67 64 252 65 42 40 252 52 33 32 252 minecraft:deepslate_redstone_ore 104 73 74 255 83 58 59 255 52 36 37 255 41 29 29 255 minecraft:deepslate_redstone_ore[lit=false] 104 73 74 255 83 58 59 255 52 36 37 255 41 29 29 255 minecraft:redstone_torch 71 61 57 35 56 48 45 35 35 30 28 35 28 24 22 35 -minecraft:redstone_torch[lit=false] 74 70 66 69 59 56 52 69 37 35 33 69 29 28 26 69 +minecraft:redstone_torch[lit=false] 71 67 63 73 56 53 50 73 35 33 31 73 28 26 25 73 minecraft:redstone_wall_torch 71 61 57 35 56 48 45 35 35 30 28 35 28 24 22 35 -minecraft:redstone_wall_torch[facing=north,lit=false] 74 70 66 69 59 56 52 69 37 35 33 69 29 28 26 69 +minecraft:redstone_wall_torch[facing=north,lit=false] 71 67 63 73 56 53 50 73 35 33 31 73 28 26 25 73 minecraft:redstone_wall_torch[facing=south,lit=true] 71 61 57 35 56 48 45 35 35 30 28 35 28 24 22 35 -minecraft:redstone_wall_torch[facing=south,lit=false] 74 70 66 69 59 56 52 69 37 35 33 69 29 28 26 69 +minecraft:redstone_wall_torch[facing=south,lit=false] 71 67 63 73 56 53 50 73 35 33 31 73 28 26 25 73 minecraft:redstone_wall_torch[facing=west,lit=true] 71 61 57 35 56 48 45 35 35 30 28 35 28 24 22 35 -minecraft:redstone_wall_torch[facing=west,lit=false] 74 70 66 69 59 56 52 69 37 35 33 69 29 28 26 69 +minecraft:redstone_wall_torch[facing=west,lit=false] 71 67 63 73 56 53 50 73 35 33 31 73 28 26 25 73 minecraft:redstone_wall_torch[facing=east,lit=true] 71 61 57 35 56 48 45 35 35 30 28 35 28 24 22 35 -minecraft:redstone_wall_torch[facing=east,lit=false] 74 70 66 69 59 56 52 69 37 35 33 69 29 28 26 69 +minecraft:redstone_wall_torch[facing=east,lit=false] 71 67 63 73 56 53 50 73 35 33 31 73 28 26 25 73 minecraft:stone_button 121 134 127 255 96 107 101 255 60 67 63 255 48 53 50 255 minecraft:stone_button[face=floor,facing=north,powered=false] 121 134 127 255 96 107 101 255 60 67 63 255 48 53 50 255 minecraft:stone_button[face=floor,facing=south,powered=true] 121 134 127 255 96 107 101 255 60 67 63 255 48 53 50 255 @@ -3731,22 +3746,22 @@ minecraft:cactus[age=13] 73 109 54 195 58 87 43 195 36 54 27 195 29 43 21 195 minecraft:cactus[age=14] 73 109 54 195 58 87 43 195 36 54 27 195 29 43 21 195 minecraft:cactus[age=15] 73 109 54 195 58 87 43 195 36 54 27 195 29 43 21 195 minecraft:clay 143 159 164 255 114 127 131 255 71 79 82 255 57 63 65 255 -minecraft:sugar_cane 123 113 58 175 98 90 46 175 61 56 29 175 49 45 23 175 -minecraft:sugar_cane[age=1] 123 113 58 175 98 90 46 175 61 56 29 175 49 45 23 175 -minecraft:sugar_cane[age=2] 123 113 58 175 98 90 46 175 61 56 29 175 49 45 23 175 -minecraft:sugar_cane[age=3] 123 113 58 175 98 90 46 175 61 56 29 175 49 45 23 175 -minecraft:sugar_cane[age=4] 123 113 58 175 98 90 46 175 61 56 29 175 49 45 23 175 -minecraft:sugar_cane[age=5] 123 113 58 175 98 90 46 175 61 56 29 175 49 45 23 175 -minecraft:sugar_cane[age=6] 123 113 58 175 98 90 46 175 61 56 29 175 49 45 23 175 -minecraft:sugar_cane[age=7] 123 113 58 175 98 90 46 175 61 56 29 175 49 45 23 175 -minecraft:sugar_cane[age=8] 123 113 58 175 98 90 46 175 61 56 29 175 49 45 23 175 -minecraft:sugar_cane[age=9] 123 113 58 175 98 90 46 175 61 56 29 175 49 45 23 175 -minecraft:sugar_cane[age=10] 123 113 58 175 98 90 46 175 61 56 29 175 49 45 23 175 -minecraft:sugar_cane[age=11] 123 113 58 175 98 90 46 175 61 56 29 175 49 45 23 175 -minecraft:sugar_cane[age=12] 123 113 58 175 98 90 46 175 61 56 29 175 49 45 23 175 -minecraft:sugar_cane[age=13] 123 113 58 175 98 90 46 175 61 56 29 175 49 45 23 175 -minecraft:sugar_cane[age=14] 123 113 58 175 98 90 46 175 61 56 29 175 49 45 23 175 -minecraft:sugar_cane[age=15] 123 113 58 175 98 90 46 175 61 56 29 175 49 45 23 175 +minecraft:sugar_cane 125 115 61 195 100 92 48 195 62 57 30 195 50 46 24 195 +minecraft:sugar_cane[age=1] 125 115 61 195 100 92 48 195 62 57 30 195 50 46 24 195 +minecraft:sugar_cane[age=2] 125 115 61 195 100 92 48 195 62 57 30 195 50 46 24 195 +minecraft:sugar_cane[age=3] 125 115 61 195 100 92 48 195 62 57 30 195 50 46 24 195 +minecraft:sugar_cane[age=4] 125 115 61 195 100 92 48 195 62 57 30 195 50 46 24 195 +minecraft:sugar_cane[age=5] 125 115 61 195 100 92 48 195 62 57 30 195 50 46 24 195 +minecraft:sugar_cane[age=6] 125 115 61 195 100 92 48 195 62 57 30 195 50 46 24 195 +minecraft:sugar_cane[age=7] 125 115 61 195 100 92 48 195 62 57 30 195 50 46 24 195 +minecraft:sugar_cane[age=8] 125 115 61 195 100 92 48 195 62 57 30 195 50 46 24 195 +minecraft:sugar_cane[age=9] 125 115 61 195 100 92 48 195 62 57 30 195 50 46 24 195 +minecraft:sugar_cane[age=10] 125 115 61 195 100 92 48 195 62 57 30 195 50 46 24 195 +minecraft:sugar_cane[age=11] 125 115 61 195 100 92 48 195 62 57 30 195 50 46 24 195 +minecraft:sugar_cane[age=12] 125 115 61 195 100 92 48 195 62 57 30 195 50 46 24 195 +minecraft:sugar_cane[age=13] 125 115 61 195 100 92 48 195 62 57 30 195 50 46 24 195 +minecraft:sugar_cane[age=14] 125 115 61 195 100 92 48 195 62 57 30 195 50 46 24 195 +minecraft:sugar_cane[age=15] 125 115 61 195 100 92 48 195 62 57 30 195 50 46 24 195 minecraft:jukebox 81 79 73 255 64 63 58 255 40 39 36 255 32 31 29 255 minecraft:jukebox[has_record=false] 81 79 73 255 64 63 58 255 40 39 36 255 32 31 29 255 minecraft:oak_fence 86 70 50 255 68 56 40 255 43 35 25 255 34 28 20 255 @@ -3782,9 +3797,9 @@ minecraft:oak_fence[east=false,north=false,south=false,waterlogged=true,west=fal minecraft:oak_fence[east=false,north=false,south=false,waterlogged=false,west=true] 86 70 50 255 68 56 40 255 43 35 25 255 34 28 20 255 minecraft:oak_fence[east=false,north=false,south=false,waterlogged=false,west=false] 86 70 50 255 68 56 40 255 43 35 25 255 34 28 20 255 minecraft:pumpkin 182 99 31 255 145 79 24 255 91 49 15 255 72 39 12 255 -minecraft:netherrack 117 61 64 255 93 48 51 255 58 30 32 255 46 24 25 255 +minecraft:netherrack 115 58 62 255 92 46 49 255 57 29 31 255 46 23 24 255 minecraft:soul_sand 90 66 62 255 72 52 49 255 45 33 31 255 36 26 24 255 -minecraft:soul_soil 75 57 46 255 60 45 36 255 37 28 23 255 30 22 18 255 +minecraft:soul_soil 91 67 63 255 72 53 50 255 45 33 31 255 36 26 25 255 minecraft:basalt 73 72 77 255 58 57 61 255 36 36 38 255 29 28 30 255 minecraft:basalt[axis=y] 80 81 86 255 64 64 68 255 40 40 43 255 32 32 34 255 minecraft:basalt[axis=z] 73 72 77 255 58 57 61 255 36 36 38 255 29 28 30 255 @@ -3894,398 +3909,398 @@ minecraft:brown_stained_glass 94 59 33 176 75 47 26 176 47 29 16 176 37 23 13 17 minecraft:green_stained_glass 36 93 39 176 28 74 31 176 18 46 19 176 14 37 15 176 minecraft:red_stained_glass 152 36 33 176 121 28 26 176 76 18 16 176 60 14 13 176 minecraft:black_stained_glass 36 36 33 176 28 28 26 176 18 18 16 176 14 14 13 176 -minecraft:oak_trapdoor 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:oak_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false] 90 88 79 237 72 70 63 237 45 44 39 237 36 35 31 237 -minecraft:spruce_trapdoor 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:spruce_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false] 69 59 55 255 55 47 44 255 34 29 27 255 27 23 22 255 -minecraft:birch_trapdoor 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:birch_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false] 129 129 123 255 103 103 98 255 64 64 61 255 51 51 49 255 -minecraft:jungle_trapdoor 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:jungle_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false] 66 64 39 233 52 51 31 233 33 32 19 233 26 25 15 233 -minecraft:acacia_trapdoor 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:acacia_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false] 76 41 22 219 60 32 17 219 38 20 11 219 30 16 8 219 -minecraft:dark_oak_trapdoor 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 -minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false] 65 61 51 255 52 48 40 255 32 30 25 255 26 24 20 255 +minecraft:oak_trapdoor 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:spruce_trapdoor 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:birch_trapdoor 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:jungle_trapdoor 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:acacia_trapdoor 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:dark_oak_trapdoor 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 minecraft:stone_bricks 110 124 117 255 88 99 93 255 55 62 58 255 44 49 46 255 -minecraft:mossy_stone_bricks 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 +minecraft:mossy_stone_bricks 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 minecraft:cracked_stone_bricks 102 115 109 255 81 92 87 255 51 57 54 255 40 46 43 255 minecraft:chiseled_stone_bricks 87 99 93 255 69 79 74 255 43 49 46 255 34 39 37 255 minecraft:infested_stone 121 134 127 255 96 107 101 255 60 67 63 255 48 53 50 255 minecraft:infested_cobblestone 99 109 98 255 79 87 78 255 49 54 49 255 39 43 39 255 minecraft:infested_stone_bricks 110 124 117 255 88 99 93 255 55 62 58 255 44 49 46 255 -minecraft:infested_mossy_stone_bricks 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 +minecraft:infested_mossy_stone_bricks 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 minecraft:infested_cracked_stone_bricks 102 115 109 255 81 92 87 255 51 57 54 255 40 46 43 255 minecraft:infested_chiseled_stone_bricks 87 99 93 255 69 79 74 255 43 49 46 255 34 39 37 255 minecraft:brown_mushroom_block 198 188 167 255 158 150 133 255 99 94 83 255 79 75 66 255 @@ -4512,12 +4527,6 @@ minecraft:iron_bars[east=false,north=false,south=false,waterlogged=true,west=tru minecraft:iron_bars[east=false,north=false,south=false,waterlogged=true,west=false] 40 40 37 255 32 32 29 255 20 20 18 255 16 16 14 255 minecraft:iron_bars[east=false,north=false,south=false,waterlogged=false,west=true] 40 40 37 255 32 32 29 255 20 20 18 255 16 16 14 255 minecraft:iron_bars[east=false,north=false,south=false,waterlogged=false,west=false] 40 40 37 255 32 32 29 255 20 20 18 255 16 16 14 255 -minecraft:chain 52 59 75 25 41 47 60 25 26 29 37 25 20 23 30 25 -minecraft:chain[axis=x,waterlogged=false] 52 59 75 25 41 47 60 25 26 29 37 25 20 23 30 25 -minecraft:chain[axis=y,waterlogged=true] 52 59 75 25 41 47 60 25 26 29 37 25 20 23 30 25 -minecraft:chain[axis=y,waterlogged=false] 52 59 75 25 41 47 60 25 26 29 37 25 20 23 30 25 -minecraft:chain[axis=z,waterlogged=true] 52 59 75 25 41 47 60 25 26 29 37 25 20 23 30 25 -minecraft:chain[axis=z,waterlogged=false] 52 59 75 25 41 47 60 25 26 29 37 25 20 23 30 25 minecraft:glass_pane 67 66 60 96 53 52 48 96 33 33 30 96 26 26 24 96 minecraft:glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 67 66 60 96 53 52 48 96 33 33 30 96 26 26 24 96 minecraft:glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 67 66 60 96 53 52 48 96 33 33 30 96 26 26 24 96 @@ -4551,190 +4560,190 @@ minecraft:glass_pane[east=false,north=false,south=false,waterlogged=true,west=fa minecraft:glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 67 66 60 96 53 52 48 96 33 33 30 96 26 26 24 96 minecraft:glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 67 66 60 96 53 52 48 96 33 33 30 96 26 26 24 96 minecraft:melon 94 159 67 255 75 127 53 255 47 79 33 255 37 63 26 255 -minecraft:attached_pumpkin_stem 31 54 22 89 24 43 17 89 15 27 11 89 12 21 8 89 -minecraft:attached_pumpkin_stem[facing=south] 31 54 22 89 24 43 17 89 15 27 11 89 12 21 8 89 -minecraft:attached_pumpkin_stem[facing=west] 31 54 22 89 24 43 17 89 15 27 11 89 12 21 8 89 -minecraft:attached_pumpkin_stem[facing=east] 31 54 22 89 24 43 17 89 15 27 11 89 12 21 8 89 -minecraft:attached_melon_stem 31 55 23 86 24 44 18 86 15 27 11 86 12 22 9 86 -minecraft:attached_melon_stem[facing=south] 31 55 23 86 24 44 18 86 15 27 11 86 12 22 9 86 -minecraft:attached_melon_stem[facing=west] 31 55 23 86 24 44 18 86 15 27 11 86 12 22 9 86 -minecraft:attached_melon_stem[facing=east] 31 55 23 86 24 44 18 86 15 27 11 86 12 22 9 86 -minecraft:pumpkin_stem 32 57 23 30 25 45 18 30 16 28 11 30 12 22 9 30 -minecraft:pumpkin_stem[age=1] 32 57 23 30 25 45 18 30 16 28 11 30 12 22 9 30 -minecraft:pumpkin_stem[age=2] 32 57 23 30 25 45 18 30 16 28 11 30 12 22 9 30 -minecraft:pumpkin_stem[age=3] 32 57 23 30 25 45 18 30 16 28 11 30 12 22 9 30 -minecraft:pumpkin_stem[age=4] 32 57 23 30 25 45 18 30 16 28 11 30 12 22 9 30 -minecraft:pumpkin_stem[age=5] 32 57 23 30 25 45 18 30 16 28 11 30 12 22 9 30 -minecraft:pumpkin_stem[age=6] 32 57 23 30 25 45 18 30 16 28 11 30 12 22 9 30 -minecraft:pumpkin_stem[age=7] 32 57 23 30 25 45 18 30 16 28 11 30 12 22 9 30 -minecraft:melon_stem 32 57 23 30 25 45 18 30 16 28 11 30 12 22 9 30 -minecraft:melon_stem[age=1] 32 57 23 30 25 45 18 30 16 28 11 30 12 22 9 30 -minecraft:melon_stem[age=2] 32 57 23 30 25 45 18 30 16 28 11 30 12 22 9 30 -minecraft:melon_stem[age=3] 32 57 23 30 25 45 18 30 16 28 11 30 12 22 9 30 -minecraft:melon_stem[age=4] 32 57 23 30 25 45 18 30 16 28 11 30 12 22 9 30 -minecraft:melon_stem[age=5] 32 57 23 30 25 45 18 30 16 28 11 30 12 22 9 30 -minecraft:melon_stem[age=6] 32 57 23 30 25 45 18 30 16 28 11 30 12 22 9 30 -minecraft:melon_stem[age=7] 32 57 23 30 25 45 18 30 16 28 11 30 12 22 9 30 -minecraft:vine 31 54 22 170 24 43 17 170 15 27 11 170 12 21 8 170 -minecraft:vine[east=true,north=true,south=true,up=true,west=false] 31 54 22 170 24 43 17 170 15 27 11 170 12 21 8 170 -minecraft:vine[east=true,north=true,south=true,up=false,west=true] 31 54 22 170 24 43 17 170 15 27 11 170 12 21 8 170 -minecraft:vine[east=true,north=true,south=true,up=false,west=false] 31 54 22 170 24 43 17 170 15 27 11 170 12 21 8 170 -minecraft:vine[east=true,north=true,south=false,up=true,west=true] 31 54 22 170 24 43 17 170 15 27 11 170 12 21 8 170 -minecraft:vine[east=true,north=true,south=false,up=true,west=false] 31 54 22 170 24 43 17 170 15 27 11 170 12 21 8 170 -minecraft:vine[east=true,north=true,south=false,up=false,west=true] 31 54 22 170 24 43 17 170 15 27 11 170 12 21 8 170 -minecraft:vine[east=true,north=true,south=false,up=false,west=false] 31 54 22 170 24 43 17 170 15 27 11 170 12 21 8 170 -minecraft:vine[east=true,north=false,south=true,up=true,west=true] 31 54 22 170 24 43 17 170 15 27 11 170 12 21 8 170 -minecraft:vine[east=true,north=false,south=true,up=true,west=false] 31 54 22 170 24 43 17 170 15 27 11 170 12 21 8 170 -minecraft:vine[east=true,north=false,south=true,up=false,west=true] 31 54 22 170 24 43 17 170 15 27 11 170 12 21 8 170 -minecraft:vine[east=true,north=false,south=true,up=false,west=false] 31 54 22 170 24 43 17 170 15 27 11 170 12 21 8 170 -minecraft:vine[east=true,north=false,south=false,up=true,west=true] 31 54 22 170 24 43 17 170 15 27 11 170 12 21 8 170 -minecraft:vine[east=true,north=false,south=false,up=true,west=false] 31 54 22 170 24 43 17 170 15 27 11 170 12 21 8 170 -minecraft:vine[east=true,north=false,south=false,up=false,west=true] 31 54 22 170 24 43 17 170 15 27 11 170 12 21 8 170 -minecraft:vine[east=true,north=false,south=false,up=false,west=false] 31 54 22 170 24 43 17 170 15 27 11 170 12 21 8 170 -minecraft:vine[east=false,north=true,south=true,up=true,west=true] 31 54 22 170 24 43 17 170 15 27 11 170 12 21 8 170 -minecraft:vine[east=false,north=true,south=true,up=true,west=false] 31 54 22 170 24 43 17 170 15 27 11 170 12 21 8 170 -minecraft:vine[east=false,north=true,south=true,up=false,west=true] 31 54 22 170 24 43 17 170 15 27 11 170 12 21 8 170 -minecraft:vine[east=false,north=true,south=true,up=false,west=false] 31 54 22 170 24 43 17 170 15 27 11 170 12 21 8 170 -minecraft:vine[east=false,north=true,south=false,up=true,west=true] 31 54 22 170 24 43 17 170 15 27 11 170 12 21 8 170 -minecraft:vine[east=false,north=true,south=false,up=true,west=false] 31 54 22 170 24 43 17 170 15 27 11 170 12 21 8 170 -minecraft:vine[east=false,north=true,south=false,up=false,west=true] 31 54 22 170 24 43 17 170 15 27 11 170 12 21 8 170 -minecraft:vine[east=false,north=true,south=false,up=false,west=false] 31 54 22 170 24 43 17 170 15 27 11 170 12 21 8 170 -minecraft:vine[east=false,north=false,south=true,up=true,west=true] 31 54 22 170 24 43 17 170 15 27 11 170 12 21 8 170 -minecraft:vine[east=false,north=false,south=true,up=true,west=false] 31 54 22 170 24 43 17 170 15 27 11 170 12 21 8 170 -minecraft:vine[east=false,north=false,south=true,up=false,west=true] 31 54 22 170 24 43 17 170 15 27 11 170 12 21 8 170 -minecraft:vine[east=false,north=false,south=true,up=false,west=false] 31 54 22 170 24 43 17 170 15 27 11 170 12 21 8 170 -minecraft:vine[east=false,north=false,south=false,up=true,west=true] 31 54 22 170 24 43 17 170 15 27 11 170 12 21 8 170 -minecraft:vine[east=false,north=false,south=false,up=true,west=false] 31 54 22 170 24 43 17 170 15 27 11 170 12 21 8 170 -minecraft:vine[east=false,north=false,south=false,up=false,west=true] 31 54 22 170 24 43 17 170 15 27 11 170 12 21 8 170 -minecraft:vine[east=false,north=false,south=false,up=false,west=false] 31 54 22 170 24 43 17 170 15 27 11 170 12 21 8 170 -minecraft:glow_lichen 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 -minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:attached_pumpkin_stem 46 75 34 32 36 60 27 32 23 37 17 32 18 30 13 32 +minecraft:attached_pumpkin_stem[facing=south] 46 75 34 32 36 60 27 32 23 37 17 32 18 30 13 32 +minecraft:attached_pumpkin_stem[facing=west] 46 75 34 32 36 60 27 32 23 37 17 32 18 30 13 32 +minecraft:attached_pumpkin_stem[facing=east] 46 75 34 32 36 60 27 32 23 37 17 32 18 30 13 32 +minecraft:attached_melon_stem 47 76 34 32 37 60 27 32 23 38 17 32 18 30 13 32 +minecraft:attached_melon_stem[facing=south] 47 76 34 32 37 60 27 32 23 38 17 32 18 30 13 32 +minecraft:attached_melon_stem[facing=west] 47 76 34 32 37 60 27 32 23 38 17 32 18 30 13 32 +minecraft:attached_melon_stem[facing=east] 47 76 34 32 37 60 27 32 23 38 17 32 18 30 13 32 +minecraft:pumpkin_stem 39 64 29 30 31 51 23 30 19 32 14 30 15 25 11 30 +minecraft:pumpkin_stem[age=1] 39 64 29 30 31 51 23 30 19 32 14 30 15 25 11 30 +minecraft:pumpkin_stem[age=2] 39 64 29 30 31 51 23 30 19 32 14 30 15 25 11 30 +minecraft:pumpkin_stem[age=3] 39 64 29 30 31 51 23 30 19 32 14 30 15 25 11 30 +minecraft:pumpkin_stem[age=4] 39 64 29 30 31 51 23 30 19 32 14 30 15 25 11 30 +minecraft:pumpkin_stem[age=5] 39 64 29 30 31 51 23 30 19 32 14 30 15 25 11 30 +minecraft:pumpkin_stem[age=6] 39 64 29 30 31 51 23 30 19 32 14 30 15 25 11 30 +minecraft:pumpkin_stem[age=7] 39 64 29 30 31 51 23 30 19 32 14 30 15 25 11 30 +minecraft:melon_stem 51 82 37 34 40 65 29 34 25 41 18 34 20 32 14 34 +minecraft:melon_stem[age=1] 51 82 37 34 40 65 29 34 25 41 18 34 20 32 14 34 +minecraft:melon_stem[age=2] 51 82 37 34 40 65 29 34 25 41 18 34 20 32 14 34 +minecraft:melon_stem[age=3] 51 82 37 34 40 65 29 34 25 41 18 34 20 32 14 34 +minecraft:melon_stem[age=4] 51 82 37 34 40 65 29 34 25 41 18 34 20 32 14 34 +minecraft:melon_stem[age=5] 51 82 37 34 40 65 29 34 25 41 18 34 20 32 14 34 +minecraft:melon_stem[age=6] 51 82 37 34 40 65 29 34 25 41 18 34 20 32 14 34 +minecraft:melon_stem[age=7] 51 82 37 34 40 65 29 34 25 41 18 34 20 32 14 34 +minecraft:vine 40 53 24 145 32 42 19 145 20 26 12 145 16 21 9 145 +minecraft:vine[east=true,north=true,south=true,up=true,west=false] 40 53 24 145 32 42 19 145 20 26 12 145 16 21 9 145 +minecraft:vine[east=true,north=true,south=true,up=false,west=true] 40 53 24 145 32 42 19 145 20 26 12 145 16 21 9 145 +minecraft:vine[east=true,north=true,south=true,up=false,west=false] 40 53 24 145 32 42 19 145 20 26 12 145 16 21 9 145 +minecraft:vine[east=true,north=true,south=false,up=true,west=true] 40 53 24 145 32 42 19 145 20 26 12 145 16 21 9 145 +minecraft:vine[east=true,north=true,south=false,up=true,west=false] 40 53 24 145 32 42 19 145 20 26 12 145 16 21 9 145 +minecraft:vine[east=true,north=true,south=false,up=false,west=true] 40 53 24 145 32 42 19 145 20 26 12 145 16 21 9 145 +minecraft:vine[east=true,north=true,south=false,up=false,west=false] 40 53 24 145 32 42 19 145 20 26 12 145 16 21 9 145 +minecraft:vine[east=true,north=false,south=true,up=true,west=true] 40 53 24 145 32 42 19 145 20 26 12 145 16 21 9 145 +minecraft:vine[east=true,north=false,south=true,up=true,west=false] 40 53 24 145 32 42 19 145 20 26 12 145 16 21 9 145 +minecraft:vine[east=true,north=false,south=true,up=false,west=true] 40 53 24 145 32 42 19 145 20 26 12 145 16 21 9 145 +minecraft:vine[east=true,north=false,south=true,up=false,west=false] 40 53 24 145 32 42 19 145 20 26 12 145 16 21 9 145 +minecraft:vine[east=true,north=false,south=false,up=true,west=true] 40 53 24 145 32 42 19 145 20 26 12 145 16 21 9 145 +minecraft:vine[east=true,north=false,south=false,up=true,west=false] 40 53 24 145 32 42 19 145 20 26 12 145 16 21 9 145 +minecraft:vine[east=true,north=false,south=false,up=false,west=true] 40 53 24 145 32 42 19 145 20 26 12 145 16 21 9 145 +minecraft:vine[east=true,north=false,south=false,up=false,west=false] 40 53 24 145 32 42 19 145 20 26 12 145 16 21 9 145 +minecraft:vine[east=false,north=true,south=true,up=true,west=true] 40 53 24 145 32 42 19 145 20 26 12 145 16 21 9 145 +minecraft:vine[east=false,north=true,south=true,up=true,west=false] 40 53 24 145 32 42 19 145 20 26 12 145 16 21 9 145 +minecraft:vine[east=false,north=true,south=true,up=false,west=true] 40 53 24 145 32 42 19 145 20 26 12 145 16 21 9 145 +minecraft:vine[east=false,north=true,south=true,up=false,west=false] 40 53 24 145 32 42 19 145 20 26 12 145 16 21 9 145 +minecraft:vine[east=false,north=true,south=false,up=true,west=true] 40 53 24 145 32 42 19 145 20 26 12 145 16 21 9 145 +minecraft:vine[east=false,north=true,south=false,up=true,west=false] 40 53 24 145 32 42 19 145 20 26 12 145 16 21 9 145 +minecraft:vine[east=false,north=true,south=false,up=false,west=true] 40 53 24 145 32 42 19 145 20 26 12 145 16 21 9 145 +minecraft:vine[east=false,north=true,south=false,up=false,west=false] 40 53 24 145 32 42 19 145 20 26 12 145 16 21 9 145 +minecraft:vine[east=false,north=false,south=true,up=true,west=true] 40 53 24 145 32 42 19 145 20 26 12 145 16 21 9 145 +minecraft:vine[east=false,north=false,south=true,up=true,west=false] 40 53 24 145 32 42 19 145 20 26 12 145 16 21 9 145 +minecraft:vine[east=false,north=false,south=true,up=false,west=true] 40 53 24 145 32 42 19 145 20 26 12 145 16 21 9 145 +minecraft:vine[east=false,north=false,south=true,up=false,west=false] 40 53 24 145 32 42 19 145 20 26 12 145 16 21 9 145 +minecraft:vine[east=false,north=false,south=false,up=true,west=true] 40 53 24 145 32 42 19 145 20 26 12 145 16 21 9 145 +minecraft:vine[east=false,north=false,south=false,up=true,west=false] 40 53 24 145 32 42 19 145 20 26 12 145 16 21 9 145 +minecraft:vine[east=false,north=false,south=false,up=false,west=true] 40 53 24 145 32 42 19 145 20 26 12 145 16 21 9 145 +minecraft:vine[east=false,north=false,south=false,up=false,west=false] 40 53 24 145 32 42 19 145 20 26 12 145 16 21 9 145 +minecraft:glow_lichen 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=true,waterlogged=true,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=true,waterlogged=false,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=true,waterlogged=false,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=false,waterlogged=true,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=false,waterlogged=true,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=false,waterlogged=false,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=false,waterlogged=false,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=true,waterlogged=true,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=true,waterlogged=true,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=true,waterlogged=false,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=true,waterlogged=false,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=false,waterlogged=true,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=false,waterlogged=true,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=false,waterlogged=false,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=false,waterlogged=false,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=true,waterlogged=true,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=true,waterlogged=true,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=true,waterlogged=false,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=true,waterlogged=false,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=false,waterlogged=true,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=false,waterlogged=true,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=false,waterlogged=false,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=false,waterlogged=false,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=true,waterlogged=true,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=true,waterlogged=true,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=true,waterlogged=false,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=true,waterlogged=false,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=false,waterlogged=true,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=false,waterlogged=true,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=false,waterlogged=false,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=false,waterlogged=false,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=true,waterlogged=true,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=true,waterlogged=true,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=true,waterlogged=false,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=true,waterlogged=false,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=false,waterlogged=true,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=false,waterlogged=true,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=false,waterlogged=false,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=false,waterlogged=false,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=true,waterlogged=true,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=true,waterlogged=true,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=true,waterlogged=false,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=true,waterlogged=false,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=false,waterlogged=true,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=false,waterlogged=true,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=false,waterlogged=false,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=false,waterlogged=false,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=true,waterlogged=true,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=true,waterlogged=true,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=true,waterlogged=false,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=true,waterlogged=false,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=false,waterlogged=true,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=false,waterlogged=true,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=false,waterlogged=false,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=false,waterlogged=false,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=true,waterlogged=true,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=true,waterlogged=true,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=true,waterlogged=false,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=true,waterlogged=false,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=false,waterlogged=true,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=false,waterlogged=true,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=false,waterlogged=false,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=false,waterlogged=false,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=true,waterlogged=true,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=true,waterlogged=true,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=true,waterlogged=false,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=true,waterlogged=false,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=false,waterlogged=true,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=false,waterlogged=true,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=false,waterlogged=false,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=false,waterlogged=false,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=true,waterlogged=true,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=true,waterlogged=true,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=true,waterlogged=false,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=true,waterlogged=false,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=false,waterlogged=true,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=false,waterlogged=true,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=false,waterlogged=false,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=false,waterlogged=false,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=true,waterlogged=true,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=true,waterlogged=true,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=true,waterlogged=false,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=true,waterlogged=false,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=false,waterlogged=true,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=false,waterlogged=true,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=false,waterlogged=false,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=false,waterlogged=false,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=true,waterlogged=true,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=true,waterlogged=true,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=true,waterlogged=false,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=true,waterlogged=false,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=false,waterlogged=true,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=false,waterlogged=true,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=false,waterlogged=false,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=false,waterlogged=false,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=true,waterlogged=true,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=true,waterlogged=true,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=true,waterlogged=false,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=true,waterlogged=false,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=false,waterlogged=true,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=false,waterlogged=true,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=false,waterlogged=false,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=false,waterlogged=false,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=true,waterlogged=true,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=true,waterlogged=true,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=true,waterlogged=false,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=true,waterlogged=false,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=false,waterlogged=true,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=false,waterlogged=true,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=false,waterlogged=false,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=false,waterlogged=false,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=true,waterlogged=true,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=true,waterlogged=true,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=true,waterlogged=false,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=true,waterlogged=false,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=false,waterlogged=true,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=false,waterlogged=true,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=false,waterlogged=false,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=false,waterlogged=false,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=true,waterlogged=true,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=true,waterlogged=true,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=true,waterlogged=false,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=true,waterlogged=false,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=false,waterlogged=true,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=false,waterlogged=true,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=false,waterlogged=false,west=true] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 +minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=false,waterlogged=false,west=false] 109 123 107 89 87 98 85 89 54 61 53 89 43 49 42 89 minecraft:oak_fence_gate 86 70 50 255 68 56 40 255 43 35 25 255 34 28 20 255 minecraft:oak_fence_gate[facing=north,in_wall=true,open=true,powered=false] 86 70 50 255 68 56 40 255 43 35 25 255 34 28 20 255 minecraft:oak_fence_gate[facing=north,in_wall=true,open=false,powered=true] 86 70 50 255 68 56 40 255 43 35 25 255 34 28 20 255 @@ -4927,7 +4936,7 @@ minecraft:stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogge minecraft:stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 110 124 117 255 88 99 93 255 55 62 58 255 44 49 46 255 minecraft:stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 110 124 117 255 88 99 93 255 55 62 58 255 44 49 46 255 minecraft:stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 110 124 117 255 88 99 93 255 55 62 58 255 44 49 46 255 -minecraft:mycelium 52 93 38 255 41 74 30 255 26 46 19 255 20 37 15 255 +minecraft:mycelium 64 104 47 255 51 83 37 255 32 52 23 255 25 41 18 255 minecraft:mycelium[snowy=false] 94 77 96 255 75 61 76 255 47 38 48 255 37 30 38 255 minecraft:lily_pad 17 71 26 157 13 56 20 157 8 35 13 157 6 28 10 157 minecraft:nether_bricks 51 27 33 255 40 21 26 255 25 13 16 255 20 10 13 255 @@ -5047,15 +5056,15 @@ minecraft:nether_wart 71 19 23 38 56 15 18 38 35 9 11 38 28 7 9 38 minecraft:nether_wart[age=1] 68 19 22 73 54 15 17 73 34 9 11 73 27 7 8 73 minecraft:nether_wart[age=2] 68 19 22 73 54 15 17 73 34 9 11 73 27 7 8 73 minecraft:nether_wart[age=3] 60 18 20 160 48 14 16 160 30 9 10 160 24 7 8 160 -minecraft:enchanting_table 44 33 35 255 35 26 28 255 22 16 17 255 17 13 14 255 -minecraft:brewing_stand 153 144 125 173 122 115 100 173 76 72 62 173 61 57 50 173 -minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=true,has_bottle_2=false] 153 144 125 173 122 115 100 173 76 72 62 173 61 57 50 173 -minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=false,has_bottle_2=true] 153 144 125 173 122 115 100 173 76 72 62 173 61 57 50 173 -minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=false,has_bottle_2=false] 153 144 125 173 122 115 100 173 76 72 62 173 61 57 50 173 -minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=true,has_bottle_2=true] 153 144 125 173 122 115 100 173 76 72 62 173 61 57 50 173 -minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=true,has_bottle_2=false] 153 144 125 173 122 115 100 173 76 72 62 173 61 57 50 173 -minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=false,has_bottle_2=true] 153 144 125 173 122 115 100 173 76 72 62 173 61 57 50 173 -minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=false,has_bottle_2=false] 153 144 125 173 122 115 100 173 76 72 62 173 61 57 50 173 +minecraft:enchanting_table 44 33 35 254 35 26 28 254 22 16 17 254 17 13 14 254 +minecraft:brewing_stand 153 144 125 172 122 115 100 172 76 72 62 172 61 57 50 172 +minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=true,has_bottle_2=false] 153 144 125 172 122 115 100 172 76 72 62 172 61 57 50 172 +minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=false,has_bottle_2=true] 153 144 125 172 122 115 100 172 76 72 62 172 61 57 50 172 +minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=false,has_bottle_2=false] 153 144 125 172 122 115 100 172 76 72 62 172 61 57 50 172 +minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=true,has_bottle_2=true] 153 144 125 172 122 115 100 172 76 72 62 172 61 57 50 172 +minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=true,has_bottle_2=false] 153 144 125 172 122 115 100 172 76 72 62 172 61 57 50 172 +minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=false,has_bottle_2=true] 153 144 125 172 122 115 100 172 76 72 62 172 61 57 50 172 +minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=false,has_bottle_2=false] 153 144 125 172 122 115 100 172 76 72 62 172 61 57 50 172 minecraft:cauldron 61 61 61 111 48 48 48 111 30 30 30 111 24 24 24 111 minecraft:water_cauldron 61 61 61 111 48 48 48 111 30 30 30 111 24 24 24 111 minecraft:water_cauldron[level=2] 61 61 61 111 48 48 48 111 30 30 30 111 24 24 24 111 @@ -5065,14 +5074,14 @@ minecraft:powder_snow_cauldron 61 61 61 111 48 48 48 111 30 30 30 111 24 24 24 1 minecraft:powder_snow_cauldron[level=2] 61 61 61 111 48 48 48 111 30 30 30 111 24 24 24 111 minecraft:powder_snow_cauldron[level=3] 61 61 61 111 48 48 48 111 30 30 30 111 24 24 24 111 minecraft:end_portal 0 0 63 255 0 0 50 255 0 0 31 255 0 0 25 255 -minecraft:end_portal_frame 135 136 125 255 108 108 100 255 67 68 62 255 54 54 50 255 -minecraft:end_portal_frame[eye=true,facing=south] 135 136 125 255 108 108 100 255 67 68 62 255 54 54 50 255 -minecraft:end_portal_frame[eye=true,facing=west] 135 136 125 255 108 108 100 255 67 68 62 255 54 54 50 255 -minecraft:end_portal_frame[eye=true,facing=east] 135 136 125 255 108 108 100 255 67 68 62 255 54 54 50 255 -minecraft:end_portal_frame[eye=false,facing=north] 140 150 130 95 112 120 104 95 70 75 65 95 56 60 52 95 -minecraft:end_portal_frame[eye=false,facing=south] 140 150 130 95 112 120 104 95 70 75 65 95 56 60 52 95 -minecraft:end_portal_frame[eye=false,facing=west] 140 150 130 95 112 120 104 95 70 75 65 95 56 60 52 95 -minecraft:end_portal_frame[eye=false,facing=east] 140 150 130 95 112 120 104 95 70 75 65 95 56 60 52 95 +minecraft:end_portal_frame 179 178 156 255 143 142 124 255 89 89 78 255 71 71 62 255 +minecraft:end_portal_frame[eye=true,facing=south] 179 178 156 255 143 142 124 255 89 89 78 255 71 71 62 255 +minecraft:end_portal_frame[eye=true,facing=west] 179 178 156 255 143 142 124 255 89 89 78 255 71 71 62 255 +minecraft:end_portal_frame[eye=true,facing=east] 179 178 156 255 143 142 124 255 89 89 78 255 71 71 62 255 +minecraft:end_portal_frame[eye=false,facing=north] 179 178 156 255 143 142 124 255 89 89 78 255 71 71 62 255 +minecraft:end_portal_frame[eye=false,facing=south] 179 178 156 255 143 142 124 255 89 89 78 255 71 71 62 255 +minecraft:end_portal_frame[eye=false,facing=west] 179 178 156 255 143 142 124 255 89 89 78 255 71 71 62 255 +minecraft:end_portal_frame[eye=false,facing=east] 179 178 156 255 143 142 124 255 89 89 78 255 71 71 62 255 minecraft:end_stone 179 178 156 255 143 142 124 255 89 89 78 255 71 71 62 255 minecraft:dragon_egg 37 37 41 255 29 29 32 255 18 18 20 255 14 14 16 255 minecraft:redstone_lamp 137 111 65 255 109 88 52 255 68 55 32 255 54 44 26 255 @@ -5170,7 +5179,7 @@ minecraft:sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged= minecraft:sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 205 189 142 255 164 151 113 255 102 94 71 255 82 75 56 255 minecraft:sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 205 189 142 255 164 151 113 255 102 94 71 255 82 75 56 255 minecraft:emerald_ore 91 133 107 255 72 106 85 255 45 66 53 255 36 53 42 255 -minecraft:deepslate_emerald_ore 78 104 87 255 62 83 69 255 39 52 43 255 31 41 34 255 +minecraft:deepslate_emerald_ore 60 94 76 255 48 75 60 255 30 47 38 255 24 37 30 255 minecraft:ender_chest 42 39 52 195 33 31 41 195 21 19 26 195 16 15 20 195 minecraft:ender_chest[facing=north,waterlogged=false] 42 39 52 195 33 31 41 195 21 19 26 195 16 15 20 195 minecraft:ender_chest[facing=south,waterlogged=true] 42 39 52 195 33 31 41 195 21 19 26 195 16 15 20 195 @@ -5356,98 +5365,98 @@ minecraft:birch_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true minecraft:birch_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 114 100 75 255 91 80 60 255 57 50 37 255 45 40 30 255 minecraft:birch_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 114 100 75 255 91 80 60 255 57 50 37 255 45 40 30 255 minecraft:birch_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 114 100 75 255 91 80 60 255 57 50 37 255 45 40 30 255 -minecraft:jungle_stairs 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=north,half=top,shape=straight,waterlogged=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=south,half=top,shape=straight,waterlogged=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=south,half=top,shape=straight,waterlogged=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=west,half=top,shape=straight,waterlogged=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=west,half=top,shape=straight,waterlogged=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=east,half=top,shape=straight,waterlogged=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=east,half=top,shape=straight,waterlogged=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:command_block 97 60 60 255 77 48 48 255 48 30 30 255 38 24 24 255 -minecraft:command_block[conditional=true,facing=east] 98 63 63 255 78 50 50 255 49 31 31 255 39 25 25 255 -minecraft:command_block[conditional=true,facing=south] 93 63 63 255 74 50 50 255 46 31 31 255 37 25 25 255 -minecraft:command_block[conditional=true,facing=west] 93 63 63 255 74 50 50 255 46 31 31 255 37 25 25 255 -minecraft:command_block[conditional=true,facing=up] 93 63 63 255 74 50 50 255 46 31 31 255 37 25 25 255 -minecraft:command_block[conditional=true,facing=down] 93 63 63 255 74 50 50 255 46 31 31 255 37 25 25 255 -minecraft:command_block[conditional=false,facing=north] 97 60 60 255 77 48 48 255 48 30 30 255 38 24 24 255 -minecraft:command_block[conditional=false,facing=east] 98 63 63 255 78 50 50 255 49 31 31 255 39 25 25 255 -minecraft:command_block[conditional=false,facing=south] 94 62 62 255 75 49 49 255 47 31 31 255 37 24 24 255 -minecraft:command_block[conditional=false,facing=west] 94 62 62 255 75 49 49 255 47 31 31 255 37 24 24 255 -minecraft:command_block[conditional=false,facing=up] 94 62 62 255 75 49 49 255 47 31 31 255 37 24 24 255 -minecraft:command_block[conditional=false,facing=down] 94 62 62 255 75 49 49 255 47 31 31 255 37 24 24 255 +minecraft:jungle_stairs 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=north,half=top,shape=straight,waterlogged=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=south,half=top,shape=straight,waterlogged=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=south,half=top,shape=straight,waterlogged=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=west,half=top,shape=straight,waterlogged=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=west,half=top,shape=straight,waterlogged=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=east,half=top,shape=straight,waterlogged=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=east,half=top,shape=straight,waterlogged=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:command_block 97 60 60 254 77 48 48 254 48 30 30 254 38 24 24 254 +minecraft:command_block[conditional=true,facing=east] 98 63 63 254 78 50 50 254 49 31 31 254 39 25 25 254 +minecraft:command_block[conditional=true,facing=south] 93 63 63 254 74 50 50 254 46 31 31 254 37 25 25 254 +minecraft:command_block[conditional=true,facing=west] 93 63 63 254 74 50 50 254 46 31 31 254 37 25 25 254 +minecraft:command_block[conditional=true,facing=up] 93 63 63 254 74 50 50 254 46 31 31 254 37 25 25 254 +minecraft:command_block[conditional=true,facing=down] 93 63 63 254 74 50 50 254 46 31 31 254 37 25 25 254 +minecraft:command_block[conditional=false,facing=north] 97 60 60 254 77 48 48 254 48 30 30 254 38 24 24 254 +minecraft:command_block[conditional=false,facing=east] 98 63 63 254 78 50 50 254 49 31 31 254 39 25 25 254 +minecraft:command_block[conditional=false,facing=south] 94 62 62 254 75 49 49 254 47 31 31 254 37 24 24 254 +minecraft:command_block[conditional=false,facing=west] 94 62 62 254 75 49 49 254 47 31 31 254 37 24 24 254 +minecraft:command_block[conditional=false,facing=up] 94 62 62 254 75 49 49 254 47 31 31 254 37 24 24 254 +minecraft:command_block[conditional=false,facing=down] 94 62 62 254 75 49 49 254 47 31 31 254 37 24 24 254 minecraft:beacon 67 66 60 96 53 52 48 96 33 33 30 96 26 26 24 96 minecraft:cobblestone_wall 99 109 98 255 79 87 78 255 49 54 49 255 39 43 39 255 minecraft:cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 99 109 98 255 79 87 78 255 49 54 49 255 39 43 39 255 @@ -6122,22 +6131,22 @@ minecraft:potted_red_mushroom 143 91 60 49 114 72 48 49 71 45 30 49 57 36 24 49 minecraft:potted_brown_mushroom 143 91 60 49 114 72 48 49 71 45 30 49 57 36 24 49 minecraft:potted_dead_bush 143 91 60 49 114 72 48 49 71 45 30 49 57 36 24 49 minecraft:potted_cactus 143 91 60 49 114 72 48 49 71 45 30 49 57 36 24 49 -minecraft:carrots 41 79 41 12 32 63 32 12 20 39 20 12 16 31 16 12 -minecraft:carrots[age=1] 41 79 41 12 32 63 32 12 20 39 20 12 16 31 16 12 -minecraft:carrots[age=2] 44 83 44 35 35 66 35 35 22 41 22 35 17 33 17 35 -minecraft:carrots[age=3] 44 83 44 35 35 66 35 35 22 41 22 35 17 33 17 35 -minecraft:carrots[age=4] 39 77 41 52 31 61 32 52 19 38 20 52 15 30 16 52 -minecraft:carrots[age=5] 39 77 41 52 31 61 32 52 19 38 20 52 15 30 16 52 -minecraft:carrots[age=6] 39 77 41 52 31 61 32 52 19 38 20 52 15 30 16 52 -minecraft:carrots[age=7] 41 78 41 104 32 62 32 104 20 39 20 104 16 31 16 104 -minecraft:potatoes 41 79 41 12 32 63 32 12 20 39 20 12 16 31 16 12 -minecraft:potatoes[age=1] 41 79 41 12 32 63 32 12 20 39 20 12 16 31 16 12 -minecraft:potatoes[age=2] 44 83 44 35 35 66 35 35 22 41 22 35 17 33 17 35 -minecraft:potatoes[age=3] 44 83 44 35 35 66 35 35 22 41 22 35 17 33 17 35 -minecraft:potatoes[age=4] 39 77 41 52 31 61 32 52 19 38 20 52 15 30 16 52 -minecraft:potatoes[age=5] 39 77 41 52 31 61 32 52 19 38 20 52 15 30 16 52 -minecraft:potatoes[age=6] 39 77 41 52 31 61 32 52 19 38 20 52 15 30 16 52 -minecraft:potatoes[age=7] 32 73 38 114 25 58 30 114 16 36 19 114 12 29 15 114 +minecraft:carrots 16 32 16 31 12 25 12 31 8 16 8 31 6 12 6 31 +minecraft:carrots[age=1] 16 32 16 31 12 25 12 31 8 16 8 31 6 12 6 31 +minecraft:carrots[age=2] 29 56 29 52 23 44 23 52 14 28 14 52 11 22 11 52 +minecraft:carrots[age=3] 29 56 29 52 23 44 23 52 14 28 14 52 11 22 11 52 +minecraft:carrots[age=4] 30 59 32 68 24 47 25 68 15 29 16 68 12 23 12 68 +minecraft:carrots[age=5] 30 59 32 68 24 47 25 68 15 29 16 68 12 23 12 68 +minecraft:carrots[age=6] 30 59 32 68 24 47 25 68 15 29 16 68 12 23 12 68 +minecraft:carrots[age=7] 37 70 37 115 29 56 29 115 18 35 18 115 14 28 14 115 +minecraft:potatoes 27 58 32 31 21 46 25 31 13 29 16 31 10 23 12 31 +minecraft:potatoes[age=1] 27 58 32 31 21 46 25 31 13 29 16 31 10 23 12 31 +minecraft:potatoes[age=2] 35 70 38 52 28 56 30 52 17 35 19 52 14 28 15 52 +minecraft:potatoes[age=3] 35 70 38 52 28 56 30 52 17 35 19 52 14 28 15 52 +minecraft:potatoes[age=4] 34 69 38 68 27 55 30 68 17 34 19 68 13 27 15 68 +minecraft:potatoes[age=5] 34 69 38 68 27 55 30 68 17 34 19 68 13 27 15 68 +minecraft:potatoes[age=6] 34 69 38 68 27 55 30 68 17 34 19 68 13 27 15 68 +minecraft:potatoes[age=7] 30 70 37 125 24 56 29 125 15 35 18 125 12 28 14 125 minecraft:oak_button 86 70 50 255 68 56 40 255 43 35 25 255 34 28 20 255 minecraft:oak_button[face=floor,facing=north,powered=false] 86 70 50 255 68 56 40 255 43 35 25 255 34 28 20 255 minecraft:oak_button[face=floor,facing=south,powered=true] 86 70 50 255 68 56 40 255 43 35 25 255 34 28 20 255 @@ -6210,30 +6219,30 @@ minecraft:birch_button[face=ceiling,facing=west,powered=true] 114 100 75 255 91 minecraft:birch_button[face=ceiling,facing=west,powered=false] 114 100 75 255 91 80 60 255 57 50 37 255 45 40 30 255 minecraft:birch_button[face=ceiling,facing=east,powered=true] 114 100 75 255 91 80 60 255 57 50 37 255 45 40 30 255 minecraft:birch_button[face=ceiling,facing=east,powered=false] 114 100 75 255 91 80 60 255 57 50 37 255 45 40 30 255 -minecraft:jungle_button 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_button[face=floor,facing=north,powered=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_button[face=floor,facing=south,powered=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_button[face=floor,facing=south,powered=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_button[face=floor,facing=west,powered=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_button[face=floor,facing=west,powered=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_button[face=floor,facing=east,powered=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_button[face=floor,facing=east,powered=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_button[face=wall,facing=north,powered=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_button[face=wall,facing=north,powered=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_button[face=wall,facing=south,powered=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_button[face=wall,facing=south,powered=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_button[face=wall,facing=west,powered=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_button[face=wall,facing=west,powered=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_button[face=wall,facing=east,powered=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_button[face=wall,facing=east,powered=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_button[face=ceiling,facing=north,powered=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_button[face=ceiling,facing=north,powered=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_button[face=ceiling,facing=south,powered=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_button[face=ceiling,facing=south,powered=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_button[face=ceiling,facing=west,powered=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_button[face=ceiling,facing=west,powered=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_button[face=ceiling,facing=east,powered=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_button[face=ceiling,facing=east,powered=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 +minecraft:jungle_button 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_button[face=floor,facing=north,powered=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_button[face=floor,facing=south,powered=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_button[face=floor,facing=south,powered=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_button[face=floor,facing=west,powered=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_button[face=floor,facing=west,powered=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_button[face=floor,facing=east,powered=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_button[face=floor,facing=east,powered=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_button[face=wall,facing=north,powered=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_button[face=wall,facing=north,powered=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_button[face=wall,facing=south,powered=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_button[face=wall,facing=south,powered=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_button[face=wall,facing=west,powered=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_button[face=wall,facing=west,powered=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_button[face=wall,facing=east,powered=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_button[face=wall,facing=east,powered=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_button[face=ceiling,facing=north,powered=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_button[face=ceiling,facing=north,powered=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_button[face=ceiling,facing=south,powered=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_button[face=ceiling,facing=south,powered=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_button[face=ceiling,facing=west,powered=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_button[face=ceiling,facing=west,powered=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_button[face=ceiling,facing=east,powered=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_button[face=ceiling,facing=east,powered=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 minecraft:acacia_button 76 40 21 255 60 32 16 255 38 20 10 255 30 16 8 255 minecraft:acacia_button[face=floor,facing=north,powered=false] 76 40 21 255 60 32 16 255 38 20 10 255 30 16 8 255 minecraft:acacia_button[face=floor,facing=south,powered=true] 76 40 21 255 60 32 16 255 38 20 10 255 30 16 8 255 @@ -6342,26 +6351,26 @@ minecraft:zombie_wall_head 210 201 177 255 168 160 141 255 105 100 88 255 84 80 minecraft:zombie_wall_head[facing=south] 210 201 177 255 168 160 141 255 105 100 88 255 84 80 70 255 minecraft:zombie_wall_head[facing=west] 210 201 177 255 168 160 141 255 105 100 88 255 84 80 70 255 minecraft:zombie_wall_head[facing=east] 210 201 177 255 168 160 141 255 105 100 88 255 84 80 70 255 -minecraft:player_head 93 75 61 255 74 60 48 255 46 37 30 255 37 30 24 255 -minecraft:player_head[rotation=1] 93 75 61 255 74 60 48 255 46 37 30 255 37 30 24 255 -minecraft:player_head[rotation=2] 93 75 61 255 74 60 48 255 46 37 30 255 37 30 24 255 -minecraft:player_head[rotation=3] 93 75 61 255 74 60 48 255 46 37 30 255 37 30 24 255 -minecraft:player_head[rotation=4] 93 75 61 255 74 60 48 255 46 37 30 255 37 30 24 255 -minecraft:player_head[rotation=5] 93 75 61 255 74 60 48 255 46 37 30 255 37 30 24 255 -minecraft:player_head[rotation=6] 93 75 61 255 74 60 48 255 46 37 30 255 37 30 24 255 -minecraft:player_head[rotation=7] 93 75 61 255 74 60 48 255 46 37 30 255 37 30 24 255 -minecraft:player_head[rotation=8] 93 75 61 255 74 60 48 255 46 37 30 255 37 30 24 255 -minecraft:player_head[rotation=9] 93 75 61 255 74 60 48 255 46 37 30 255 37 30 24 255 -minecraft:player_head[rotation=10] 93 75 61 255 74 60 48 255 46 37 30 255 37 30 24 255 -minecraft:player_head[rotation=11] 93 75 61 255 74 60 48 255 46 37 30 255 37 30 24 255 -minecraft:player_head[rotation=12] 93 75 61 255 74 60 48 255 46 37 30 255 37 30 24 255 -minecraft:player_head[rotation=13] 93 75 61 255 74 60 48 255 46 37 30 255 37 30 24 255 -minecraft:player_head[rotation=14] 93 75 61 255 74 60 48 255 46 37 30 255 37 30 24 255 -minecraft:player_head[rotation=15] 93 75 61 255 74 60 48 255 46 37 30 255 37 30 24 255 -minecraft:player_wall_head 93 75 61 255 74 60 48 255 46 37 30 255 37 30 24 255 -minecraft:player_wall_head[facing=south] 93 75 61 255 74 60 48 255 46 37 30 255 37 30 24 255 -minecraft:player_wall_head[facing=west] 93 75 61 255 74 60 48 255 46 37 30 255 37 30 24 255 -minecraft:player_wall_head[facing=east] 93 75 61 255 74 60 48 255 46 37 30 255 37 30 24 255 +minecraft:player_head 113 95 80 255 90 76 64 255 56 47 40 255 45 38 32 255 +minecraft:player_head[rotation=1] 113 95 80 255 90 76 64 255 56 47 40 255 45 38 32 255 +minecraft:player_head[rotation=2] 113 95 80 255 90 76 64 255 56 47 40 255 45 38 32 255 +minecraft:player_head[rotation=3] 113 95 80 255 90 76 64 255 56 47 40 255 45 38 32 255 +minecraft:player_head[rotation=4] 113 95 80 255 90 76 64 255 56 47 40 255 45 38 32 255 +minecraft:player_head[rotation=5] 113 95 80 255 90 76 64 255 56 47 40 255 45 38 32 255 +minecraft:player_head[rotation=6] 113 95 80 255 90 76 64 255 56 47 40 255 45 38 32 255 +minecraft:player_head[rotation=7] 113 95 80 255 90 76 64 255 56 47 40 255 45 38 32 255 +minecraft:player_head[rotation=8] 113 95 80 255 90 76 64 255 56 47 40 255 45 38 32 255 +minecraft:player_head[rotation=9] 113 95 80 255 90 76 64 255 56 47 40 255 45 38 32 255 +minecraft:player_head[rotation=10] 113 95 80 255 90 76 64 255 56 47 40 255 45 38 32 255 +minecraft:player_head[rotation=11] 113 95 80 255 90 76 64 255 56 47 40 255 45 38 32 255 +minecraft:player_head[rotation=12] 113 95 80 255 90 76 64 255 56 47 40 255 45 38 32 255 +minecraft:player_head[rotation=13] 113 95 80 255 90 76 64 255 56 47 40 255 45 38 32 255 +minecraft:player_head[rotation=14] 113 95 80 255 90 76 64 255 56 47 40 255 45 38 32 255 +minecraft:player_head[rotation=15] 113 95 80 255 90 76 64 255 56 47 40 255 45 38 32 255 +minecraft:player_wall_head 113 95 80 255 90 76 64 255 56 47 40 255 45 38 32 255 +minecraft:player_wall_head[facing=south] 113 95 80 255 90 76 64 255 56 47 40 255 45 38 32 255 +minecraft:player_wall_head[facing=west] 113 95 80 255 90 76 64 255 56 47 40 255 45 38 32 255 +minecraft:player_wall_head[facing=east] 113 95 80 255 90 76 64 255 56 47 40 255 45 38 32 255 minecraft:creeper_head 73 95 54 255 58 76 43 255 36 47 27 255 29 38 21 255 minecraft:creeper_head[rotation=1] 73 95 54 255 58 76 43 255 36 47 27 255 29 38 21 255 minecraft:creeper_head[rotation=2] 73 95 54 255 58 76 43 255 36 47 27 255 29 38 21 255 @@ -6519,17 +6528,17 @@ minecraft:daylight_detector[inverted=false,power=13] 82 95 91 255 65 76 72 255 4 minecraft:daylight_detector[inverted=false,power=14] 82 95 91 255 65 76 72 255 41 47 45 255 32 38 36 255 minecraft:daylight_detector[inverted=false,power=15] 82 95 91 255 65 76 72 255 41 47 45 255 32 38 36 255 minecraft:redstone_block 94 56 53 255 75 44 42 255 47 28 26 255 37 22 21 255 -minecraft:nether_quartz_ore 139 87 79 255 111 69 63 255 69 43 39 255 55 34 31 255 -minecraft:hopper 43 43 43 255 34 34 34 255 21 21 21 255 17 17 17 255 -minecraft:hopper[enabled=true,facing=north] 43 43 43 255 34 34 34 255 21 21 21 255 17 17 17 255 -minecraft:hopper[enabled=true,facing=south] 43 43 43 255 34 34 34 255 21 21 21 255 17 17 17 255 -minecraft:hopper[enabled=true,facing=west] 43 43 43 255 34 34 34 255 21 21 21 255 17 17 17 255 -minecraft:hopper[enabled=true,facing=east] 43 43 43 255 34 34 34 255 21 21 21 255 17 17 17 255 -minecraft:hopper[enabled=false,facing=down] 43 43 43 255 34 34 34 255 21 21 21 255 17 17 17 255 -minecraft:hopper[enabled=false,facing=north] 43 43 43 255 34 34 34 255 21 21 21 255 17 17 17 255 -minecraft:hopper[enabled=false,facing=south] 43 43 43 255 34 34 34 255 21 21 21 255 17 17 17 255 -minecraft:hopper[enabled=false,facing=west] 43 43 43 255 34 34 34 255 21 21 21 255 17 17 17 255 -minecraft:hopper[enabled=false,facing=east] 43 43 43 255 34 34 34 255 21 21 21 255 17 17 17 255 +minecraft:nether_quartz_ore 114 73 70 255 91 58 56 255 57 36 35 255 45 29 28 255 +minecraft:hopper 114 114 114 255 91 91 91 255 57 57 57 255 45 45 45 255 +minecraft:hopper[enabled=true,facing=north] 114 114 114 255 91 91 91 255 57 57 57 255 45 45 45 255 +minecraft:hopper[enabled=true,facing=south] 114 114 114 255 91 91 91 255 57 57 57 255 45 45 45 255 +minecraft:hopper[enabled=true,facing=west] 114 114 114 255 91 91 91 255 57 57 57 255 45 45 45 255 +minecraft:hopper[enabled=true,facing=east] 114 114 114 255 91 91 91 255 57 57 57 255 45 45 45 255 +minecraft:hopper[enabled=false,facing=down] 114 114 114 255 91 91 91 255 57 57 57 255 45 45 45 255 +minecraft:hopper[enabled=false,facing=north] 114 114 114 255 91 91 91 255 57 57 57 255 45 45 45 255 +minecraft:hopper[enabled=false,facing=south] 114 114 114 255 91 91 91 255 57 57 57 255 45 45 45 255 +minecraft:hopper[enabled=false,facing=west] 114 114 114 255 91 91 91 255 57 57 57 255 45 45 45 255 +minecraft:hopper[enabled=false,facing=east] 114 114 114 255 91 91 91 255 57 57 57 255 45 45 45 255 minecraft:quartz_block 207 203 195 255 165 162 156 255 103 101 97 255 82 81 78 255 minecraft:chiseled_quartz_block 195 190 181 255 156 152 144 255 97 95 90 255 78 76 72 255 minecraft:quartz_pillar 188 183 171 255 150 146 136 255 94 91 85 255 75 73 68 255 @@ -6615,18 +6624,18 @@ minecraft:quartz_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=tru minecraft:quartz_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 207 203 195 255 165 162 156 255 103 101 97 255 82 81 78 255 minecraft:quartz_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 207 203 195 255 165 162 156 255 103 101 97 255 82 81 78 255 minecraft:quartz_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 207 203 195 255 165 162 156 255 103 101 97 255 82 81 78 255 -minecraft:activator_rail 77 69 62 211 61 55 49 211 38 34 31 211 30 27 24 211 -minecraft:activator_rail[powered=true,shape=north_south,waterlogged=false] 77 69 62 211 61 55 49 211 38 34 31 211 30 27 24 211 -minecraft:activator_rail[powered=true,shape=east_west,waterlogged=true] 77 69 62 211 61 55 49 211 38 34 31 211 30 27 24 211 -minecraft:activator_rail[powered=true,shape=east_west,waterlogged=false] 77 69 62 211 61 55 49 211 38 34 31 211 30 27 24 211 -minecraft:activator_rail[powered=true,shape=ascending_east,waterlogged=true] 77 69 62 211 61 55 49 211 38 34 31 211 30 27 24 211 -minecraft:activator_rail[powered=true,shape=ascending_east,waterlogged=false] 77 69 62 211 61 55 49 211 38 34 31 211 30 27 24 211 -minecraft:activator_rail[powered=true,shape=ascending_west,waterlogged=true] 77 69 62 211 61 55 49 211 38 34 31 211 30 27 24 211 -minecraft:activator_rail[powered=true,shape=ascending_west,waterlogged=false] 77 69 62 211 61 55 49 211 38 34 31 211 30 27 24 211 -minecraft:activator_rail[powered=true,shape=ascending_north,waterlogged=true] 77 69 62 211 61 55 49 211 38 34 31 211 30 27 24 211 -minecraft:activator_rail[powered=true,shape=ascending_north,waterlogged=false] 77 69 62 211 61 55 49 211 38 34 31 211 30 27 24 211 -minecraft:activator_rail[powered=true,shape=ascending_south,waterlogged=true] 77 69 62 211 61 55 49 211 38 34 31 211 30 27 24 211 -minecraft:activator_rail[powered=true,shape=ascending_south,waterlogged=false] 77 69 62 211 61 55 49 211 38 34 31 211 30 27 24 211 +minecraft:activator_rail 77 69 62 210 61 55 49 210 38 34 31 210 30 27 24 210 +minecraft:activator_rail[powered=true,shape=north_south,waterlogged=false] 77 69 62 210 61 55 49 210 38 34 31 210 30 27 24 210 +minecraft:activator_rail[powered=true,shape=east_west,waterlogged=true] 77 69 62 210 61 55 49 210 38 34 31 210 30 27 24 210 +minecraft:activator_rail[powered=true,shape=east_west,waterlogged=false] 77 69 62 210 61 55 49 210 38 34 31 210 30 27 24 210 +minecraft:activator_rail[powered=true,shape=ascending_east,waterlogged=true] 77 69 62 210 61 55 49 210 38 34 31 210 30 27 24 210 +minecraft:activator_rail[powered=true,shape=ascending_east,waterlogged=false] 77 69 62 210 61 55 49 210 38 34 31 210 30 27 24 210 +minecraft:activator_rail[powered=true,shape=ascending_west,waterlogged=true] 77 69 62 210 61 55 49 210 38 34 31 210 30 27 24 210 +minecraft:activator_rail[powered=true,shape=ascending_west,waterlogged=false] 77 69 62 210 61 55 49 210 38 34 31 210 30 27 24 210 +minecraft:activator_rail[powered=true,shape=ascending_north,waterlogged=true] 77 69 62 210 61 55 49 210 38 34 31 210 30 27 24 210 +minecraft:activator_rail[powered=true,shape=ascending_north,waterlogged=false] 77 69 62 210 61 55 49 210 38 34 31 210 30 27 24 210 +minecraft:activator_rail[powered=true,shape=ascending_south,waterlogged=true] 77 69 62 210 61 55 49 210 38 34 31 210 30 27 24 210 +minecraft:activator_rail[powered=true,shape=ascending_south,waterlogged=false] 77 69 62 210 61 55 49 210 38 34 31 210 30 27 24 210 minecraft:activator_rail[powered=false,shape=north_south,waterlogged=true] 77 69 62 211 61 55 49 211 38 34 31 211 30 27 24 211 minecraft:activator_rail[powered=false,shape=north_south,waterlogged=false] 77 69 62 211 61 55 49 211 38 34 31 211 30 27 24 211 minecraft:activator_rail[powered=false,shape=east_west,waterlogged=true] 77 69 62 211 61 55 49 211 38 34 31 211 30 27 24 211 @@ -6654,15 +6663,15 @@ minecraft:dropper[facing=down,triggered=false] 116 117 104 255 92 93 83 255 58 5 minecraft:white_terracotta 164 133 108 255 131 106 86 255 82 66 54 255 65 53 43 255 minecraft:orange_terracotta 162 89 52 255 129 71 41 255 81 44 26 255 64 35 20 255 minecraft:magenta_terracotta 163 110 93 255 130 88 74 255 81 55 46 255 65 44 37 255 -minecraft:light_blue_terracotta 78 110 114 255 62 88 91 255 39 55 57 255 31 44 45 255 +minecraft:light_blue_terracotta 72 90 121 255 57 72 96 255 36 45 60 255 28 36 48 255 minecraft:yellow_terracotta 145 102 47 255 116 81 37 255 72 51 23 255 58 40 18 255 minecraft:lime_terracotta 109 112 52 255 87 89 41 255 54 56 26 255 43 44 20 255 minecraft:pink_terracotta 143 79 97 255 114 63 77 255 71 39 48 255 57 31 38 255 minecraft:gray_terracotta 52 37 28 255 41 29 22 255 26 18 14 255 20 14 11 255 minecraft:light_gray_terracotta 121 96 73 255 96 76 58 255 60 48 36 255 48 38 29 255 -minecraft:cyan_terracotta 51 53 81 255 40 42 64 255 25 26 40 255 20 21 32 255 +minecraft:cyan_terracotta 78 110 114 255 62 88 91 255 39 55 57 255 31 44 45 255 minecraft:purple_terracotta 114 79 123 255 91 63 98 255 57 39 61 255 45 31 49 255 -minecraft:blue_terracotta 72 90 121 255 57 72 96 255 36 45 60 255 28 36 48 255 +minecraft:blue_terracotta 51 53 81 255 40 42 64 255 25 26 40 255 20 21 32 255 minecraft:brown_terracotta 101 60 37 255 80 48 29 255 50 30 18 255 40 24 14 255 minecraft:green_terracotta 55 69 19 255 44 55 15 255 27 34 9 255 22 27 7 255 minecraft:red_terracotta 124 56 42 255 99 44 33 255 62 28 21 255 49 22 16 255 @@ -7340,331 +7349,331 @@ minecraft:dark_oak_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=f minecraft:dark_oak_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 56 49 38 255 44 39 30 255 28 24 19 255 22 19 15 255 minecraft:dark_oak_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 56 49 38 255 44 39 30 255 28 24 19 255 22 19 15 255 minecraft:slime_block 111 192 91 180 88 153 72 180 55 96 45 180 44 76 36 180 -minecraft:iron_trapdoor 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:iron_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false] 111 114 109 239 88 91 87 239 55 57 54 239 44 45 43 239 -minecraft:prismarine 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_bricks 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:dark_prismarine 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:prismarine_stairs 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=north,half=top,shape=straight,waterlogged=false] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=south,half=top,shape=straight,waterlogged=true] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=south,half=top,shape=straight,waterlogged=false] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=west,half=top,shape=straight,waterlogged=true] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=west,half=top,shape=straight,waterlogged=false] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=east,half=top,shape=straight,waterlogged=true] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=east,half=top,shape=straight,waterlogged=false] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_brick_stairs 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:dark_prismarine_stairs 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=north,half=top,shape=straight,waterlogged=false] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=south,half=top,shape=straight,waterlogged=true] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=south,half=top,shape=straight,waterlogged=false] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=west,half=top,shape=straight,waterlogged=true] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=west,half=top,shape=straight,waterlogged=false] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=east,half=top,shape=straight,waterlogged=true] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=east,half=top,shape=straight,waterlogged=false] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:prismarine_slab 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_slab[type=top,waterlogged=false] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_slab[type=bottom,waterlogged=true] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_slab[type=bottom,waterlogged=false] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_slab[type=double,waterlogged=true] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_slab[type=double,waterlogged=false] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_brick_slab 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_slab[type=top,waterlogged=false] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_slab[type=bottom,waterlogged=true] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_slab[type=bottom,waterlogged=false] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_slab[type=double,waterlogged=true] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:prismarine_brick_slab[type=double,waterlogged=false] 35 83 55 255 28 66 44 255 17 41 27 255 14 33 22 255 -minecraft:dark_prismarine_slab 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_slab[type=top,waterlogged=false] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_slab[type=bottom,waterlogged=true] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_slab[type=bottom,waterlogged=false] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_slab[type=double,waterlogged=true] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 -minecraft:dark_prismarine_slab[type=double,waterlogged=false] 42 89 61 255 33 71 48 255 21 44 30 255 16 35 24 255 +minecraft:iron_trapdoor 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:prismarine 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_bricks 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:dark_prismarine 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:prismarine_stairs 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=north,half=top,shape=straight,waterlogged=false] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=south,half=top,shape=straight,waterlogged=true] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=south,half=top,shape=straight,waterlogged=false] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=west,half=top,shape=straight,waterlogged=true] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=west,half=top,shape=straight,waterlogged=false] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=east,half=top,shape=straight,waterlogged=true] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=east,half=top,shape=straight,waterlogged=false] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_brick_stairs 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:dark_prismarine_stairs 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=north,half=top,shape=straight,waterlogged=false] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=south,half=top,shape=straight,waterlogged=true] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=south,half=top,shape=straight,waterlogged=false] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=west,half=top,shape=straight,waterlogged=true] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=west,half=top,shape=straight,waterlogged=false] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=east,half=top,shape=straight,waterlogged=true] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=east,half=top,shape=straight,waterlogged=false] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:prismarine_slab 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_slab[type=top,waterlogged=false] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_slab[type=bottom,waterlogged=true] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_slab[type=bottom,waterlogged=false] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_slab[type=double,waterlogged=true] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_slab[type=double,waterlogged=false] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_brick_slab 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_slab[type=top,waterlogged=false] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_slab[type=bottom,waterlogged=true] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_slab[type=bottom,waterlogged=false] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_slab[type=double,waterlogged=true] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:prismarine_brick_slab[type=double,waterlogged=false] 47 92 67 255 37 73 53 255 23 46 33 255 18 36 26 255 +minecraft:dark_prismarine_slab 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_slab[type=top,waterlogged=false] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_slab[type=bottom,waterlogged=true] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_slab[type=bottom,waterlogged=false] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_slab[type=double,waterlogged=true] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 +minecraft:dark_prismarine_slab[type=double,waterlogged=false] 44 94 64 255 35 75 51 255 22 47 32 255 17 37 25 255 minecraft:sea_lantern 184 147 85 255 147 117 68 255 92 73 42 255 73 58 34 255 minecraft:hay_block 169 150 103 255 135 120 82 255 84 75 51 255 67 60 41 255 minecraft:hay_block[axis=y] 206 187 132 255 164 149 105 255 103 93 66 255 82 74 52 255 @@ -7688,18 +7697,18 @@ minecraft:black_carpet 25 23 21 255 20 18 16 255 12 11 10 255 10 9 8 255 minecraft:terracotta 141 99 73 255 112 79 58 255 70 49 36 255 56 39 29 255 minecraft:coal_block 45 48 51 255 36 38 40 255 22 24 25 255 18 19 20 255 minecraft:packed_ice 155 194 231 255 124 155 184 255 77 97 115 255 62 77 92 255 -minecraft:sunflower 60 90 24 101 48 72 19 101 30 45 12 101 24 36 9 101 -minecraft:sunflower[half=lower] 58 91 28 105 46 72 22 105 29 45 14 105 23 36 11 105 -minecraft:lilac 93 90 65 166 74 72 52 166 46 45 32 166 37 36 26 166 +minecraft:sunflower 58 89 24 113 46 71 19 113 29 44 12 113 23 35 9 113 +minecraft:sunflower[half=lower] 57 89 27 116 45 71 21 116 28 44 13 116 22 35 10 116 +minecraft:lilac 91 89 63 171 72 71 50 171 45 44 31 171 36 35 25 171 minecraft:lilac[half=lower] 69 74 41 155 55 59 32 155 34 37 20 155 27 29 16 155 -minecraft:rose_bush 74 56 31 109 59 44 24 109 37 28 15 109 29 22 12 109 -minecraft:rose_bush[half=lower] 58 62 30 192 46 49 24 192 29 31 15 192 23 24 12 192 -minecraft:peony 100 63 116 107 80 50 92 107 50 31 58 107 40 25 46 107 -minecraft:peony[half=lower] 42 46 48 199 33 36 38 199 21 23 24 199 16 18 19 199 -minecraft:tall_grass 54 95 39 44 43 76 31 44 27 47 19 44 21 38 15 44 -minecraft:tall_grass[half=lower] 51 91 37 196 40 72 29 196 25 45 18 196 20 36 14 196 -minecraft:large_fern 38 68 28 81 30 54 22 81 19 34 14 81 15 27 11 81 -minecraft:large_fern[half=lower] 36 64 26 158 28 51 20 158 18 32 13 158 14 25 10 158 +minecraft:rose_bush 74 56 30 120 59 44 24 120 37 28 15 120 29 22 12 120 +minecraft:rose_bush[half=lower] 59 62 30 196 47 49 24 196 29 31 15 196 23 24 12 196 +minecraft:peony 111 77 126 118 88 61 100 118 55 38 63 118 44 30 50 118 +minecraft:peony[half=lower] 44 48 50 202 35 38 40 202 22 24 25 202 17 19 20 202 +minecraft:tall_grass 72 116 53 60 57 92 42 60 36 58 26 60 28 46 21 60 +minecraft:tall_grass[half=lower] 64 104 47 201 51 83 37 201 32 52 23 201 25 41 18 201 +minecraft:large_fern 46 75 34 94 36 60 27 94 23 37 17 94 18 30 13 94 +minecraft:large_fern[half=lower] 44 71 32 165 35 56 25 165 22 35 16 165 17 28 12 165 minecraft:white_banner 86 70 50 255 68 56 40 255 43 35 25 255 34 28 20 255 minecraft:white_banner[rotation=1] 86 70 50 255 68 56 40 255 43 35 25 255 34 28 20 255 minecraft:white_banner[rotation=2] 86 70 50 255 68 56 40 255 43 35 25 255 34 28 20 255 @@ -8121,12 +8130,12 @@ minecraft:birch_slab[type=bottom,waterlogged=true] 114 100 75 255 91 80 60 255 5 minecraft:birch_slab[type=bottom,waterlogged=false] 114 100 75 255 91 80 60 255 57 50 37 255 45 40 30 255 minecraft:birch_slab[type=double,waterlogged=true] 114 100 75 255 91 80 60 255 57 50 37 255 45 40 30 255 minecraft:birch_slab[type=double,waterlogged=false] 114 100 75 255 91 80 60 255 57 50 37 255 45 40 30 255 -minecraft:jungle_slab 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_slab[type=top,waterlogged=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_slab[type=bottom,waterlogged=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_slab[type=bottom,waterlogged=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_slab[type=double,waterlogged=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_slab[type=double,waterlogged=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 +minecraft:jungle_slab 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_slab[type=top,waterlogged=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_slab[type=bottom,waterlogged=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_slab[type=bottom,waterlogged=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_slab[type=double,waterlogged=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_slab[type=double,waterlogged=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 minecraft:acacia_slab 76 40 21 255 60 32 16 255 38 20 10 255 30 16 8 255 minecraft:acacia_slab[type=top,waterlogged=false] 76 40 21 255 60 32 16 255 38 20 10 255 30 16 8 255 minecraft:acacia_slab[type=bottom,waterlogged=true] 76 40 21 255 60 32 16 255 38 20 10 255 30 16 8 255 @@ -8285,38 +8294,38 @@ minecraft:birch_fence_gate[facing=east,in_wall=false,open=true,powered=true] 114 minecraft:birch_fence_gate[facing=east,in_wall=false,open=true,powered=false] 114 100 75 255 91 80 60 255 57 50 37 255 45 40 30 255 minecraft:birch_fence_gate[facing=east,in_wall=false,open=false,powered=true] 114 100 75 255 91 80 60 255 57 50 37 255 45 40 30 255 minecraft:birch_fence_gate[facing=east,in_wall=false,open=false,powered=false] 114 100 75 255 91 80 60 255 57 50 37 255 45 40 30 255 -minecraft:jungle_fence_gate 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence_gate[facing=north,in_wall=true,open=true,powered=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence_gate[facing=north,in_wall=true,open=false,powered=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence_gate[facing=north,in_wall=true,open=false,powered=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence_gate[facing=north,in_wall=false,open=true,powered=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence_gate[facing=north,in_wall=false,open=true,powered=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence_gate[facing=north,in_wall=false,open=false,powered=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence_gate[facing=north,in_wall=false,open=false,powered=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence_gate[facing=south,in_wall=true,open=true,powered=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence_gate[facing=south,in_wall=true,open=true,powered=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence_gate[facing=south,in_wall=true,open=false,powered=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence_gate[facing=south,in_wall=true,open=false,powered=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence_gate[facing=south,in_wall=false,open=true,powered=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence_gate[facing=south,in_wall=false,open=true,powered=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence_gate[facing=south,in_wall=false,open=false,powered=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence_gate[facing=south,in_wall=false,open=false,powered=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence_gate[facing=west,in_wall=true,open=true,powered=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence_gate[facing=west,in_wall=true,open=true,powered=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence_gate[facing=west,in_wall=true,open=false,powered=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence_gate[facing=west,in_wall=true,open=false,powered=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence_gate[facing=west,in_wall=false,open=true,powered=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence_gate[facing=west,in_wall=false,open=true,powered=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence_gate[facing=west,in_wall=false,open=false,powered=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence_gate[facing=west,in_wall=false,open=false,powered=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence_gate[facing=east,in_wall=true,open=true,powered=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence_gate[facing=east,in_wall=true,open=true,powered=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence_gate[facing=east,in_wall=true,open=false,powered=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence_gate[facing=east,in_wall=true,open=false,powered=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence_gate[facing=east,in_wall=false,open=true,powered=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence_gate[facing=east,in_wall=false,open=true,powered=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence_gate[facing=east,in_wall=false,open=false,powered=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence_gate[facing=east,in_wall=false,open=false,powered=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 +minecraft:jungle_fence_gate 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence_gate[facing=north,in_wall=true,open=true,powered=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence_gate[facing=north,in_wall=true,open=false,powered=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence_gate[facing=north,in_wall=true,open=false,powered=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence_gate[facing=north,in_wall=false,open=true,powered=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence_gate[facing=north,in_wall=false,open=true,powered=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence_gate[facing=north,in_wall=false,open=false,powered=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence_gate[facing=north,in_wall=false,open=false,powered=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence_gate[facing=south,in_wall=true,open=true,powered=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence_gate[facing=south,in_wall=true,open=true,powered=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence_gate[facing=south,in_wall=true,open=false,powered=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence_gate[facing=south,in_wall=true,open=false,powered=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence_gate[facing=south,in_wall=false,open=true,powered=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence_gate[facing=south,in_wall=false,open=true,powered=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence_gate[facing=south,in_wall=false,open=false,powered=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence_gate[facing=south,in_wall=false,open=false,powered=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence_gate[facing=west,in_wall=true,open=true,powered=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence_gate[facing=west,in_wall=true,open=true,powered=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence_gate[facing=west,in_wall=true,open=false,powered=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence_gate[facing=west,in_wall=true,open=false,powered=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence_gate[facing=west,in_wall=false,open=true,powered=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence_gate[facing=west,in_wall=false,open=true,powered=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence_gate[facing=west,in_wall=false,open=false,powered=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence_gate[facing=west,in_wall=false,open=false,powered=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence_gate[facing=east,in_wall=true,open=true,powered=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence_gate[facing=east,in_wall=true,open=true,powered=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence_gate[facing=east,in_wall=true,open=false,powered=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence_gate[facing=east,in_wall=true,open=false,powered=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence_gate[facing=east,in_wall=false,open=true,powered=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence_gate[facing=east,in_wall=false,open=true,powered=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence_gate[facing=east,in_wall=false,open=false,powered=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence_gate[facing=east,in_wall=false,open=false,powered=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 minecraft:acacia_fence_gate 76 40 21 255 60 32 16 255 38 20 10 255 30 16 8 255 minecraft:acacia_fence_gate[facing=north,in_wall=true,open=true,powered=false] 76 40 21 255 60 32 16 255 38 20 10 255 30 16 8 255 minecraft:acacia_fence_gate[facing=north,in_wall=true,open=false,powered=true] 76 40 21 255 60 32 16 255 38 20 10 255 30 16 8 255 @@ -8445,38 +8454,38 @@ minecraft:birch_fence[east=false,north=false,south=false,waterlogged=true,west=t minecraft:birch_fence[east=false,north=false,south=false,waterlogged=true,west=false] 114 100 75 255 91 80 60 255 57 50 37 255 45 40 30 255 minecraft:birch_fence[east=false,north=false,south=false,waterlogged=false,west=true] 114 100 75 255 91 80 60 255 57 50 37 255 45 40 30 255 minecraft:birch_fence[east=false,north=false,south=false,waterlogged=false,west=false] 114 100 75 255 91 80 60 255 57 50 37 255 45 40 30 255 -minecraft:jungle_fence 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence[east=true,north=true,south=true,waterlogged=true,west=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence[east=true,north=true,south=true,waterlogged=false,west=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence[east=true,north=true,south=true,waterlogged=false,west=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence[east=true,north=true,south=false,waterlogged=true,west=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence[east=true,north=true,south=false,waterlogged=true,west=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence[east=true,north=true,south=false,waterlogged=false,west=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence[east=true,north=true,south=false,waterlogged=false,west=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence[east=true,north=false,south=true,waterlogged=true,west=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence[east=true,north=false,south=true,waterlogged=true,west=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence[east=true,north=false,south=true,waterlogged=false,west=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence[east=true,north=false,south=true,waterlogged=false,west=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence[east=true,north=false,south=false,waterlogged=true,west=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence[east=true,north=false,south=false,waterlogged=true,west=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence[east=true,north=false,south=false,waterlogged=false,west=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence[east=true,north=false,south=false,waterlogged=false,west=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence[east=false,north=true,south=true,waterlogged=true,west=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence[east=false,north=true,south=true,waterlogged=true,west=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence[east=false,north=true,south=true,waterlogged=false,west=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence[east=false,north=true,south=true,waterlogged=false,west=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence[east=false,north=true,south=false,waterlogged=true,west=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence[east=false,north=true,south=false,waterlogged=true,west=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence[east=false,north=true,south=false,waterlogged=false,west=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence[east=false,north=true,south=false,waterlogged=false,west=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence[east=false,north=false,south=true,waterlogged=true,west=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence[east=false,north=false,south=true,waterlogged=true,west=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence[east=false,north=false,south=true,waterlogged=false,west=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence[east=false,north=false,south=true,waterlogged=false,west=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence[east=false,north=false,south=false,waterlogged=true,west=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence[east=false,north=false,south=false,waterlogged=true,west=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence[east=false,north=false,south=false,waterlogged=false,west=true] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 -minecraft:jungle_fence[east=false,north=false,south=false,waterlogged=false,west=false] 65 60 31 255 52 48 24 255 32 30 15 255 26 24 12 255 +minecraft:jungle_fence 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence[east=true,north=true,south=true,waterlogged=true,west=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence[east=true,north=true,south=true,waterlogged=false,west=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence[east=true,north=true,south=true,waterlogged=false,west=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence[east=true,north=true,south=false,waterlogged=true,west=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence[east=true,north=true,south=false,waterlogged=true,west=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence[east=true,north=true,south=false,waterlogged=false,west=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence[east=true,north=true,south=false,waterlogged=false,west=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence[east=true,north=false,south=true,waterlogged=true,west=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence[east=true,north=false,south=true,waterlogged=true,west=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence[east=true,north=false,south=true,waterlogged=false,west=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence[east=true,north=false,south=true,waterlogged=false,west=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence[east=true,north=false,south=false,waterlogged=true,west=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence[east=true,north=false,south=false,waterlogged=true,west=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence[east=true,north=false,south=false,waterlogged=false,west=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence[east=true,north=false,south=false,waterlogged=false,west=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence[east=false,north=true,south=true,waterlogged=true,west=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence[east=false,north=true,south=true,waterlogged=true,west=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence[east=false,north=true,south=true,waterlogged=false,west=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence[east=false,north=true,south=true,waterlogged=false,west=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence[east=false,north=true,south=false,waterlogged=true,west=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence[east=false,north=true,south=false,waterlogged=true,west=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence[east=false,north=true,south=false,waterlogged=false,west=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence[east=false,north=true,south=false,waterlogged=false,west=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence[east=false,north=false,south=true,waterlogged=true,west=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence[east=false,north=false,south=true,waterlogged=true,west=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence[east=false,north=false,south=true,waterlogged=false,west=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence[east=false,north=false,south=true,waterlogged=false,west=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence[east=false,north=false,south=false,waterlogged=true,west=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence[east=false,north=false,south=false,waterlogged=true,west=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence[east=false,north=false,south=false,waterlogged=false,west=true] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 +minecraft:jungle_fence[east=false,north=false,south=false,waterlogged=false,west=false] 95 70 42 255 76 56 33 255 47 35 21 255 38 28 16 255 minecraft:acacia_fence 76 40 21 255 60 32 16 255 38 20 10 255 30 16 8 255 minecraft:acacia_fence[east=true,north=true,south=true,waterlogged=true,west=false] 76 40 21 255 60 32 16 255 38 20 10 255 30 16 8 255 minecraft:acacia_fence[east=true,north=true,south=true,waterlogged=false,west=true] 76 40 21 255 60 32 16 255 38 20 10 255 30 16 8 255 @@ -8541,326 +8550,326 @@ minecraft:dark_oak_fence[east=false,north=false,south=false,waterlogged=true,wes minecraft:dark_oak_fence[east=false,north=false,south=false,waterlogged=true,west=false] 56 49 38 255 44 39 30 255 28 24 19 255 22 19 15 255 minecraft:dark_oak_fence[east=false,north=false,south=false,waterlogged=false,west=true] 56 49 38 255 44 39 30 255 28 24 19 255 22 19 15 255 minecraft:dark_oak_fence[east=false,north=false,south=false,waterlogged=false,west=false] 56 49 38 255 44 39 30 255 28 24 19 255 22 19 15 255 -minecraft:spruce_door 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=north,half=upper,hinge=left,open=true,powered=false] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=north,half=upper,hinge=left,open=false,powered=true] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=north,half=upper,hinge=left,open=false,powered=false] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=north,half=upper,hinge=right,open=true,powered=true] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=north,half=upper,hinge=right,open=true,powered=false] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=north,half=upper,hinge=right,open=false,powered=true] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=north,half=upper,hinge=right,open=false,powered=false] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=north,half=lower,hinge=left,open=true,powered=true] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=north,half=lower,hinge=left,open=true,powered=false] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=north,half=lower,hinge=left,open=false,powered=true] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=north,half=lower,hinge=left,open=false,powered=false] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=north,half=lower,hinge=right,open=true,powered=true] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=north,half=lower,hinge=right,open=true,powered=false] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=north,half=lower,hinge=right,open=false,powered=true] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=north,half=lower,hinge=right,open=false,powered=false] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=south,half=upper,hinge=left,open=true,powered=true] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=south,half=upper,hinge=left,open=true,powered=false] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=south,half=upper,hinge=left,open=false,powered=true] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=south,half=upper,hinge=left,open=false,powered=false] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=south,half=upper,hinge=right,open=true,powered=true] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=south,half=upper,hinge=right,open=true,powered=false] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=south,half=upper,hinge=right,open=false,powered=true] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=south,half=upper,hinge=right,open=false,powered=false] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=south,half=lower,hinge=left,open=true,powered=true] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=south,half=lower,hinge=left,open=true,powered=false] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=south,half=lower,hinge=left,open=false,powered=true] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=south,half=lower,hinge=left,open=false,powered=false] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=south,half=lower,hinge=right,open=true,powered=true] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=south,half=lower,hinge=right,open=true,powered=false] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=south,half=lower,hinge=right,open=false,powered=true] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=south,half=lower,hinge=right,open=false,powered=false] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=west,half=upper,hinge=left,open=true,powered=true] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=west,half=upper,hinge=left,open=true,powered=false] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=west,half=upper,hinge=left,open=false,powered=true] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=west,half=upper,hinge=left,open=false,powered=false] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=west,half=upper,hinge=right,open=true,powered=true] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=west,half=upper,hinge=right,open=true,powered=false] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=west,half=upper,hinge=right,open=false,powered=true] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=west,half=upper,hinge=right,open=false,powered=false] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=west,half=lower,hinge=left,open=true,powered=true] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=west,half=lower,hinge=left,open=true,powered=false] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=west,half=lower,hinge=left,open=false,powered=true] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=west,half=lower,hinge=left,open=false,powered=false] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=west,half=lower,hinge=right,open=true,powered=true] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=west,half=lower,hinge=right,open=true,powered=false] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=west,half=lower,hinge=right,open=false,powered=true] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=west,half=lower,hinge=right,open=false,powered=false] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=east,half=upper,hinge=left,open=true,powered=true] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=east,half=upper,hinge=left,open=true,powered=false] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=east,half=upper,hinge=left,open=false,powered=true] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=east,half=upper,hinge=left,open=false,powered=false] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=east,half=upper,hinge=right,open=true,powered=true] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=east,half=upper,hinge=right,open=true,powered=false] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=east,half=upper,hinge=right,open=false,powered=true] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=east,half=upper,hinge=right,open=false,powered=false] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=east,half=lower,hinge=left,open=true,powered=true] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=east,half=lower,hinge=left,open=true,powered=false] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=east,half=lower,hinge=left,open=false,powered=true] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=east,half=lower,hinge=left,open=false,powered=false] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=east,half=lower,hinge=right,open=true,powered=true] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=east,half=lower,hinge=right,open=true,powered=false] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=east,half=lower,hinge=right,open=false,powered=true] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:spruce_door[facing=east,half=lower,hinge=right,open=false,powered=false] 71 59 55 255 56 47 44 255 35 29 27 255 28 23 22 255 -minecraft:birch_door 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=north,half=upper,hinge=left,open=true,powered=false] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=north,half=upper,hinge=left,open=false,powered=true] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=north,half=upper,hinge=left,open=false,powered=false] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=north,half=upper,hinge=right,open=true,powered=true] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=north,half=upper,hinge=right,open=true,powered=false] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=north,half=upper,hinge=right,open=false,powered=true] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=north,half=upper,hinge=right,open=false,powered=false] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=north,half=lower,hinge=left,open=true,powered=true] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=north,half=lower,hinge=left,open=true,powered=false] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=north,half=lower,hinge=left,open=false,powered=true] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=north,half=lower,hinge=left,open=false,powered=false] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=north,half=lower,hinge=right,open=true,powered=true] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=north,half=lower,hinge=right,open=true,powered=false] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=north,half=lower,hinge=right,open=false,powered=true] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=north,half=lower,hinge=right,open=false,powered=false] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=south,half=upper,hinge=left,open=true,powered=true] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=south,half=upper,hinge=left,open=true,powered=false] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=south,half=upper,hinge=left,open=false,powered=true] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=south,half=upper,hinge=left,open=false,powered=false] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=south,half=upper,hinge=right,open=true,powered=true] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=south,half=upper,hinge=right,open=true,powered=false] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=south,half=upper,hinge=right,open=false,powered=true] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=south,half=upper,hinge=right,open=false,powered=false] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=south,half=lower,hinge=left,open=true,powered=true] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=south,half=lower,hinge=left,open=true,powered=false] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=south,half=lower,hinge=left,open=false,powered=true] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=south,half=lower,hinge=left,open=false,powered=false] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=south,half=lower,hinge=right,open=true,powered=true] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=south,half=lower,hinge=right,open=true,powered=false] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=south,half=lower,hinge=right,open=false,powered=true] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=south,half=lower,hinge=right,open=false,powered=false] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=west,half=upper,hinge=left,open=true,powered=true] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=west,half=upper,hinge=left,open=true,powered=false] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=west,half=upper,hinge=left,open=false,powered=true] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=west,half=upper,hinge=left,open=false,powered=false] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=west,half=upper,hinge=right,open=true,powered=true] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=west,half=upper,hinge=right,open=true,powered=false] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=west,half=upper,hinge=right,open=false,powered=true] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=west,half=upper,hinge=right,open=false,powered=false] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=west,half=lower,hinge=left,open=true,powered=true] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=west,half=lower,hinge=left,open=true,powered=false] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=west,half=lower,hinge=left,open=false,powered=true] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=west,half=lower,hinge=left,open=false,powered=false] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=west,half=lower,hinge=right,open=true,powered=true] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=west,half=lower,hinge=right,open=true,powered=false] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=west,half=lower,hinge=right,open=false,powered=true] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=west,half=lower,hinge=right,open=false,powered=false] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=east,half=upper,hinge=left,open=true,powered=true] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=east,half=upper,hinge=left,open=true,powered=false] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=east,half=upper,hinge=left,open=false,powered=true] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=east,half=upper,hinge=left,open=false,powered=false] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=east,half=upper,hinge=right,open=true,powered=true] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=east,half=upper,hinge=right,open=true,powered=false] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=east,half=upper,hinge=right,open=false,powered=true] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=east,half=upper,hinge=right,open=false,powered=false] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=east,half=lower,hinge=left,open=true,powered=true] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=east,half=lower,hinge=left,open=true,powered=false] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=east,half=lower,hinge=left,open=false,powered=true] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=east,half=lower,hinge=left,open=false,powered=false] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=east,half=lower,hinge=right,open=true,powered=true] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=east,half=lower,hinge=right,open=true,powered=false] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=east,half=lower,hinge=right,open=false,powered=true] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:birch_door[facing=east,half=lower,hinge=right,open=false,powered=false] 144 144 138 255 115 115 110 255 72 72 69 255 57 57 55 255 -minecraft:jungle_door 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=north,half=upper,hinge=left,open=true,powered=false] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=north,half=upper,hinge=left,open=false,powered=true] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=north,half=upper,hinge=left,open=false,powered=false] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=north,half=upper,hinge=right,open=true,powered=true] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=north,half=upper,hinge=right,open=true,powered=false] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=north,half=upper,hinge=right,open=false,powered=true] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=north,half=upper,hinge=right,open=false,powered=false] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=north,half=lower,hinge=left,open=true,powered=true] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=north,half=lower,hinge=left,open=true,powered=false] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=north,half=lower,hinge=left,open=false,powered=true] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=north,half=lower,hinge=left,open=false,powered=false] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=north,half=lower,hinge=right,open=true,powered=true] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=north,half=lower,hinge=right,open=true,powered=false] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=north,half=lower,hinge=right,open=false,powered=true] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=north,half=lower,hinge=right,open=false,powered=false] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=south,half=upper,hinge=left,open=true,powered=true] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=south,half=upper,hinge=left,open=true,powered=false] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=south,half=upper,hinge=left,open=false,powered=true] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=south,half=upper,hinge=left,open=false,powered=false] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=south,half=upper,hinge=right,open=true,powered=true] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=south,half=upper,hinge=right,open=true,powered=false] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=south,half=upper,hinge=right,open=false,powered=true] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=south,half=upper,hinge=right,open=false,powered=false] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=south,half=lower,hinge=left,open=true,powered=true] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=south,half=lower,hinge=left,open=true,powered=false] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=south,half=lower,hinge=left,open=false,powered=true] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=south,half=lower,hinge=left,open=false,powered=false] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=south,half=lower,hinge=right,open=true,powered=true] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=south,half=lower,hinge=right,open=true,powered=false] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=south,half=lower,hinge=right,open=false,powered=true] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=south,half=lower,hinge=right,open=false,powered=false] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=west,half=upper,hinge=left,open=true,powered=true] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=west,half=upper,hinge=left,open=true,powered=false] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=west,half=upper,hinge=left,open=false,powered=true] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=west,half=upper,hinge=left,open=false,powered=false] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=west,half=upper,hinge=right,open=true,powered=true] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=west,half=upper,hinge=right,open=true,powered=false] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=west,half=upper,hinge=right,open=false,powered=true] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=west,half=upper,hinge=right,open=false,powered=false] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=west,half=lower,hinge=left,open=true,powered=true] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=west,half=lower,hinge=left,open=true,powered=false] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=west,half=lower,hinge=left,open=false,powered=true] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=west,half=lower,hinge=left,open=false,powered=false] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=west,half=lower,hinge=right,open=true,powered=true] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=west,half=lower,hinge=right,open=true,powered=false] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=west,half=lower,hinge=right,open=false,powered=true] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=west,half=lower,hinge=right,open=false,powered=false] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=east,half=upper,hinge=left,open=true,powered=true] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=east,half=upper,hinge=left,open=true,powered=false] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=east,half=upper,hinge=left,open=false,powered=true] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=east,half=upper,hinge=left,open=false,powered=false] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=east,half=upper,hinge=right,open=true,powered=true] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=east,half=upper,hinge=right,open=true,powered=false] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=east,half=upper,hinge=right,open=false,powered=true] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=east,half=upper,hinge=right,open=false,powered=false] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=east,half=lower,hinge=left,open=true,powered=true] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=east,half=lower,hinge=left,open=true,powered=false] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=east,half=lower,hinge=left,open=false,powered=true] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=east,half=lower,hinge=left,open=false,powered=false] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=east,half=lower,hinge=right,open=true,powered=true] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=east,half=lower,hinge=right,open=true,powered=false] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=east,half=lower,hinge=right,open=false,powered=true] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:jungle_door[facing=east,half=lower,hinge=right,open=false,powered=false] 71 64 39 236 56 51 31 236 35 32 19 236 28 25 15 236 -minecraft:acacia_door 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=north,half=upper,hinge=left,open=true,powered=false] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=north,half=upper,hinge=left,open=false,powered=true] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=north,half=upper,hinge=left,open=false,powered=false] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=north,half=upper,hinge=right,open=true,powered=true] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=north,half=upper,hinge=right,open=true,powered=false] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=north,half=upper,hinge=right,open=false,powered=true] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=north,half=upper,hinge=right,open=false,powered=false] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=north,half=lower,hinge=left,open=true,powered=true] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=north,half=lower,hinge=left,open=true,powered=false] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=north,half=lower,hinge=left,open=false,powered=true] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=north,half=lower,hinge=left,open=false,powered=false] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=north,half=lower,hinge=right,open=true,powered=true] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=north,half=lower,hinge=right,open=true,powered=false] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=north,half=lower,hinge=right,open=false,powered=true] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=north,half=lower,hinge=right,open=false,powered=false] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=south,half=upper,hinge=left,open=true,powered=true] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=south,half=upper,hinge=left,open=true,powered=false] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=south,half=upper,hinge=left,open=false,powered=true] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=south,half=upper,hinge=left,open=false,powered=false] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=south,half=upper,hinge=right,open=true,powered=true] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=south,half=upper,hinge=right,open=true,powered=false] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=south,half=upper,hinge=right,open=false,powered=true] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=south,half=upper,hinge=right,open=false,powered=false] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=south,half=lower,hinge=left,open=true,powered=true] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=south,half=lower,hinge=left,open=true,powered=false] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=south,half=lower,hinge=left,open=false,powered=true] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=south,half=lower,hinge=left,open=false,powered=false] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=south,half=lower,hinge=right,open=true,powered=true] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=south,half=lower,hinge=right,open=true,powered=false] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=south,half=lower,hinge=right,open=false,powered=true] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=south,half=lower,hinge=right,open=false,powered=false] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=west,half=upper,hinge=left,open=true,powered=true] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=west,half=upper,hinge=left,open=true,powered=false] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=west,half=upper,hinge=left,open=false,powered=true] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=west,half=upper,hinge=left,open=false,powered=false] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=west,half=upper,hinge=right,open=true,powered=true] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=west,half=upper,hinge=right,open=true,powered=false] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=west,half=upper,hinge=right,open=false,powered=true] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=west,half=upper,hinge=right,open=false,powered=false] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=west,half=lower,hinge=left,open=true,powered=true] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=west,half=lower,hinge=left,open=true,powered=false] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=west,half=lower,hinge=left,open=false,powered=true] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=west,half=lower,hinge=left,open=false,powered=false] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=west,half=lower,hinge=right,open=true,powered=true] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=west,half=lower,hinge=right,open=true,powered=false] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=west,half=lower,hinge=right,open=false,powered=true] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=west,half=lower,hinge=right,open=false,powered=false] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=east,half=upper,hinge=left,open=true,powered=true] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=east,half=upper,hinge=left,open=true,powered=false] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=east,half=upper,hinge=left,open=false,powered=true] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=east,half=upper,hinge=left,open=false,powered=false] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=east,half=upper,hinge=right,open=true,powered=true] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=east,half=upper,hinge=right,open=true,powered=false] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=east,half=upper,hinge=right,open=false,powered=true] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=east,half=upper,hinge=right,open=false,powered=false] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=east,half=lower,hinge=left,open=true,powered=true] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=east,half=lower,hinge=left,open=true,powered=false] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=east,half=lower,hinge=left,open=false,powered=true] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=east,half=lower,hinge=left,open=false,powered=false] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=east,half=lower,hinge=right,open=true,powered=true] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=east,half=lower,hinge=right,open=true,powered=false] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=east,half=lower,hinge=right,open=false,powered=true] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:acacia_door[facing=east,half=lower,hinge=right,open=false,powered=false] 76 45 27 184 60 36 21 184 38 22 13 184 30 18 10 184 -minecraft:dark_oak_door 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=north,half=upper,hinge=left,open=true,powered=false] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=north,half=upper,hinge=left,open=false,powered=true] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=north,half=upper,hinge=left,open=false,powered=false] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=north,half=upper,hinge=right,open=true,powered=true] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=north,half=upper,hinge=right,open=true,powered=false] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=north,half=upper,hinge=right,open=false,powered=true] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=north,half=upper,hinge=right,open=false,powered=false] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=north,half=lower,hinge=left,open=true,powered=true] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=north,half=lower,hinge=left,open=true,powered=false] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=north,half=lower,hinge=left,open=false,powered=true] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=north,half=lower,hinge=left,open=false,powered=false] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=north,half=lower,hinge=right,open=true,powered=true] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=north,half=lower,hinge=right,open=true,powered=false] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=north,half=lower,hinge=right,open=false,powered=true] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=north,half=lower,hinge=right,open=false,powered=false] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=south,half=upper,hinge=left,open=true,powered=true] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=south,half=upper,hinge=left,open=true,powered=false] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=south,half=upper,hinge=left,open=false,powered=true] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=south,half=upper,hinge=left,open=false,powered=false] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=south,half=upper,hinge=right,open=true,powered=true] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=south,half=upper,hinge=right,open=true,powered=false] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=south,half=upper,hinge=right,open=false,powered=true] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=south,half=upper,hinge=right,open=false,powered=false] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=south,half=lower,hinge=left,open=true,powered=true] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=south,half=lower,hinge=left,open=true,powered=false] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=south,half=lower,hinge=left,open=false,powered=true] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=south,half=lower,hinge=left,open=false,powered=false] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=south,half=lower,hinge=right,open=true,powered=true] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=south,half=lower,hinge=right,open=true,powered=false] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=south,half=lower,hinge=right,open=false,powered=true] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=south,half=lower,hinge=right,open=false,powered=false] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=west,half=upper,hinge=left,open=true,powered=true] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=west,half=upper,hinge=left,open=true,powered=false] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=west,half=upper,hinge=left,open=false,powered=true] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=west,half=upper,hinge=left,open=false,powered=false] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=west,half=upper,hinge=right,open=true,powered=true] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=west,half=upper,hinge=right,open=true,powered=false] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=west,half=upper,hinge=right,open=false,powered=true] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=west,half=upper,hinge=right,open=false,powered=false] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=west,half=lower,hinge=left,open=true,powered=true] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=west,half=lower,hinge=left,open=true,powered=false] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=west,half=lower,hinge=left,open=false,powered=true] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=west,half=lower,hinge=left,open=false,powered=false] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=west,half=lower,hinge=right,open=true,powered=true] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=west,half=lower,hinge=right,open=true,powered=false] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=west,half=lower,hinge=right,open=false,powered=true] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=west,half=lower,hinge=right,open=false,powered=false] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=east,half=upper,hinge=left,open=true,powered=true] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=east,half=upper,hinge=left,open=true,powered=false] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=east,half=upper,hinge=left,open=false,powered=true] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=east,half=upper,hinge=left,open=false,powered=false] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=east,half=upper,hinge=right,open=true,powered=true] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=east,half=upper,hinge=right,open=true,powered=false] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=east,half=upper,hinge=right,open=false,powered=true] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=east,half=upper,hinge=right,open=false,powered=false] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=east,half=lower,hinge=left,open=true,powered=true] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=east,half=lower,hinge=left,open=true,powered=false] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=east,half=lower,hinge=left,open=false,powered=true] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=east,half=lower,hinge=left,open=false,powered=false] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=east,half=lower,hinge=right,open=true,powered=true] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=east,half=lower,hinge=right,open=true,powered=false] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=east,half=lower,hinge=right,open=false,powered=true] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 -minecraft:dark_oak_door[facing=east,half=lower,hinge=right,open=false,powered=false] 63 58 49 255 50 46 39 255 31 29 24 255 25 23 19 255 +minecraft:spruce_door 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=upper,hinge=left,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=upper,hinge=left,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=upper,hinge=left,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=upper,hinge=right,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=upper,hinge=right,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=upper,hinge=right,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=upper,hinge=right,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=lower,hinge=left,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=lower,hinge=left,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=lower,hinge=left,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=lower,hinge=left,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=lower,hinge=right,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=lower,hinge=right,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=lower,hinge=right,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=lower,hinge=right,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=upper,hinge=left,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=upper,hinge=left,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=upper,hinge=left,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=upper,hinge=left,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=upper,hinge=right,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=upper,hinge=right,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=upper,hinge=right,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=upper,hinge=right,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=lower,hinge=left,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=lower,hinge=left,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=lower,hinge=left,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=lower,hinge=left,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=lower,hinge=right,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=lower,hinge=right,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=lower,hinge=right,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=lower,hinge=right,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=upper,hinge=left,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=upper,hinge=left,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=upper,hinge=left,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=upper,hinge=left,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=upper,hinge=right,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=upper,hinge=right,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=upper,hinge=right,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=upper,hinge=right,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=lower,hinge=left,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=lower,hinge=left,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=lower,hinge=left,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=lower,hinge=left,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=lower,hinge=right,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=lower,hinge=right,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=lower,hinge=right,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=lower,hinge=right,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=upper,hinge=left,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=upper,hinge=left,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=upper,hinge=left,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=upper,hinge=left,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=upper,hinge=right,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=upper,hinge=right,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=upper,hinge=right,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=upper,hinge=right,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=lower,hinge=left,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=lower,hinge=left,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=lower,hinge=left,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=lower,hinge=left,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=lower,hinge=right,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=lower,hinge=right,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=lower,hinge=right,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=lower,hinge=right,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:birch_door 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=upper,hinge=left,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=upper,hinge=left,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=upper,hinge=left,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=upper,hinge=right,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=upper,hinge=right,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=upper,hinge=right,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=upper,hinge=right,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=lower,hinge=left,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=lower,hinge=left,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=lower,hinge=left,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=lower,hinge=left,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=lower,hinge=right,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=lower,hinge=right,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=lower,hinge=right,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=lower,hinge=right,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=upper,hinge=left,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=upper,hinge=left,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=upper,hinge=left,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=upper,hinge=left,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=upper,hinge=right,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=upper,hinge=right,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=upper,hinge=right,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=upper,hinge=right,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=lower,hinge=left,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=lower,hinge=left,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=lower,hinge=left,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=lower,hinge=left,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=lower,hinge=right,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=lower,hinge=right,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=lower,hinge=right,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=lower,hinge=right,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=upper,hinge=left,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=upper,hinge=left,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=upper,hinge=left,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=upper,hinge=left,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=upper,hinge=right,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=upper,hinge=right,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=upper,hinge=right,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=upper,hinge=right,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=lower,hinge=left,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=lower,hinge=left,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=lower,hinge=left,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=lower,hinge=left,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=lower,hinge=right,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=lower,hinge=right,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=lower,hinge=right,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=lower,hinge=right,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=upper,hinge=left,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=upper,hinge=left,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=upper,hinge=left,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=upper,hinge=left,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=upper,hinge=right,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=upper,hinge=right,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=upper,hinge=right,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=upper,hinge=right,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=lower,hinge=left,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=lower,hinge=left,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=lower,hinge=left,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=lower,hinge=left,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=lower,hinge=right,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=lower,hinge=right,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=lower,hinge=right,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=lower,hinge=right,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:jungle_door 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=upper,hinge=left,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=upper,hinge=left,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=upper,hinge=left,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=upper,hinge=right,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=upper,hinge=right,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=upper,hinge=right,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=upper,hinge=right,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=lower,hinge=left,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=lower,hinge=left,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=lower,hinge=left,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=lower,hinge=left,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=lower,hinge=right,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=lower,hinge=right,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=lower,hinge=right,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=lower,hinge=right,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=upper,hinge=left,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=upper,hinge=left,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=upper,hinge=left,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=upper,hinge=left,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=upper,hinge=right,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=upper,hinge=right,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=upper,hinge=right,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=upper,hinge=right,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=lower,hinge=left,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=lower,hinge=left,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=lower,hinge=left,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=lower,hinge=left,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=lower,hinge=right,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=lower,hinge=right,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=lower,hinge=right,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=lower,hinge=right,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=upper,hinge=left,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=upper,hinge=left,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=upper,hinge=left,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=upper,hinge=left,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=upper,hinge=right,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=upper,hinge=right,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=upper,hinge=right,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=upper,hinge=right,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=lower,hinge=left,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=lower,hinge=left,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=lower,hinge=left,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=lower,hinge=left,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=lower,hinge=right,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=lower,hinge=right,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=lower,hinge=right,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=lower,hinge=right,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=upper,hinge=left,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=upper,hinge=left,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=upper,hinge=left,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=upper,hinge=left,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=upper,hinge=right,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=upper,hinge=right,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=upper,hinge=right,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=upper,hinge=right,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=lower,hinge=left,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=lower,hinge=left,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=lower,hinge=left,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=lower,hinge=left,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=lower,hinge=right,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=lower,hinge=right,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=lower,hinge=right,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=lower,hinge=right,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:acacia_door 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=upper,hinge=left,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=upper,hinge=left,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=upper,hinge=left,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=upper,hinge=right,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=upper,hinge=right,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=upper,hinge=right,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=upper,hinge=right,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=lower,hinge=left,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=lower,hinge=left,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=lower,hinge=left,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=lower,hinge=left,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=lower,hinge=right,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=lower,hinge=right,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=lower,hinge=right,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=lower,hinge=right,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=upper,hinge=left,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=upper,hinge=left,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=upper,hinge=left,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=upper,hinge=left,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=upper,hinge=right,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=upper,hinge=right,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=upper,hinge=right,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=upper,hinge=right,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=lower,hinge=left,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=lower,hinge=left,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=lower,hinge=left,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=lower,hinge=left,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=lower,hinge=right,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=lower,hinge=right,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=lower,hinge=right,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=lower,hinge=right,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=upper,hinge=left,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=upper,hinge=left,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=upper,hinge=left,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=upper,hinge=left,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=upper,hinge=right,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=upper,hinge=right,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=upper,hinge=right,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=upper,hinge=right,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=lower,hinge=left,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=lower,hinge=left,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=lower,hinge=left,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=lower,hinge=left,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=lower,hinge=right,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=lower,hinge=right,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=lower,hinge=right,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=lower,hinge=right,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=upper,hinge=left,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=upper,hinge=left,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=upper,hinge=left,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=upper,hinge=left,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=upper,hinge=right,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=upper,hinge=right,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=upper,hinge=right,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=upper,hinge=right,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=lower,hinge=left,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=lower,hinge=left,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=lower,hinge=left,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=lower,hinge=left,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=lower,hinge=right,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=lower,hinge=right,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=lower,hinge=right,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=lower,hinge=right,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:dark_oak_door 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=upper,hinge=left,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=upper,hinge=left,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=upper,hinge=left,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=upper,hinge=right,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=upper,hinge=right,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=upper,hinge=right,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=upper,hinge=right,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=lower,hinge=left,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=lower,hinge=left,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=lower,hinge=left,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=lower,hinge=left,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=lower,hinge=right,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=lower,hinge=right,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=lower,hinge=right,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=lower,hinge=right,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=upper,hinge=left,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=upper,hinge=left,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=upper,hinge=left,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=upper,hinge=left,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=upper,hinge=right,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=upper,hinge=right,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=upper,hinge=right,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=upper,hinge=right,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=lower,hinge=left,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=lower,hinge=left,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=lower,hinge=left,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=lower,hinge=left,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=lower,hinge=right,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=lower,hinge=right,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=lower,hinge=right,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=lower,hinge=right,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=upper,hinge=left,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=upper,hinge=left,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=upper,hinge=left,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=upper,hinge=left,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=upper,hinge=right,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=upper,hinge=right,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=upper,hinge=right,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=upper,hinge=right,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=lower,hinge=left,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=lower,hinge=left,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=lower,hinge=left,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=lower,hinge=left,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=lower,hinge=right,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=lower,hinge=right,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=lower,hinge=right,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=lower,hinge=right,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=upper,hinge=left,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=upper,hinge=left,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=upper,hinge=left,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=upper,hinge=left,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=upper,hinge=right,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=upper,hinge=right,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=upper,hinge=right,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=upper,hinge=right,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=lower,hinge=left,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=lower,hinge=left,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=lower,hinge=left,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=lower,hinge=left,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=lower,hinge=right,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=lower,hinge=right,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=lower,hinge=right,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=lower,hinge=right,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 minecraft:end_rod 173 166 160 53 138 132 128 53 86 83 80 53 69 66 64 53 minecraft:end_rod[facing=east] 173 166 160 53 138 132 128 53 86 83 80 53 69 66 64 53 minecraft:end_rod[facing=south] 173 166 160 53 138 132 128 53 86 83 80 53 69 66 64 53 @@ -9021,44 +9030,44 @@ minecraft:purpur_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=tru minecraft:purpur_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 54 51 67 255 43 40 53 255 27 25 33 255 21 20 26 255 minecraft:purpur_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 54 51 67 255 43 40 53 255 27 25 33 255 21 20 26 255 minecraft:purpur_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 54 51 67 255 43 40 53 255 27 25 33 255 21 20 26 255 -minecraft:end_stone_bricks 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:beetroots 71 87 32 26 56 69 25 26 35 43 16 26 28 34 12 26 -minecraft:beetroots[age=1] 68 82 31 44 54 65 24 44 34 41 15 44 27 32 12 44 +minecraft:end_stone_bricks 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:beetroots 72 87 33 26 57 69 26 26 36 43 16 26 28 34 13 26 +minecraft:beetroots[age=1] 69 82 31 44 55 65 24 44 34 41 15 44 27 32 12 44 minecraft:beetroots[age=2] 71 75 30 50 56 60 24 50 35 37 15 50 28 30 12 50 minecraft:beetroots[age=3] 71 78 32 94 56 62 25 94 35 39 16 94 28 31 12 94 -minecraft:dirt_path 148 121 65 255 118 96 52 255 74 60 32 255 59 48 26 255 +minecraft:dirt_path 177 151 87 255 141 120 69 255 88 75 43 255 70 60 34 255 minecraft:end_gateway 0 0 63 255 0 0 50 255 0 0 31 255 0 0 25 255 -minecraft:repeating_command_block 82 60 97 255 65 48 77 255 41 30 48 255 32 24 38 255 -minecraft:repeating_command_block[conditional=true,facing=east] 84 62 98 255 67 49 78 255 42 31 49 255 33 24 39 255 -minecraft:repeating_command_block[conditional=true,facing=south] 81 62 94 255 64 49 75 255 40 31 47 255 32 24 37 255 -minecraft:repeating_command_block[conditional=true,facing=west] 81 62 94 255 64 49 75 255 40 31 47 255 32 24 37 255 -minecraft:repeating_command_block[conditional=true,facing=up] 81 62 94 255 64 49 75 255 40 31 47 255 32 24 37 255 -minecraft:repeating_command_block[conditional=true,facing=down] 81 62 94 255 64 49 75 255 40 31 47 255 32 24 37 255 -minecraft:repeating_command_block[conditional=false,facing=north] 82 60 97 255 65 48 77 255 41 30 48 255 32 24 38 255 -minecraft:repeating_command_block[conditional=false,facing=east] 84 62 98 255 67 49 78 255 42 31 49 255 33 24 39 255 -minecraft:repeating_command_block[conditional=false,facing=south] 81 63 93 255 64 50 74 255 40 31 46 255 32 25 37 255 -minecraft:repeating_command_block[conditional=false,facing=west] 81 63 93 255 64 50 74 255 40 31 46 255 32 25 37 255 -minecraft:repeating_command_block[conditional=false,facing=up] 81 63 93 255 64 50 74 255 40 31 46 255 32 25 37 255 -minecraft:repeating_command_block[conditional=false,facing=down] 81 63 93 255 64 50 74 255 40 31 46 255 32 25 37 255 -minecraft:chain_command_block 67 96 60 255 53 76 48 255 33 48 30 255 26 38 24 255 -minecraft:chain_command_block[conditional=true,facing=east] 68 97 62 255 54 77 49 255 34 48 31 255 27 38 24 255 -minecraft:chain_command_block[conditional=true,facing=south] 64 93 61 255 51 74 48 255 32 46 30 255 25 37 24 255 -minecraft:chain_command_block[conditional=true,facing=west] 64 93 61 255 51 74 48 255 32 46 30 255 25 37 24 255 -minecraft:chain_command_block[conditional=true,facing=up] 64 93 61 255 51 74 48 255 32 46 30 255 25 37 24 255 -minecraft:chain_command_block[conditional=true,facing=down] 64 93 61 255 51 74 48 255 32 46 30 255 25 37 24 255 -minecraft:chain_command_block[conditional=false,facing=north] 67 96 60 255 53 76 48 255 33 48 30 255 26 38 24 255 -minecraft:chain_command_block[conditional=false,facing=east] 68 97 62 255 54 77 49 255 34 48 31 255 27 38 24 255 -minecraft:chain_command_block[conditional=false,facing=south] 68 92 62 255 54 73 49 255 34 46 31 255 27 36 24 255 -minecraft:chain_command_block[conditional=false,facing=west] 68 92 62 255 54 73 49 255 34 46 31 255 27 36 24 255 -minecraft:chain_command_block[conditional=false,facing=up] 68 92 62 255 54 73 49 255 34 46 31 255 27 36 24 255 -minecraft:chain_command_block[conditional=false,facing=down] 68 92 62 255 54 73 49 255 34 46 31 255 27 36 24 255 +minecraft:repeating_command_block 82 60 97 254 65 48 77 254 41 30 48 254 32 24 38 254 +minecraft:repeating_command_block[conditional=true,facing=east] 83 62 97 254 66 49 77 254 41 31 48 254 33 24 38 254 +minecraft:repeating_command_block[conditional=true,facing=south] 81 62 93 254 64 49 74 254 40 31 46 254 32 24 37 254 +minecraft:repeating_command_block[conditional=true,facing=west] 81 62 93 254 64 49 74 254 40 31 46 254 32 24 37 254 +minecraft:repeating_command_block[conditional=true,facing=up] 81 62 93 254 64 49 74 254 40 31 46 254 32 24 37 254 +minecraft:repeating_command_block[conditional=true,facing=down] 81 62 93 254 64 49 74 254 40 31 46 254 32 24 37 254 +minecraft:repeating_command_block[conditional=false,facing=north] 82 60 97 254 65 48 77 254 41 30 48 254 32 24 38 254 +minecraft:repeating_command_block[conditional=false,facing=east] 83 62 97 254 66 49 77 254 41 31 48 254 33 24 38 254 +minecraft:repeating_command_block[conditional=false,facing=south] 81 63 93 254 64 50 74 254 40 31 46 254 32 25 37 254 +minecraft:repeating_command_block[conditional=false,facing=west] 81 63 93 254 64 50 74 254 40 31 46 254 32 25 37 254 +minecraft:repeating_command_block[conditional=false,facing=up] 81 63 93 254 64 50 74 254 40 31 46 254 32 25 37 254 +minecraft:repeating_command_block[conditional=false,facing=down] 81 63 93 254 64 50 74 254 40 31 46 254 32 25 37 254 +minecraft:chain_command_block 67 96 60 254 53 76 48 254 33 48 30 254 26 38 24 254 +minecraft:chain_command_block[conditional=true,facing=east] 68 96 62 254 54 76 49 254 34 48 31 254 27 38 24 254 +minecraft:chain_command_block[conditional=true,facing=south] 65 93 61 254 52 74 48 254 32 46 30 254 26 37 24 254 +minecraft:chain_command_block[conditional=true,facing=west] 65 93 61 254 52 74 48 254 32 46 30 254 26 37 24 254 +minecraft:chain_command_block[conditional=true,facing=up] 65 93 61 254 52 74 48 254 32 46 30 254 26 37 24 254 +minecraft:chain_command_block[conditional=true,facing=down] 65 93 61 254 52 74 48 254 32 46 30 254 26 37 24 254 +minecraft:chain_command_block[conditional=false,facing=north] 67 96 60 254 53 76 48 254 33 48 30 254 26 38 24 254 +minecraft:chain_command_block[conditional=false,facing=east] 68 96 62 254 54 76 49 254 34 48 31 254 27 38 24 254 +minecraft:chain_command_block[conditional=false,facing=south] 68 92 63 254 54 73 50 254 34 46 31 254 27 36 25 254 +minecraft:chain_command_block[conditional=false,facing=west] 68 92 63 254 54 73 50 254 34 46 31 254 27 36 25 254 +minecraft:chain_command_block[conditional=false,facing=up] 68 92 63 254 54 73 50 254 34 46 31 254 27 36 25 254 +minecraft:chain_command_block[conditional=false,facing=down] 68 92 63 254 54 73 50 254 34 46 31 254 27 36 25 254 minecraft:frosted_ice 158 208 240 179 126 166 192 179 79 104 120 179 63 83 96 179 minecraft:frosted_ice[age=1] 158 207 240 179 126 165 192 179 79 103 120 179 63 82 96 179 minecraft:frosted_ice[age=2] 158 207 240 179 126 165 192 179 79 103 120 179 63 82 96 179 minecraft:frosted_ice[age=3] 157 207 240 179 125 165 192 179 78 103 120 179 62 82 96 179 -minecraft:magma_block 111 63 44 255 88 50 35 255 55 31 22 255 44 25 17 255 +minecraft:magma_block 112 31 15 250 89 24 12 250 56 15 7 250 44 12 6 250 minecraft:nether_wart_block 72 11 21 255 57 8 16 255 36 5 10 255 28 4 8 255 -minecraft:red_nether_bricks 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 +minecraft:red_nether_bricks 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 minecraft:bone_block 212 209 195 255 169 167 156 255 106 104 97 255 84 83 78 255 minecraft:bone_block[axis=y] 212 208 195 255 169 166 156 255 106 104 97 255 84 83 78 255 minecraft:bone_block[axis=z] 212 209 195 255 169 167 156 255 106 104 97 255 84 83 78 255 @@ -9166,10 +9175,10 @@ minecraft:green_shulker_box[facing=up] 59 107 48 255 47 85 38 255 29 53 24 255 2 minecraft:green_shulker_box[facing=down] 59 107 48 255 47 85 38 255 29 53 24 255 23 42 19 255 minecraft:red_shulker_box 115 25 28 255 92 20 22 255 57 12 14 255 46 10 11 255 minecraft:red_shulker_box[facing=east] 115 25 28 255 92 20 22 255 57 12 14 255 46 10 11 255 -minecraft:red_shulker_box[facing=south] 114 25 27 255 91 20 21 255 57 12 13 255 45 10 10 255 -minecraft:red_shulker_box[facing=west] 114 25 27 255 91 20 21 255 57 12 13 255 45 10 10 255 -minecraft:red_shulker_box[facing=up] 114 25 27 255 91 20 21 255 57 12 13 255 45 10 10 255 -minecraft:red_shulker_box[facing=down] 114 25 27 255 91 20 21 255 57 12 13 255 45 10 10 255 +minecraft:red_shulker_box[facing=south] 114 24 27 255 91 19 21 255 57 12 13 255 45 9 10 255 +minecraft:red_shulker_box[facing=west] 114 24 27 255 91 19 21 255 57 12 13 255 45 9 10 255 +minecraft:red_shulker_box[facing=up] 114 24 27 255 91 19 21 255 57 12 13 255 45 9 10 255 +minecraft:red_shulker_box[facing=down] 114 24 27 255 91 19 21 255 57 12 13 255 45 9 10 255 minecraft:black_shulker_box 23 21 19 255 18 16 15 255 11 10 9 255 9 8 7 255 minecraft:black_shulker_box[facing=east] 23 21 19 255 18 16 15 255 11 10 9 255 9 8 7 255 minecraft:black_shulker_box[facing=south] 22 20 18 255 17 16 14 255 11 10 9 255 8 8 7 255 @@ -9240,22 +9249,22 @@ minecraft:black_glazed_terracotta 140 137 136 255 112 109 108 255 70 68 68 255 5 minecraft:black_glazed_terracotta[facing=south] 140 137 136 255 112 109 108 255 70 68 68 255 56 54 54 255 minecraft:black_glazed_terracotta[facing=west] 140 137 136 255 112 109 108 255 70 68 68 255 56 54 54 255 minecraft:black_glazed_terracotta[facing=east] 140 137 136 255 112 109 108 255 70 68 68 255 56 54 54 255 -minecraft:white_concrete 179 176 149 255 143 140 119 255 89 88 74 255 71 70 59 255 -minecraft:orange_concrete 134 61 16 255 107 48 12 255 67 30 8 255 53 24 6 255 -minecraft:magenta_concrete 101 54 76 255 80 43 60 255 50 27 38 255 40 21 30 255 -minecraft:light_blue_concrete 68 97 134 255 54 77 107 255 34 48 67 255 27 38 53 255 -minecraft:yellow_concrete 165 115 22 255 132 92 17 255 82 57 11 255 66 46 8 255 -minecraft:lime_concrete 66 93 45 255 52 74 36 255 33 46 22 255 26 37 18 255 -minecraft:pink_concrete 164 88 110 255 131 70 88 255 82 44 55 255 65 35 44 255 -minecraft:gray_concrete 104 99 98 255 83 79 78 255 52 49 49 255 41 39 39 255 -minecraft:light_gray_concrete 112 127 119 255 89 101 95 255 56 63 59 255 44 50 47 255 -minecraft:cyan_concrete 50 104 97 255 40 83 77 255 25 52 48 255 20 41 38 255 -minecraft:purple_concrete 78 50 101 255 62 40 80 255 39 25 50 255 31 20 40 255 -minecraft:blue_concrete 37 49 76 255 29 39 60 255 18 24 38 255 14 19 30 255 -minecraft:brown_concrete 70 52 40 255 56 41 32 255 35 26 20 255 28 20 16 255 -minecraft:green_concrete 43 89 53 255 34 71 42 255 21 44 26 255 17 35 21 255 -minecraft:red_concrete 101 52 50 255 80 41 40 255 50 26 25 255 40 20 20 255 -minecraft:black_concrete 53 46 46 255 42 36 36 255 26 23 23 255 21 18 18 255 +minecraft:white_concrete 219 216 212 255 175 172 169 255 109 108 106 255 87 86 84 255 +minecraft:orange_concrete 229 110 51 255 183 88 40 255 114 55 25 255 91 44 20 255 +minecraft:magenta_concrete 163 78 179 255 130 62 143 255 81 39 89 255 65 31 71 255 +minecraft:light_blue_concrete 114 143 191 255 91 114 152 255 57 71 95 255 45 57 76 255 +minecraft:yellow_concrete 201 161 43 255 160 128 34 255 100 80 21 255 80 64 17 255 +minecraft:lime_concrete 96 187 62 255 76 149 49 255 48 93 31 255 38 74 24 255 +minecraft:pink_concrete 215 146 157 255 172 116 125 255 107 73 78 255 86 58 62 255 +minecraft:gray_concrete 51 51 48 255 40 40 38 255 25 25 24 255 20 20 19 255 +minecraft:light_gray_concrete 137 145 141 255 109 116 112 255 68 72 70 255 54 58 56 255 +minecraft:cyan_concrete 44 111 125 255 35 88 100 255 22 55 62 255 17 44 50 255 +minecraft:purple_concrete 92 50 143 255 73 40 114 255 46 25 71 255 36 20 57 255 +minecraft:blue_concrete 41 66 134 255 32 52 107 255 20 33 67 255 16 26 53 255 +minecraft:brown_concrete 89 52 30 255 71 41 24 255 44 26 15 255 35 20 12 255 +minecraft:green_concrete 58 107 27 255 46 85 21 255 29 53 13 255 23 42 10 255 +minecraft:red_concrete 136 36 37 255 108 28 29 255 68 18 18 255 54 14 14 255 +minecraft:black_concrete 21 19 17 255 16 15 13 255 10 9 8 255 8 7 6 255 minecraft:white_concrete_powder 224 221 217 255 179 176 173 255 112 110 108 255 89 88 86 255 minecraft:orange_concrete_powder 225 104 49 255 180 83 39 255 112 52 24 255 90 41 19 255 minecraft:magenta_concrete_powder 176 85 196 255 140 68 156 255 88 42 98 255 70 34 78 255 @@ -9272,33 +9281,33 @@ minecraft:brown_concrete_powder 88 52 31 255 70 41 24 255 44 26 15 255 35 20 12 minecraft:green_concrete_powder 56 102 28 255 44 81 22 255 28 51 14 255 22 40 11 255 minecraft:red_concrete_powder 136 35 37 255 108 28 29 255 68 17 18 255 54 14 14 255 minecraft:black_concrete_powder 26 23 22 255 20 18 17 255 13 11 11 255 10 9 8 255 -minecraft:kelp 37 81 11 37 29 64 8 37 18 40 5 37 14 32 4 37 -minecraft:kelp[age=1] 37 81 11 37 29 64 8 37 18 40 5 37 14 32 4 37 -minecraft:kelp[age=2] 37 81 11 37 29 64 8 37 18 40 5 37 14 32 4 37 -minecraft:kelp[age=3] 37 81 11 37 29 64 8 37 18 40 5 37 14 32 4 37 -minecraft:kelp[age=4] 37 81 11 37 29 64 8 37 18 40 5 37 14 32 4 37 -minecraft:kelp[age=5] 37 81 11 37 29 64 8 37 18 40 5 37 14 32 4 37 -minecraft:kelp[age=6] 37 81 11 37 29 64 8 37 18 40 5 37 14 32 4 37 -minecraft:kelp[age=7] 37 81 11 37 29 64 8 37 18 40 5 37 14 32 4 37 -minecraft:kelp[age=8] 37 81 11 37 29 64 8 37 18 40 5 37 14 32 4 37 -minecraft:kelp[age=9] 37 81 11 37 29 64 8 37 18 40 5 37 14 32 4 37 -minecraft:kelp[age=10] 37 81 11 37 29 64 8 37 18 40 5 37 14 32 4 37 -minecraft:kelp[age=11] 37 81 11 37 29 64 8 37 18 40 5 37 14 32 4 37 -minecraft:kelp[age=12] 37 81 11 37 29 64 8 37 18 40 5 37 14 32 4 37 -minecraft:kelp[age=13] 37 81 11 37 29 64 8 37 18 40 5 37 14 32 4 37 -minecraft:kelp[age=14] 37 81 11 37 29 64 8 37 18 40 5 37 14 32 4 37 -minecraft:kelp[age=15] 37 81 11 37 29 64 8 37 18 40 5 37 14 32 4 37 -minecraft:kelp[age=16] 37 81 11 37 29 64 8 37 18 40 5 37 14 32 4 37 -minecraft:kelp[age=17] 37 81 11 37 29 64 8 37 18 40 5 37 14 32 4 37 -minecraft:kelp[age=18] 37 81 11 37 29 64 8 37 18 40 5 37 14 32 4 37 -minecraft:kelp[age=19] 37 81 11 37 29 64 8 37 18 40 5 37 14 32 4 37 -minecraft:kelp[age=20] 37 81 11 37 29 64 8 37 18 40 5 37 14 32 4 37 -minecraft:kelp[age=21] 37 81 11 37 29 64 8 37 18 40 5 37 14 32 4 37 -minecraft:kelp[age=22] 37 81 11 37 29 64 8 37 18 40 5 37 14 32 4 37 -minecraft:kelp[age=23] 37 81 11 37 29 64 8 37 18 40 5 37 14 32 4 37 -minecraft:kelp[age=24] 37 81 11 37 29 64 8 37 18 40 5 37 14 32 4 37 -minecraft:kelp[age=25] 37 81 11 37 29 64 8 37 18 40 5 37 14 32 4 37 -minecraft:kelp_plant 26 66 9 57 20 52 7 57 13 33 4 57 10 26 3 57 +minecraft:kelp 46 92 16 39 36 73 12 39 23 46 8 39 18 36 6 39 +minecraft:kelp[age=1] 46 92 16 39 36 73 12 39 23 46 8 39 18 36 6 39 +minecraft:kelp[age=2] 46 92 16 39 36 73 12 39 23 46 8 39 18 36 6 39 +minecraft:kelp[age=3] 46 92 16 39 36 73 12 39 23 46 8 39 18 36 6 39 +minecraft:kelp[age=4] 46 92 16 39 36 73 12 39 23 46 8 39 18 36 6 39 +minecraft:kelp[age=5] 46 92 16 39 36 73 12 39 23 46 8 39 18 36 6 39 +minecraft:kelp[age=6] 46 92 16 39 36 73 12 39 23 46 8 39 18 36 6 39 +minecraft:kelp[age=7] 46 92 16 39 36 73 12 39 23 46 8 39 18 36 6 39 +minecraft:kelp[age=8] 46 92 16 39 36 73 12 39 23 46 8 39 18 36 6 39 +minecraft:kelp[age=9] 46 92 16 39 36 73 12 39 23 46 8 39 18 36 6 39 +minecraft:kelp[age=10] 46 92 16 39 36 73 12 39 23 46 8 39 18 36 6 39 +minecraft:kelp[age=11] 46 92 16 39 36 73 12 39 23 46 8 39 18 36 6 39 +minecraft:kelp[age=12] 46 92 16 39 36 73 12 39 23 46 8 39 18 36 6 39 +minecraft:kelp[age=13] 46 92 16 39 36 73 12 39 23 46 8 39 18 36 6 39 +minecraft:kelp[age=14] 46 92 16 39 36 73 12 39 23 46 8 39 18 36 6 39 +minecraft:kelp[age=15] 46 92 16 39 36 73 12 39 23 46 8 39 18 36 6 39 +minecraft:kelp[age=16] 46 92 16 39 36 73 12 39 23 46 8 39 18 36 6 39 +minecraft:kelp[age=17] 46 92 16 39 36 73 12 39 23 46 8 39 18 36 6 39 +minecraft:kelp[age=18] 46 92 16 39 36 73 12 39 23 46 8 39 18 36 6 39 +minecraft:kelp[age=19] 46 92 16 39 36 73 12 39 23 46 8 39 18 36 6 39 +minecraft:kelp[age=20] 46 92 16 39 36 73 12 39 23 46 8 39 18 36 6 39 +minecraft:kelp[age=21] 46 92 16 39 36 73 12 39 23 46 8 39 18 36 6 39 +minecraft:kelp[age=22] 46 92 16 39 36 73 12 39 23 46 8 39 18 36 6 39 +minecraft:kelp[age=23] 46 92 16 39 36 73 12 39 23 46 8 39 18 36 6 39 +minecraft:kelp[age=24] 46 92 16 39 36 73 12 39 23 46 8 39 18 36 6 39 +minecraft:kelp[age=25] 46 92 16 39 36 73 12 39 23 46 8 39 18 36 6 39 +minecraft:kelp_plant 33 74 12 58 26 59 9 58 16 37 6 58 13 29 4 58 minecraft:dried_kelp_block 47 57 43 255 37 45 34 255 23 28 21 255 18 22 17 255 minecraft:turtle_egg 185 176 148 132 148 140 118 132 92 88 74 132 74 70 59 132 minecraft:turtle_egg[eggs=1,hatch=1] 181 172 145 132 144 137 116 132 90 86 72 132 72 68 58 132 @@ -9318,7 +9327,7 @@ minecraft:dead_bubble_coral_block 150 144 126 255 120 115 100 255 75 72 63 255 6 minecraft:dead_fire_coral_block 122 117 100 255 97 93 80 255 61 58 50 255 48 46 40 255 minecraft:dead_horn_coral_block 139 132 111 255 111 105 88 255 69 66 55 255 55 52 44 255 minecraft:tube_coral_block 44 60 204 255 35 48 163 255 22 30 102 255 17 24 81 255 -minecraft:brain_coral_block 188 122 133 252 150 97 106 252 94 61 66 252 75 48 53 252 +minecraft:brain_coral_block 188 122 132 255 150 97 105 255 94 61 66 255 75 48 52 255 minecraft:bubble_coral_block 134 107 169 255 107 85 135 255 67 53 84 255 53 42 67 255 minecraft:fire_coral_block 139 60 50 255 111 48 40 255 69 30 25 255 55 24 20 255 minecraft:horn_coral_block 172 132 51 255 137 105 40 255 86 66 25 255 68 52 20 255 @@ -9627,166 +9636,166 @@ minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=outer_left,w minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 142 88 53 255 113 70 42 255 71 44 26 255 56 35 21 255 minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 142 88 53 255 113 70 42 255 71 44 26 255 56 35 21 255 minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 142 88 53 255 113 70 42 255 71 44 26 255 56 35 21 255 -minecraft:mossy_stone_brick_stairs 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:polished_diorite_stairs 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=north,half=top,shape=straight,waterlogged=false] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=south,half=top,shape=straight,waterlogged=true] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=south,half=top,shape=straight,waterlogged=false] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=west,half=top,shape=straight,waterlogged=true] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=west,half=top,shape=straight,waterlogged=false] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=east,half=top,shape=straight,waterlogged=true] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=east,half=top,shape=straight,waterlogged=false] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 +minecraft:mossy_stone_brick_stairs 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:polished_diorite_stairs 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=north,half=top,shape=straight,waterlogged=false] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=south,half=top,shape=straight,waterlogged=true] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=south,half=top,shape=straight,waterlogged=false] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=west,half=top,shape=straight,waterlogged=true] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=west,half=top,shape=straight,waterlogged=false] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=east,half=top,shape=straight,waterlogged=true] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=east,half=top,shape=straight,waterlogged=false] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 minecraft:mossy_cobblestone_stairs 83 104 73 255 66 83 58 255 41 52 36 255 33 41 29 255 minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=straight,waterlogged=false] 83 104 73 255 66 83 58 255 41 52 36 255 33 41 29 255 minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 83 104 73 255 66 83 58 255 41 52 36 255 33 41 29 255 @@ -9867,86 +9876,86 @@ minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=outer_left,wate minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 83 104 73 255 66 83 58 255 41 52 36 255 33 41 29 255 minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 83 104 73 255 66 83 58 255 41 52 36 255 33 41 29 255 minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 83 104 73 255 66 83 58 255 41 52 36 255 33 41 29 255 -minecraft:end_stone_brick_stairs 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 +minecraft:end_stone_brick_stairs 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 minecraft:stone_stairs 121 134 127 255 96 107 101 255 60 67 63 255 48 53 50 255 minecraft:stone_stairs[facing=north,half=top,shape=straight,waterlogged=false] 121 134 127 255 96 107 101 255 60 67 63 255 48 53 50 255 minecraft:stone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 121 134 127 255 96 107 101 255 60 67 63 255 48 53 50 255 @@ -10347,166 +10356,166 @@ minecraft:andesite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=t minecraft:andesite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 81 84 77 255 64 67 61 255 40 42 38 255 32 33 30 255 minecraft:andesite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 81 84 77 255 64 67 61 255 40 42 38 255 32 33 30 255 minecraft:andesite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 81 84 77 255 64 67 61 255 40 42 38 255 32 33 30 255 -minecraft:red_nether_brick_stairs 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:polished_andesite_stairs 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=north,half=top,shape=straight,waterlogged=false] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=south,half=top,shape=straight,waterlogged=true] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=south,half=top,shape=straight,waterlogged=false] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=west,half=top,shape=straight,waterlogged=true] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=west,half=top,shape=straight,waterlogged=false] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=east,half=top,shape=straight,waterlogged=true] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=east,half=top,shape=straight,waterlogged=false] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 +minecraft:red_nether_brick_stairs 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:polished_andesite_stairs 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=north,half=top,shape=straight,waterlogged=false] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=south,half=top,shape=straight,waterlogged=true] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=south,half=top,shape=straight,waterlogged=false] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=west,half=top,shape=straight,waterlogged=true] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=west,half=top,shape=straight,waterlogged=false] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=east,half=top,shape=straight,waterlogged=true] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=east,half=top,shape=straight,waterlogged=false] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 minecraft:diorite_stairs 187 188 172 255 149 150 137 255 93 94 86 255 74 75 68 255 minecraft:diorite_stairs[facing=north,half=top,shape=straight,waterlogged=false] 187 188 172 255 149 150 137 255 93 94 86 255 74 75 68 255 minecraft:diorite_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 187 188 172 255 149 150 137 255 93 94 86 255 74 75 68 255 @@ -10599,30 +10608,30 @@ minecraft:smooth_red_sandstone_slab[type=bottom,waterlogged=true] 142 88 53 255 minecraft:smooth_red_sandstone_slab[type=bottom,waterlogged=false] 142 88 53 255 113 70 42 255 71 44 26 255 56 35 21 255 minecraft:smooth_red_sandstone_slab[type=double,waterlogged=true] 142 88 53 255 113 70 42 255 71 44 26 255 56 35 21 255 minecraft:smooth_red_sandstone_slab[type=double,waterlogged=false] 142 88 53 255 113 70 42 255 71 44 26 255 56 35 21 255 -minecraft:mossy_stone_brick_slab 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_slab[type=top,waterlogged=false] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_slab[type=bottom,waterlogged=true] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_slab[type=bottom,waterlogged=false] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_slab[type=double,waterlogged=true] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_slab[type=double,waterlogged=false] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:polished_diorite_slab 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_slab[type=top,waterlogged=false] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_slab[type=bottom,waterlogged=true] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_slab[type=bottom,waterlogged=false] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_slab[type=double,waterlogged=true] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 -minecraft:polished_diorite_slab[type=double,waterlogged=false] 192 189 182 255 153 151 145 255 96 94 91 255 76 75 72 255 +minecraft:mossy_stone_brick_slab 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_slab[type=top,waterlogged=false] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_slab[type=bottom,waterlogged=true] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_slab[type=bottom,waterlogged=false] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_slab[type=double,waterlogged=true] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_slab[type=double,waterlogged=false] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:polished_diorite_slab 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_slab[type=top,waterlogged=false] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_slab[type=bottom,waterlogged=true] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_slab[type=bottom,waterlogged=false] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_slab[type=double,waterlogged=true] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 +minecraft:polished_diorite_slab[type=double,waterlogged=false] 205 199 187 255 164 159 149 255 102 99 93 255 82 79 74 255 minecraft:mossy_cobblestone_slab 83 104 73 255 66 83 58 255 41 52 36 255 33 41 29 255 minecraft:mossy_cobblestone_slab[type=top,waterlogged=false] 83 104 73 255 66 83 58 255 41 52 36 255 33 41 29 255 minecraft:mossy_cobblestone_slab[type=bottom,waterlogged=true] 83 104 73 255 66 83 58 255 41 52 36 255 33 41 29 255 minecraft:mossy_cobblestone_slab[type=bottom,waterlogged=false] 83 104 73 255 66 83 58 255 41 52 36 255 33 41 29 255 minecraft:mossy_cobblestone_slab[type=double,waterlogged=true] 83 104 73 255 66 83 58 255 41 52 36 255 33 41 29 255 minecraft:mossy_cobblestone_slab[type=double,waterlogged=false] 83 104 73 255 66 83 58 255 41 52 36 255 33 41 29 255 -minecraft:end_stone_brick_slab 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_slab[type=top,waterlogged=false] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_slab[type=bottom,waterlogged=true] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_slab[type=bottom,waterlogged=false] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_slab[type=double,waterlogged=true] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_slab[type=double,waterlogged=false] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 +minecraft:end_stone_brick_slab 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_slab[type=top,waterlogged=false] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_slab[type=bottom,waterlogged=true] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_slab[type=bottom,waterlogged=false] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_slab[type=double,waterlogged=true] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_slab[type=double,waterlogged=false] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 minecraft:smooth_sandstone_slab 214 200 152 255 171 160 121 255 107 100 76 255 85 80 60 255 minecraft:smooth_sandstone_slab[type=top,waterlogged=false] 214 200 152 255 171 160 121 255 107 100 76 255 85 80 60 255 minecraft:smooth_sandstone_slab[type=bottom,waterlogged=true] 214 200 152 255 171 160 121 255 107 100 76 255 85 80 60 255 @@ -10647,18 +10656,18 @@ minecraft:andesite_slab[type=bottom,waterlogged=true] 81 84 77 255 64 67 61 255 minecraft:andesite_slab[type=bottom,waterlogged=false] 81 84 77 255 64 67 61 255 40 42 38 255 32 33 30 255 minecraft:andesite_slab[type=double,waterlogged=true] 81 84 77 255 64 67 61 255 40 42 38 255 32 33 30 255 minecraft:andesite_slab[type=double,waterlogged=false] 81 84 77 255 64 67 61 255 40 42 38 255 32 33 30 255 -minecraft:red_nether_brick_slab 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_slab[type=top,waterlogged=false] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_slab[type=bottom,waterlogged=true] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_slab[type=bottom,waterlogged=false] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_slab[type=double,waterlogged=true] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_slab[type=double,waterlogged=false] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:polished_andesite_slab 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_slab[type=top,waterlogged=false] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_slab[type=bottom,waterlogged=true] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_slab[type=bottom,waterlogged=false] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_slab[type=double,waterlogged=true] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 -minecraft:polished_andesite_slab[type=double,waterlogged=false] 82 87 81 255 65 69 64 255 41 43 40 255 32 34 32 255 +minecraft:red_nether_brick_slab 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_slab[type=top,waterlogged=false] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_slab[type=bottom,waterlogged=true] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_slab[type=bottom,waterlogged=false] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_slab[type=double,waterlogged=true] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_slab[type=double,waterlogged=false] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:polished_andesite_slab 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_slab[type=top,waterlogged=false] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_slab[type=bottom,waterlogged=true] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_slab[type=bottom,waterlogged=false] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_slab[type=double,waterlogged=true] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 +minecraft:polished_andesite_slab[type=double,waterlogged=false] 76 82 78 255 60 65 62 255 38 41 39 255 30 32 31 255 minecraft:diorite_slab 187 188 172 255 149 150 137 255 93 94 86 255 74 75 68 255 minecraft:diorite_slab[type=top,waterlogged=false] 187 188 172 255 149 150 137 255 93 94 86 255 74 75 68 255 minecraft:diorite_slab[type=bottom,waterlogged=true] 187 188 172 255 149 150 137 255 93 94 86 255 74 75 68 255 @@ -10989,330 +10998,330 @@ minecraft:brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,w minecraft:brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 142 93 66 255 113 74 52 255 71 46 33 255 56 37 26 255 minecraft:brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 142 93 66 255 113 74 52 255 71 46 33 255 56 37 26 255 minecraft:brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 142 93 66 255 113 74 52 255 71 46 33 255 56 37 26 255 -minecraft:prismarine_wall 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 -minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 39 92 59 255 31 73 47 255 19 46 29 255 15 36 23 255 +minecraft:prismarine_wall 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 +minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 34 76 56 255 27 60 44 255 17 38 28 255 13 30 22 255 minecraft:red_sandstone_wall 134 83 50 255 107 66 40 255 67 41 25 255 53 33 20 255 minecraft:red_sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 134 83 50 255 107 66 40 255 67 41 25 255 53 33 20 255 minecraft:red_sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 134 83 50 255 107 66 40 255 67 41 25 255 53 33 20 255 @@ -11637,330 +11646,330 @@ minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogge minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 134 83 50 255 107 66 40 255 67 41 25 255 53 33 20 255 minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 134 83 50 255 107 66 40 255 67 41 25 255 53 33 20 255 minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 134 83 50 255 107 66 40 255 67 41 25 255 53 33 20 255 -minecraft:mossy_stone_brick_wall 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 -minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 107 122 111 255 85 97 88 255 53 61 55 255 42 48 44 255 +minecraft:mossy_stone_brick_wall 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 90 110 87 255 72 88 69 255 45 55 43 255 36 44 34 255 minecraft:granite_wall 148 85 53 255 118 68 42 255 74 42 26 255 59 34 21 255 minecraft:granite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 148 85 53 255 118 68 42 255 74 42 26 255 59 34 21 255 minecraft:granite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 148 85 53 255 118 68 42 255 74 42 26 255 59 34 21 255 @@ -13257,330 +13266,330 @@ minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=tru minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 81 84 77 255 64 67 61 255 40 42 38 255 32 33 30 255 minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 81 84 77 255 64 67 61 255 40 42 38 255 32 33 30 255 minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 81 84 77 255 64 67 61 255 40 42 38 255 32 33 30 255 -minecraft:red_nether_brick_wall 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 -minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 63 9 20 255 50 7 16 255 31 4 10 255 25 3 8 255 +minecraft:red_nether_brick_wall 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 49 15 18 255 39 12 14 255 24 7 9 255 19 6 7 255 minecraft:sandstone_wall 205 189 142 255 164 151 113 255 102 94 71 255 82 75 56 255 minecraft:sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 205 189 142 255 164 151 113 255 102 94 71 255 82 75 56 255 minecraft:sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 205 189 142 255 164 151 113 255 102 94 71 255 82 75 56 255 @@ -13905,330 +13914,330 @@ minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=tr minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 205 189 142 255 164 151 113 255 102 94 71 255 82 75 56 255 minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 205 189 142 255 164 151 113 255 102 94 71 255 82 75 56 255 minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 205 189 142 255 164 151 113 255 102 94 71 255 82 75 56 255 -minecraft:end_stone_brick_wall 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 -minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 170 167 148 255 136 133 118 255 85 83 74 255 68 66 59 255 +minecraft:end_stone_brick_wall 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 175 177 155 255 140 141 124 255 87 88 77 255 70 70 62 255 minecraft:diorite_wall 187 188 172 255 149 150 137 255 93 94 86 255 74 75 68 255 minecraft:diorite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 187 188 172 255 149 150 137 255 93 94 86 255 74 75 68 255 minecraft:diorite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 187 188 172 255 149 150 137 255 93 94 86 255 74 75 68 255 @@ -14684,10 +14693,14 @@ minecraft:bell[attachment=double_wall,facing=west,powered=true] 197 164 80 57 15 minecraft:bell[attachment=double_wall,facing=west,powered=false] 197 164 80 57 157 131 64 57 98 82 40 57 78 65 32 57 minecraft:bell[attachment=double_wall,facing=east,powered=true] 197 164 80 57 157 131 64 57 98 82 40 57 78 65 32 57 minecraft:bell[attachment=double_wall,facing=east,powered=false] 197 164 80 57 157 131 64 57 98 82 40 57 78 65 32 57 -minecraft:soul_lantern 78 125 139 55 62 100 111 55 39 62 69 55 31 50 55 55 -minecraft:soul_lantern[hanging=true,waterlogged=false] 78 125 139 55 62 100 111 55 39 62 69 55 31 50 55 55 -minecraft:soul_lantern[hanging=false,waterlogged=true] 78 125 139 55 62 100 111 55 39 62 69 55 31 50 55 55 -minecraft:soul_lantern[hanging=false,waterlogged=false] 78 125 139 55 62 100 111 55 39 62 69 55 31 50 55 55 +minecraft:lantern 137 107 72 11 109 85 57 11 68 53 36 11 54 42 28 11 +minecraft:lantern[hanging=true,waterlogged=false] 137 107 72 11 109 85 57 11 68 53 36 11 54 42 28 11 +minecraft:lantern[hanging=false,waterlogged=true] 137 107 72 11 109 85 57 11 68 53 36 11 54 42 28 11 +minecraft:lantern[hanging=false,waterlogged=false] 137 107 72 11 109 85 57 11 68 53 36 11 54 42 28 11 +minecraft:soul_lantern 59 97 93 11 47 77 74 11 29 48 46 11 23 38 37 11 +minecraft:soul_lantern[hanging=true,waterlogged=false] 59 97 93 11 47 77 74 11 29 48 46 11 23 38 37 11 +minecraft:soul_lantern[hanging=false,waterlogged=true] 59 97 93 11 47 77 74 11 29 48 46 11 23 38 37 11 +minecraft:soul_lantern[hanging=false,waterlogged=false] 59 97 93 11 47 77 74 11 29 48 46 11 23 38 37 11 minecraft:campfire 55 52 51 207 44 41 40 207 27 26 25 207 22 20 20 207 minecraft:campfire[facing=north,lit=true,signal_fire=true,waterlogged=false] 55 52 51 207 44 41 40 207 27 26 25 207 22 20 20 207 minecraft:campfire[facing=north,lit=true,signal_fire=false,waterlogged=true] 55 52 51 207 44 41 40 207 27 26 25 207 22 20 20 207 @@ -14752,42 +14765,42 @@ minecraft:soul_campfire[facing=east,lit=false,signal_fire=true,waterlogged=true] minecraft:soul_campfire[facing=east,lit=false,signal_fire=true,waterlogged=false] 55 52 51 207 44 41 40 207 27 26 25 207 22 20 20 207 minecraft:soul_campfire[facing=east,lit=false,signal_fire=false,waterlogged=true] 55 52 51 207 44 41 40 207 27 26 25 207 22 20 20 207 minecraft:soul_campfire[facing=east,lit=false,signal_fire=false,waterlogged=false] 55 52 51 207 44 41 40 207 27 26 25 207 22 20 20 207 -minecraft:sweet_berry_bush 52 67 44 71 41 53 35 71 26 33 22 71 20 26 17 71 -minecraft:sweet_berry_bush[age=1] 52 68 44 108 41 54 35 108 26 34 22 108 20 27 17 108 -minecraft:sweet_berry_bush[age=2] 60 58 39 111 48 46 31 111 30 29 19 111 24 23 15 111 -minecraft:sweet_berry_bush[age=3] 63 55 37 134 50 44 29 134 31 27 18 134 25 22 14 134 -minecraft:warped_stem 57 59 77 255 45 47 61 255 28 29 38 255 22 23 30 255 -minecraft:warped_stem[axis=y] 57 103 103 255 45 82 82 255 28 51 51 255 22 41 41 255 -minecraft:warped_stem[axis=z] 57 59 77 255 45 47 61 255 28 29 38 255 22 23 30 255 -minecraft:stripped_warped_stem 57 150 147 255 45 120 117 255 28 75 73 255 22 60 58 255 -minecraft:stripped_warped_stem[axis=y] 52 128 124 255 41 102 99 255 26 64 62 255 20 51 49 255 -minecraft:stripped_warped_stem[axis=z] 57 150 147 255 45 120 117 255 28 75 73 255 22 60 58 255 -minecraft:warped_hyphae 57 59 77 255 45 47 61 255 28 29 38 255 22 23 30 255 -minecraft:warped_hyphae[axis=y] 57 59 77 255 45 47 61 255 28 29 38 255 22 23 30 255 -minecraft:warped_hyphae[axis=z] 57 59 77 255 45 47 61 255 28 29 38 255 22 23 30 255 -minecraft:stripped_warped_hyphae 57 150 147 255 45 120 117 255 28 75 73 255 22 60 58 255 -minecraft:stripped_warped_hyphae[axis=y] 57 150 147 255 45 120 117 255 28 75 73 255 22 60 58 255 -minecraft:stripped_warped_hyphae[axis=z] 57 150 147 255 45 120 117 255 28 75 73 255 22 60 58 255 -minecraft:warped_nylium 43 114 101 255 34 91 80 255 21 57 50 255 17 45 40 255 -minecraft:warped_fungus 74 109 87 49 59 87 69 49 37 54 43 49 29 43 34 49 -minecraft:warped_wart_block 22 119 121 255 17 95 96 255 11 59 60 255 8 47 48 255 -minecraft:warped_roots 20 138 124 91 16 110 99 91 10 69 62 91 8 55 49 91 -minecraft:nether_sprouts 19 151 133 30 15 120 106 30 9 75 66 30 7 60 53 30 -minecraft:crimson_stem 93 26 30 255 74 20 24 255 46 13 15 255 37 10 12 255 -minecraft:crimson_stem[axis=y] 107 51 74 255 85 40 59 255 53 25 37 255 42 20 29 255 -minecraft:crimson_stem[axis=z] 93 26 30 255 74 20 24 255 46 13 15 255 37 10 12 255 -minecraft:stripped_crimson_stem 137 57 90 255 109 45 72 255 68 28 45 255 54 22 36 255 -minecraft:stripped_crimson_stem[axis=y] 121 56 82 255 96 44 65 255 60 28 41 255 48 22 32 255 -minecraft:stripped_crimson_stem[axis=z] 137 57 90 255 109 45 72 255 68 28 45 255 54 22 36 255 -minecraft:crimson_hyphae 93 26 30 255 74 20 24 255 46 13 15 255 37 10 12 255 -minecraft:crimson_hyphae[axis=y] 93 26 30 255 74 20 24 255 46 13 15 255 37 10 12 255 -minecraft:crimson_hyphae[axis=z] 93 26 30 255 74 20 24 255 46 13 15 255 37 10 12 255 -minecraft:stripped_crimson_hyphae 137 57 90 255 109 45 72 255 68 28 45 255 54 22 36 255 -minecraft:stripped_crimson_hyphae[axis=y] 137 57 90 255 109 45 72 255 68 28 45 255 54 22 36 255 -minecraft:stripped_crimson_hyphae[axis=z] 137 57 90 255 109 45 72 255 68 28 45 255 54 22 36 255 -minecraft:crimson_nylium 130 31 31 255 104 24 24 255 65 15 15 255 52 12 12 255 -minecraft:crimson_fungus 141 44 29 59 112 35 23 59 70 22 14 59 56 17 11 59 -minecraft:shroomlight 240 146 70 255 192 116 56 255 120 73 35 255 96 58 28 255 +minecraft:sweet_berry_bush 42 89 56 52 33 71 44 52 21 44 28 52 16 35 22 52 +minecraft:sweet_berry_bush[age=1] 47 94 57 138 37 75 45 138 23 47 28 138 18 37 22 138 +minecraft:sweet_berry_bush[age=2] 59 88 56 144 47 70 44 144 29 44 28 144 23 35 22 144 +minecraft:sweet_berry_bush[age=3] 68 77 50 161 54 61 40 161 34 38 25 161 27 30 20 161 +minecraft:warped_stem 37 51 74 255 29 40 59 255 18 25 37 255 14 20 29 255 +minecraft:warped_stem[axis=y] 59 96 107 255 47 76 85 255 29 48 53 255 23 38 42 255 +minecraft:warped_stem[axis=z] 37 51 74 255 29 40 59 255 18 25 37 255 14 20 29 255 +minecraft:stripped_warped_stem 84 135 139 255 67 108 111 255 42 67 69 255 33 54 55 255 +minecraft:stripped_warped_stem[axis=y] 79 128 134 255 63 102 107 255 39 64 67 255 31 51 53 255 +minecraft:stripped_warped_stem[axis=z] 84 135 139 255 67 108 111 255 42 67 69 255 33 54 55 255 +minecraft:warped_hyphae 37 51 74 255 29 40 59 255 18 25 37 255 14 20 29 255 +minecraft:warped_hyphae[axis=y] 37 51 74 255 29 40 59 255 18 25 37 255 14 20 29 255 +minecraft:warped_hyphae[axis=z] 37 51 74 255 29 40 59 255 18 25 37 255 14 20 29 255 +minecraft:stripped_warped_hyphae 84 135 139 255 67 108 111 255 42 67 69 255 33 54 55 255 +minecraft:stripped_warped_hyphae[axis=y] 84 135 139 255 67 108 111 255 42 67 69 255 33 54 55 255 +minecraft:stripped_warped_hyphae[axis=z] 84 135 139 255 67 108 111 255 42 67 69 255 33 54 55 255 +minecraft:warped_nylium 24 95 95 255 19 76 76 255 12 47 47 255 9 38 38 255 +minecraft:warped_fungus 62 84 94 68 49 67 75 68 31 42 47 68 24 33 37 68 +minecraft:warped_wart_block 28 94 99 255 22 75 79 255 14 47 49 255 11 37 39 255 +minecraft:warped_roots 4 109 111 100 3 87 88 100 2 54 55 100 1 43 44 100 +minecraft:nether_sprouts 2 102 107 13 1 81 85 13 1 51 53 13 0 40 42 13 +minecraft:crimson_stem 49 36 39 255 39 28 31 255 24 18 19 255 19 14 15 255 +minecraft:crimson_stem[axis=y] 70 31 43 255 56 24 34 255 35 15 21 255 28 12 17 255 +minecraft:crimson_stem[axis=z] 49 36 39 255 39 28 31 255 24 18 19 255 19 14 15 255 +minecraft:stripped_crimson_stem 85 28 47 255 68 22 37 255 42 14 23 255 34 11 18 255 +minecraft:stripped_crimson_stem[axis=y] 90 30 49 255 72 24 39 255 45 15 24 255 36 12 19 255 +minecraft:stripped_crimson_stem[axis=z] 85 28 47 255 68 22 37 255 42 14 23 255 34 11 18 255 +minecraft:crimson_hyphae 49 36 39 255 39 28 31 255 24 18 19 255 19 14 15 255 +minecraft:crimson_hyphae[axis=y] 49 36 39 255 39 28 31 255 24 18 19 255 19 14 15 255 +minecraft:crimson_hyphae[axis=z] 49 36 39 255 39 28 31 255 24 18 19 255 19 14 15 255 +minecraft:stripped_crimson_hyphae 85 28 47 255 68 22 37 255 42 14 23 255 34 11 18 255 +minecraft:stripped_crimson_hyphae[axis=y] 85 28 47 255 68 22 37 255 42 14 23 255 34 11 18 255 +minecraft:stripped_crimson_hyphae[axis=z] 85 28 47 255 68 22 37 255 42 14 23 255 34 11 18 255 +minecraft:crimson_nylium 70 10 19 255 56 8 15 255 35 5 9 255 28 4 7 255 +minecraft:crimson_fungus 93 27 21 38 74 21 16 38 46 13 10 38 37 10 8 38 +minecraft:shroomlight 248 161 92 255 198 128 73 255 124 80 46 255 99 64 36 255 minecraft:weeping_vines 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 minecraft:weeping_vines[age=1] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 minecraft:weeping_vines[age=2] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 @@ -14814,117 +14827,117 @@ minecraft:weeping_vines[age=22] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 minecraft:weeping_vines[age=23] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 minecraft:weeping_vines[age=24] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 minecraft:weeping_vines[age=25] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 -minecraft:weeping_vines_plant 132 16 12 114 105 12 9 114 66 8 6 114 52 6 4 114 -minecraft:twisting_vines 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 -minecraft:twisting_vines[age=1] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 -minecraft:twisting_vines[age=2] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 -minecraft:twisting_vines[age=3] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 -minecraft:twisting_vines[age=4] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 -minecraft:twisting_vines[age=5] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 -minecraft:twisting_vines[age=6] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 -minecraft:twisting_vines[age=7] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 -minecraft:twisting_vines[age=8] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 -minecraft:twisting_vines[age=9] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 -minecraft:twisting_vines[age=10] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 -minecraft:twisting_vines[age=11] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 -minecraft:twisting_vines[age=12] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 -minecraft:twisting_vines[age=13] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 -minecraft:twisting_vines[age=14] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 -minecraft:twisting_vines[age=15] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 -minecraft:twisting_vines[age=16] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 -minecraft:twisting_vines[age=17] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 -minecraft:twisting_vines[age=18] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 -minecraft:twisting_vines[age=19] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 -minecraft:twisting_vines[age=20] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 -minecraft:twisting_vines[age=21] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 -minecraft:twisting_vines[age=22] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 -minecraft:twisting_vines[age=23] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 -minecraft:twisting_vines[age=24] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 -minecraft:twisting_vines[age=25] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 -minecraft:twisting_vines_plant 20 135 122 89 16 108 97 89 10 67 61 89 8 54 48 89 -minecraft:crimson_roots 126 8 41 90 100 6 32 90 63 4 20 90 50 3 16 90 -minecraft:crimson_planks 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:warped_planks 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:crimson_slab 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_slab[type=top,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_slab[type=bottom,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_slab[type=bottom,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_slab[type=double,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_slab[type=double,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:warped_slab 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_slab[type=top,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_slab[type=bottom,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_slab[type=bottom,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_slab[type=double,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_slab[type=double,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:crimson_pressure_plate 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_pressure_plate[powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:warped_pressure_plate 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_pressure_plate[powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:crimson_fence 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence[east=true,north=true,south=true,waterlogged=true,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence[east=true,north=true,south=true,waterlogged=false,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence[east=true,north=true,south=true,waterlogged=false,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence[east=true,north=true,south=false,waterlogged=true,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence[east=true,north=true,south=false,waterlogged=true,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence[east=true,north=true,south=false,waterlogged=false,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence[east=true,north=true,south=false,waterlogged=false,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence[east=true,north=false,south=true,waterlogged=true,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence[east=true,north=false,south=true,waterlogged=true,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence[east=true,north=false,south=true,waterlogged=false,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence[east=true,north=false,south=true,waterlogged=false,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence[east=true,north=false,south=false,waterlogged=true,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence[east=true,north=false,south=false,waterlogged=true,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence[east=true,north=false,south=false,waterlogged=false,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence[east=true,north=false,south=false,waterlogged=false,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence[east=false,north=true,south=true,waterlogged=true,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence[east=false,north=true,south=true,waterlogged=true,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence[east=false,north=true,south=true,waterlogged=false,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence[east=false,north=true,south=true,waterlogged=false,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence[east=false,north=true,south=false,waterlogged=true,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence[east=false,north=true,south=false,waterlogged=true,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence[east=false,north=true,south=false,waterlogged=false,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence[east=false,north=true,south=false,waterlogged=false,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence[east=false,north=false,south=true,waterlogged=true,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence[east=false,north=false,south=true,waterlogged=true,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence[east=false,north=false,south=true,waterlogged=false,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence[east=false,north=false,south=true,waterlogged=false,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence[east=false,north=false,south=false,waterlogged=true,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence[east=false,north=false,south=false,waterlogged=true,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence[east=false,north=false,south=false,waterlogged=false,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence[east=false,north=false,south=false,waterlogged=false,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:warped_fence 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence[east=true,north=true,south=true,waterlogged=true,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence[east=true,north=true,south=true,waterlogged=false,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence[east=true,north=true,south=true,waterlogged=false,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence[east=true,north=true,south=false,waterlogged=true,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence[east=true,north=true,south=false,waterlogged=true,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence[east=true,north=true,south=false,waterlogged=false,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence[east=true,north=true,south=false,waterlogged=false,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence[east=true,north=false,south=true,waterlogged=true,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence[east=true,north=false,south=true,waterlogged=true,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence[east=true,north=false,south=true,waterlogged=false,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence[east=true,north=false,south=true,waterlogged=false,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence[east=true,north=false,south=false,waterlogged=true,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence[east=true,north=false,south=false,waterlogged=true,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence[east=true,north=false,south=false,waterlogged=false,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence[east=true,north=false,south=false,waterlogged=false,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence[east=false,north=true,south=true,waterlogged=true,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence[east=false,north=true,south=true,waterlogged=true,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence[east=false,north=true,south=true,waterlogged=false,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence[east=false,north=true,south=true,waterlogged=false,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence[east=false,north=true,south=false,waterlogged=true,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence[east=false,north=true,south=false,waterlogged=true,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence[east=false,north=true,south=false,waterlogged=false,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence[east=false,north=true,south=false,waterlogged=false,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence[east=false,north=false,south=true,waterlogged=true,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence[east=false,north=false,south=true,waterlogged=true,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence[east=false,north=false,south=true,waterlogged=false,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence[east=false,north=false,south=true,waterlogged=false,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence[east=false,north=false,south=false,waterlogged=true,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence[east=false,north=false,south=false,waterlogged=true,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence[east=false,north=false,south=false,waterlogged=false,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence[east=false,north=false,south=false,waterlogged=false,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:weeping_vines_plant 121 33 14 97 96 26 11 97 60 16 7 97 48 13 5 97 +minecraft:twisting_vines 25 87 95 88 20 69 76 88 12 43 47 88 10 34 38 88 +minecraft:twisting_vines[age=1] 25 87 95 88 20 69 76 88 12 43 47 88 10 34 38 88 +minecraft:twisting_vines[age=2] 25 87 95 88 20 69 76 88 12 43 47 88 10 34 38 88 +minecraft:twisting_vines[age=3] 25 87 95 88 20 69 76 88 12 43 47 88 10 34 38 88 +minecraft:twisting_vines[age=4] 25 87 95 88 20 69 76 88 12 43 47 88 10 34 38 88 +minecraft:twisting_vines[age=5] 25 87 95 88 20 69 76 88 12 43 47 88 10 34 38 88 +minecraft:twisting_vines[age=6] 25 87 95 88 20 69 76 88 12 43 47 88 10 34 38 88 +minecraft:twisting_vines[age=7] 25 87 95 88 20 69 76 88 12 43 47 88 10 34 38 88 +minecraft:twisting_vines[age=8] 25 87 95 88 20 69 76 88 12 43 47 88 10 34 38 88 +minecraft:twisting_vines[age=9] 25 87 95 88 20 69 76 88 12 43 47 88 10 34 38 88 +minecraft:twisting_vines[age=10] 25 87 95 88 20 69 76 88 12 43 47 88 10 34 38 88 +minecraft:twisting_vines[age=11] 25 87 95 88 20 69 76 88 12 43 47 88 10 34 38 88 +minecraft:twisting_vines[age=12] 25 87 95 88 20 69 76 88 12 43 47 88 10 34 38 88 +minecraft:twisting_vines[age=13] 25 87 95 88 20 69 76 88 12 43 47 88 10 34 38 88 +minecraft:twisting_vines[age=14] 25 87 95 88 20 69 76 88 12 43 47 88 10 34 38 88 +minecraft:twisting_vines[age=15] 25 87 95 88 20 69 76 88 12 43 47 88 10 34 38 88 +minecraft:twisting_vines[age=16] 25 87 95 88 20 69 76 88 12 43 47 88 10 34 38 88 +minecraft:twisting_vines[age=17] 25 87 95 88 20 69 76 88 12 43 47 88 10 34 38 88 +minecraft:twisting_vines[age=18] 25 87 95 88 20 69 76 88 12 43 47 88 10 34 38 88 +minecraft:twisting_vines[age=19] 25 87 95 88 20 69 76 88 12 43 47 88 10 34 38 88 +minecraft:twisting_vines[age=20] 25 87 95 88 20 69 76 88 12 43 47 88 10 34 38 88 +minecraft:twisting_vines[age=21] 25 87 95 88 20 69 76 88 12 43 47 88 10 34 38 88 +minecraft:twisting_vines[age=22] 25 87 95 88 20 69 76 88 12 43 47 88 10 34 38 88 +minecraft:twisting_vines[age=23] 25 87 95 88 20 69 76 88 12 43 47 88 10 34 38 88 +minecraft:twisting_vines[age=24] 25 87 95 88 20 69 76 88 12 43 47 88 10 34 38 88 +minecraft:twisting_vines[age=25] 25 87 95 88 20 69 76 88 12 43 47 88 10 34 38 88 +minecraft:twisting_vines_plant 28 95 99 122 22 76 79 122 14 47 49 122 11 38 39 122 +minecraft:crimson_roots 107 29 35 104 85 23 28 104 53 14 17 104 42 11 14 104 +minecraft:crimson_planks 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:warped_planks 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:crimson_slab 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_slab[type=top,waterlogged=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_slab[type=bottom,waterlogged=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_slab[type=bottom,waterlogged=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_slab[type=double,waterlogged=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_slab[type=double,waterlogged=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:warped_slab 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_slab[type=top,waterlogged=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_slab[type=bottom,waterlogged=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_slab[type=bottom,waterlogged=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_slab[type=double,waterlogged=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_slab[type=double,waterlogged=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:crimson_pressure_plate 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_pressure_plate[powered=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:warped_pressure_plate 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_pressure_plate[powered=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:crimson_fence 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence[east=true,north=true,south=true,waterlogged=true,west=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence[east=true,north=true,south=true,waterlogged=false,west=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence[east=true,north=true,south=true,waterlogged=false,west=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence[east=true,north=true,south=false,waterlogged=true,west=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence[east=true,north=true,south=false,waterlogged=true,west=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence[east=true,north=true,south=false,waterlogged=false,west=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence[east=true,north=true,south=false,waterlogged=false,west=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence[east=true,north=false,south=true,waterlogged=true,west=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence[east=true,north=false,south=true,waterlogged=true,west=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence[east=true,north=false,south=true,waterlogged=false,west=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence[east=true,north=false,south=true,waterlogged=false,west=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence[east=true,north=false,south=false,waterlogged=true,west=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence[east=true,north=false,south=false,waterlogged=true,west=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence[east=true,north=false,south=false,waterlogged=false,west=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence[east=true,north=false,south=false,waterlogged=false,west=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence[east=false,north=true,south=true,waterlogged=true,west=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence[east=false,north=true,south=true,waterlogged=true,west=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence[east=false,north=true,south=true,waterlogged=false,west=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence[east=false,north=true,south=true,waterlogged=false,west=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence[east=false,north=true,south=false,waterlogged=true,west=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence[east=false,north=true,south=false,waterlogged=true,west=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence[east=false,north=true,south=false,waterlogged=false,west=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence[east=false,north=true,south=false,waterlogged=false,west=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence[east=false,north=false,south=true,waterlogged=true,west=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence[east=false,north=false,south=true,waterlogged=true,west=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence[east=false,north=false,south=true,waterlogged=false,west=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence[east=false,north=false,south=true,waterlogged=false,west=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence[east=false,north=false,south=false,waterlogged=true,west=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence[east=false,north=false,south=false,waterlogged=true,west=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence[east=false,north=false,south=false,waterlogged=false,west=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence[east=false,north=false,south=false,waterlogged=false,west=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:warped_fence 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence[east=true,north=true,south=true,waterlogged=true,west=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence[east=true,north=true,south=true,waterlogged=false,west=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence[east=true,north=true,south=true,waterlogged=false,west=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence[east=true,north=true,south=false,waterlogged=true,west=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence[east=true,north=true,south=false,waterlogged=true,west=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence[east=true,north=true,south=false,waterlogged=false,west=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence[east=true,north=true,south=false,waterlogged=false,west=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence[east=true,north=false,south=true,waterlogged=true,west=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence[east=true,north=false,south=true,waterlogged=true,west=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence[east=true,north=false,south=true,waterlogged=false,west=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence[east=true,north=false,south=true,waterlogged=false,west=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence[east=true,north=false,south=false,waterlogged=true,west=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence[east=true,north=false,south=false,waterlogged=true,west=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence[east=true,north=false,south=false,waterlogged=false,west=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence[east=true,north=false,south=false,waterlogged=false,west=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence[east=false,north=true,south=true,waterlogged=true,west=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence[east=false,north=true,south=true,waterlogged=true,west=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence[east=false,north=true,south=true,waterlogged=false,west=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence[east=false,north=true,south=true,waterlogged=false,west=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence[east=false,north=true,south=false,waterlogged=true,west=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence[east=false,north=true,south=false,waterlogged=true,west=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence[east=false,north=true,south=false,waterlogged=false,west=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence[east=false,north=true,south=false,waterlogged=false,west=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence[east=false,north=false,south=true,waterlogged=true,west=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence[east=false,north=false,south=true,waterlogged=true,west=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence[east=false,north=false,south=true,waterlogged=false,west=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence[east=false,north=false,south=true,waterlogged=false,west=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence[east=false,north=false,south=false,waterlogged=true,west=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence[east=false,north=false,south=false,waterlogged=true,west=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence[east=false,north=false,south=false,waterlogged=false,west=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence[east=false,north=false,south=false,waterlogged=false,west=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 minecraft:crimson_trapdoor 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 minecraft:crimson_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 minecraft:crimson_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 @@ -15053,278 +15066,278 @@ minecraft:warped_trapdoor[facing=east,half=bottom,open=false,powered=true,waterl minecraft:warped_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 minecraft:warped_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 minecraft:warped_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 -minecraft:crimson_fence_gate 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence_gate[facing=north,in_wall=true,open=true,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence_gate[facing=north,in_wall=true,open=false,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence_gate[facing=north,in_wall=true,open=false,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence_gate[facing=north,in_wall=false,open=true,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence_gate[facing=north,in_wall=false,open=true,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence_gate[facing=north,in_wall=false,open=false,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence_gate[facing=north,in_wall=false,open=false,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence_gate[facing=south,in_wall=true,open=true,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence_gate[facing=south,in_wall=true,open=true,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence_gate[facing=south,in_wall=true,open=false,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence_gate[facing=south,in_wall=true,open=false,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence_gate[facing=south,in_wall=false,open=true,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence_gate[facing=south,in_wall=false,open=true,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence_gate[facing=south,in_wall=false,open=false,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence_gate[facing=south,in_wall=false,open=false,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence_gate[facing=west,in_wall=true,open=true,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence_gate[facing=west,in_wall=true,open=true,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence_gate[facing=west,in_wall=true,open=false,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence_gate[facing=west,in_wall=true,open=false,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence_gate[facing=west,in_wall=false,open=true,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence_gate[facing=west,in_wall=false,open=true,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence_gate[facing=west,in_wall=false,open=false,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence_gate[facing=west,in_wall=false,open=false,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence_gate[facing=east,in_wall=true,open=true,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence_gate[facing=east,in_wall=true,open=true,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence_gate[facing=east,in_wall=true,open=false,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence_gate[facing=east,in_wall=true,open=false,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence_gate[facing=east,in_wall=false,open=true,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence_gate[facing=east,in_wall=false,open=true,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence_gate[facing=east,in_wall=false,open=false,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_fence_gate[facing=east,in_wall=false,open=false,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:warped_fence_gate 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence_gate[facing=north,in_wall=true,open=true,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence_gate[facing=north,in_wall=true,open=false,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence_gate[facing=north,in_wall=true,open=false,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence_gate[facing=north,in_wall=false,open=true,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence_gate[facing=north,in_wall=false,open=true,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence_gate[facing=north,in_wall=false,open=false,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence_gate[facing=north,in_wall=false,open=false,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence_gate[facing=south,in_wall=true,open=true,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence_gate[facing=south,in_wall=true,open=true,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence_gate[facing=south,in_wall=true,open=false,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence_gate[facing=south,in_wall=true,open=false,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence_gate[facing=south,in_wall=false,open=true,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence_gate[facing=south,in_wall=false,open=true,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence_gate[facing=south,in_wall=false,open=false,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence_gate[facing=south,in_wall=false,open=false,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence_gate[facing=west,in_wall=true,open=true,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence_gate[facing=west,in_wall=true,open=true,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence_gate[facing=west,in_wall=true,open=false,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence_gate[facing=west,in_wall=true,open=false,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence_gate[facing=west,in_wall=false,open=true,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence_gate[facing=west,in_wall=false,open=true,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence_gate[facing=west,in_wall=false,open=false,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence_gate[facing=west,in_wall=false,open=false,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence_gate[facing=east,in_wall=true,open=true,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence_gate[facing=east,in_wall=true,open=true,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence_gate[facing=east,in_wall=true,open=false,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence_gate[facing=east,in_wall=true,open=false,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence_gate[facing=east,in_wall=false,open=true,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence_gate[facing=east,in_wall=false,open=true,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence_gate[facing=east,in_wall=false,open=false,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_fence_gate[facing=east,in_wall=false,open=false,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:crimson_stairs 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=north,half=top,shape=straight,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=south,half=top,shape=straight,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=south,half=top,shape=straight,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=west,half=top,shape=straight,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=west,half=top,shape=straight,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=east,half=top,shape=straight,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=east,half=top,shape=straight,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:warped_stairs 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=north,half=top,shape=straight,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=south,half=top,shape=straight,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=south,half=top,shape=straight,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=west,half=top,shape=straight,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=west,half=top,shape=straight,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=east,half=top,shape=straight,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=east,half=top,shape=straight,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:crimson_button 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_button[face=floor,facing=north,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_button[face=floor,facing=south,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_button[face=floor,facing=south,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_button[face=floor,facing=west,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_button[face=floor,facing=west,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_button[face=floor,facing=east,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_button[face=floor,facing=east,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_button[face=wall,facing=north,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_button[face=wall,facing=north,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_button[face=wall,facing=south,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_button[face=wall,facing=south,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_button[face=wall,facing=west,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_button[face=wall,facing=west,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_button[face=wall,facing=east,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_button[face=wall,facing=east,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_button[face=ceiling,facing=north,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_button[face=ceiling,facing=north,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_button[face=ceiling,facing=south,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_button[face=ceiling,facing=south,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_button[face=ceiling,facing=west,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_button[face=ceiling,facing=west,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_button[face=ceiling,facing=east,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:crimson_button[face=ceiling,facing=east,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 -minecraft:warped_button 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_button[face=floor,facing=north,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_button[face=floor,facing=south,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_button[face=floor,facing=south,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_button[face=floor,facing=west,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_button[face=floor,facing=west,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_button[face=floor,facing=east,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_button[face=floor,facing=east,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_button[face=wall,facing=north,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_button[face=wall,facing=north,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_button[face=wall,facing=south,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_button[face=wall,facing=south,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_button[face=wall,facing=west,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_button[face=wall,facing=west,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_button[face=wall,facing=east,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_button[face=wall,facing=east,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_button[face=ceiling,facing=north,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_button[face=ceiling,facing=north,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_button[face=ceiling,facing=south,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_button[face=ceiling,facing=south,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_button[face=ceiling,facing=west,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_button[face=ceiling,facing=west,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_button[face=ceiling,facing=east,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 -minecraft:warped_button[face=ceiling,facing=east,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:crimson_fence_gate 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence_gate[facing=north,in_wall=true,open=true,powered=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence_gate[facing=north,in_wall=true,open=false,powered=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence_gate[facing=north,in_wall=true,open=false,powered=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence_gate[facing=north,in_wall=false,open=true,powered=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence_gate[facing=north,in_wall=false,open=true,powered=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence_gate[facing=north,in_wall=false,open=false,powered=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence_gate[facing=north,in_wall=false,open=false,powered=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence_gate[facing=south,in_wall=true,open=true,powered=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence_gate[facing=south,in_wall=true,open=true,powered=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence_gate[facing=south,in_wall=true,open=false,powered=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence_gate[facing=south,in_wall=true,open=false,powered=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence_gate[facing=south,in_wall=false,open=true,powered=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence_gate[facing=south,in_wall=false,open=true,powered=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence_gate[facing=south,in_wall=false,open=false,powered=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence_gate[facing=south,in_wall=false,open=false,powered=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence_gate[facing=west,in_wall=true,open=true,powered=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence_gate[facing=west,in_wall=true,open=true,powered=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence_gate[facing=west,in_wall=true,open=false,powered=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence_gate[facing=west,in_wall=true,open=false,powered=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence_gate[facing=west,in_wall=false,open=true,powered=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence_gate[facing=west,in_wall=false,open=true,powered=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence_gate[facing=west,in_wall=false,open=false,powered=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence_gate[facing=west,in_wall=false,open=false,powered=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence_gate[facing=east,in_wall=true,open=true,powered=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence_gate[facing=east,in_wall=true,open=true,powered=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence_gate[facing=east,in_wall=true,open=false,powered=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence_gate[facing=east,in_wall=true,open=false,powered=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence_gate[facing=east,in_wall=false,open=true,powered=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence_gate[facing=east,in_wall=false,open=true,powered=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence_gate[facing=east,in_wall=false,open=false,powered=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_fence_gate[facing=east,in_wall=false,open=false,powered=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:warped_fence_gate 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence_gate[facing=north,in_wall=true,open=true,powered=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence_gate[facing=north,in_wall=true,open=false,powered=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence_gate[facing=north,in_wall=true,open=false,powered=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence_gate[facing=north,in_wall=false,open=true,powered=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence_gate[facing=north,in_wall=false,open=true,powered=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence_gate[facing=north,in_wall=false,open=false,powered=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence_gate[facing=north,in_wall=false,open=false,powered=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence_gate[facing=south,in_wall=true,open=true,powered=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence_gate[facing=south,in_wall=true,open=true,powered=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence_gate[facing=south,in_wall=true,open=false,powered=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence_gate[facing=south,in_wall=true,open=false,powered=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence_gate[facing=south,in_wall=false,open=true,powered=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence_gate[facing=south,in_wall=false,open=true,powered=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence_gate[facing=south,in_wall=false,open=false,powered=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence_gate[facing=south,in_wall=false,open=false,powered=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence_gate[facing=west,in_wall=true,open=true,powered=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence_gate[facing=west,in_wall=true,open=true,powered=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence_gate[facing=west,in_wall=true,open=false,powered=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence_gate[facing=west,in_wall=true,open=false,powered=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence_gate[facing=west,in_wall=false,open=true,powered=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence_gate[facing=west,in_wall=false,open=true,powered=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence_gate[facing=west,in_wall=false,open=false,powered=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence_gate[facing=west,in_wall=false,open=false,powered=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence_gate[facing=east,in_wall=true,open=true,powered=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence_gate[facing=east,in_wall=true,open=true,powered=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence_gate[facing=east,in_wall=true,open=false,powered=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence_gate[facing=east,in_wall=true,open=false,powered=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence_gate[facing=east,in_wall=false,open=true,powered=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence_gate[facing=east,in_wall=false,open=true,powered=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence_gate[facing=east,in_wall=false,open=false,powered=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_fence_gate[facing=east,in_wall=false,open=false,powered=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:crimson_stairs 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=north,half=top,shape=straight,waterlogged=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=south,half=top,shape=straight,waterlogged=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=south,half=top,shape=straight,waterlogged=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=west,half=top,shape=straight,waterlogged=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=west,half=top,shape=straight,waterlogged=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=east,half=top,shape=straight,waterlogged=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=east,half=top,shape=straight,waterlogged=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:warped_stairs 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=north,half=top,shape=straight,waterlogged=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=south,half=top,shape=straight,waterlogged=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=south,half=top,shape=straight,waterlogged=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=west,half=top,shape=straight,waterlogged=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=west,half=top,shape=straight,waterlogged=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=east,half=top,shape=straight,waterlogged=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=east,half=top,shape=straight,waterlogged=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:crimson_button 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_button[face=floor,facing=north,powered=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_button[face=floor,facing=south,powered=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_button[face=floor,facing=south,powered=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_button[face=floor,facing=west,powered=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_button[face=floor,facing=west,powered=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_button[face=floor,facing=east,powered=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_button[face=floor,facing=east,powered=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_button[face=wall,facing=north,powered=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_button[face=wall,facing=north,powered=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_button[face=wall,facing=south,powered=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_button[face=wall,facing=south,powered=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_button[face=wall,facing=west,powered=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_button[face=wall,facing=west,powered=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_button[face=wall,facing=east,powered=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_button[face=wall,facing=east,powered=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_button[face=ceiling,facing=north,powered=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_button[face=ceiling,facing=north,powered=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_button[face=ceiling,facing=south,powered=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_button[face=ceiling,facing=south,powered=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_button[face=ceiling,facing=west,powered=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_button[face=ceiling,facing=west,powered=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_button[face=ceiling,facing=east,powered=true] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:crimson_button[face=ceiling,facing=east,powered=false] 75 27 48 255 60 21 38 255 37 13 24 255 30 10 19 255 +minecraft:warped_button 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_button[face=floor,facing=north,powered=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_button[face=floor,facing=south,powered=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_button[face=floor,facing=south,powered=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_button[face=floor,facing=west,powered=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_button[face=floor,facing=west,powered=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_button[face=floor,facing=east,powered=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_button[face=floor,facing=east,powered=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_button[face=wall,facing=north,powered=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_button[face=wall,facing=north,powered=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_button[face=wall,facing=south,powered=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_button[face=wall,facing=south,powered=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_button[face=wall,facing=west,powered=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_button[face=wall,facing=west,powered=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_button[face=wall,facing=east,powered=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_button[face=wall,facing=east,powered=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_button[face=ceiling,facing=north,powered=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_button[face=ceiling,facing=north,powered=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_button[face=ceiling,facing=south,powered=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_button[face=ceiling,facing=south,powered=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_button[face=ceiling,facing=west,powered=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_button[face=ceiling,facing=west,powered=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_button[face=ceiling,facing=east,powered=true] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 +minecraft:warped_button[face=ceiling,facing=east,powered=false] 21 72 62 255 16 57 49 255 10 36 31 255 8 28 24 255 minecraft:crimson_door 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 minecraft:crimson_door[facing=north,half=upper,hinge=left,open=true,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 minecraft:crimson_door[facing=north,half=upper,hinge=left,open=false,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 @@ -15453,111 +15466,111 @@ minecraft:warped_door[facing=east,half=lower,hinge=right,open=true,powered=true] minecraft:warped_door[facing=east,half=lower,hinge=right,open=true,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 minecraft:warped_door[facing=east,half=lower,hinge=right,open=false,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 minecraft:warped_door[facing=east,half=lower,hinge=right,open=false,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 -minecraft:crimson_sign 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 -minecraft:crimson_sign[rotation=0,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 -minecraft:crimson_sign[rotation=1,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 -minecraft:crimson_sign[rotation=1,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 -minecraft:crimson_sign[rotation=2,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 -minecraft:crimson_sign[rotation=2,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 -minecraft:crimson_sign[rotation=3,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 -minecraft:crimson_sign[rotation=3,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 -minecraft:crimson_sign[rotation=4,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 -minecraft:crimson_sign[rotation=4,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 -minecraft:crimson_sign[rotation=5,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 -minecraft:crimson_sign[rotation=5,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 -minecraft:crimson_sign[rotation=6,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 -minecraft:crimson_sign[rotation=6,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 -minecraft:crimson_sign[rotation=7,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 -minecraft:crimson_sign[rotation=7,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 -minecraft:crimson_sign[rotation=8,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 -minecraft:crimson_sign[rotation=8,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 -minecraft:crimson_sign[rotation=9,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 -minecraft:crimson_sign[rotation=9,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 -minecraft:crimson_sign[rotation=10,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 -minecraft:crimson_sign[rotation=10,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 -minecraft:crimson_sign[rotation=11,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 -minecraft:crimson_sign[rotation=11,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 -minecraft:crimson_sign[rotation=12,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 -minecraft:crimson_sign[rotation=12,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 -minecraft:crimson_sign[rotation=13,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 -minecraft:crimson_sign[rotation=13,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 -minecraft:crimson_sign[rotation=14,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 -minecraft:crimson_sign[rotation=14,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 -minecraft:crimson_sign[rotation=15,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 -minecraft:crimson_sign[rotation=15,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 -minecraft:warped_sign 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 -minecraft:warped_sign[rotation=0,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 -minecraft:warped_sign[rotation=1,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 -minecraft:warped_sign[rotation=1,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 -minecraft:warped_sign[rotation=2,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 -minecraft:warped_sign[rotation=2,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 -minecraft:warped_sign[rotation=3,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 -minecraft:warped_sign[rotation=3,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 -minecraft:warped_sign[rotation=4,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 -minecraft:warped_sign[rotation=4,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 -minecraft:warped_sign[rotation=5,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 -minecraft:warped_sign[rotation=5,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 -minecraft:warped_sign[rotation=6,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 -minecraft:warped_sign[rotation=6,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 -minecraft:warped_sign[rotation=7,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 -minecraft:warped_sign[rotation=7,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 -minecraft:warped_sign[rotation=8,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 -minecraft:warped_sign[rotation=8,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 -minecraft:warped_sign[rotation=9,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 -minecraft:warped_sign[rotation=9,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 -minecraft:warped_sign[rotation=10,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 -minecraft:warped_sign[rotation=10,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 -minecraft:warped_sign[rotation=11,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 -minecraft:warped_sign[rotation=11,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 -minecraft:warped_sign[rotation=12,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 -minecraft:warped_sign[rotation=12,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 -minecraft:warped_sign[rotation=13,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 -minecraft:warped_sign[rotation=13,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 -minecraft:warped_sign[rotation=14,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 -minecraft:warped_sign[rotation=14,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 -minecraft:warped_sign[rotation=15,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 -minecraft:warped_sign[rotation=15,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 -minecraft:crimson_wall_sign 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 -minecraft:crimson_wall_sign[facing=north,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 -minecraft:crimson_wall_sign[facing=south,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 -minecraft:crimson_wall_sign[facing=south,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 -minecraft:crimson_wall_sign[facing=west,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 -minecraft:crimson_wall_sign[facing=west,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 -minecraft:crimson_wall_sign[facing=east,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 -minecraft:crimson_wall_sign[facing=east,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 -minecraft:warped_wall_sign 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 -minecraft:warped_wall_sign[facing=north,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 -minecraft:warped_wall_sign[facing=south,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 -minecraft:warped_wall_sign[facing=south,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 -minecraft:warped_wall_sign[facing=west,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 -minecraft:warped_wall_sign[facing=west,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 -minecraft:warped_wall_sign[facing=east,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 -minecraft:warped_wall_sign[facing=east,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 -minecraft:structure_block 60 72 96 255 48 57 76 255 30 36 48 255 24 28 38 255 -minecraft:structure_block[mode=load] 61 73 96 255 48 58 76 255 30 36 48 255 24 29 38 255 -minecraft:structure_block[mode=corner] 62 70 88 255 49 56 70 255 31 35 44 255 24 28 35 255 -minecraft:structure_block[mode=data] 66 75 94 255 52 60 75 255 33 37 47 255 26 30 37 255 -minecraft:jigsaw 96 85 59 255 76 68 47 255 48 42 29 255 38 34 23 255 -minecraft:jigsaw[orientation=down_north] 96 85 59 255 76 68 47 255 48 42 29 255 38 34 23 255 -minecraft:jigsaw[orientation=down_south] 96 85 59 255 76 68 47 255 48 42 29 255 38 34 23 255 -minecraft:jigsaw[orientation=down_west] 96 85 59 255 76 68 47 255 48 42 29 255 38 34 23 255 -minecraft:jigsaw[orientation=up_east] 96 85 59 255 76 68 47 255 48 42 29 255 38 34 23 255 -minecraft:jigsaw[orientation=up_north] 96 85 59 255 76 68 47 255 48 42 29 255 38 34 23 255 -minecraft:jigsaw[orientation=up_south] 96 85 59 255 76 68 47 255 48 42 29 255 38 34 23 255 -minecraft:jigsaw[orientation=up_west] 96 85 59 255 76 68 47 255 48 42 29 255 38 34 23 255 -minecraft:jigsaw[orientation=west_up] 96 85 59 255 76 68 47 255 48 42 29 255 38 34 23 255 -minecraft:jigsaw[orientation=east_up] 96 85 59 255 76 68 47 255 48 42 29 255 38 34 23 255 -minecraft:jigsaw[orientation=north_up] 96 85 59 255 76 68 47 255 48 42 29 255 38 34 23 255 -minecraft:jigsaw[orientation=south_up] 96 85 59 255 76 68 47 255 48 42 29 255 38 34 23 255 -minecraft:composter 50 41 33 111 40 32 26 111 25 20 16 111 20 16 13 111 -minecraft:composter[level=1] 50 41 33 111 40 32 26 111 25 20 16 111 20 16 13 111 -minecraft:composter[level=2] 50 41 33 111 40 32 26 111 25 20 16 111 20 16 13 111 -minecraft:composter[level=3] 50 41 33 111 40 32 26 111 25 20 16 111 20 16 13 111 -minecraft:composter[level=4] 50 41 33 111 40 32 26 111 25 20 16 111 20 16 13 111 -minecraft:composter[level=5] 50 41 33 111 40 32 26 111 25 20 16 111 20 16 13 111 -minecraft:composter[level=6] 50 41 33 111 40 32 26 111 25 20 16 111 20 16 13 111 -minecraft:composter[level=7] 50 41 33 111 40 32 26 111 25 20 16 111 20 16 13 111 -minecraft:composter[level=8] 50 41 33 111 40 32 26 111 25 20 16 111 20 16 13 111 +minecraft:crimson_sign 94 35 60 10 75 28 48 10 47 17 30 10 37 14 24 10 +minecraft:crimson_sign[rotation=0,waterlogged=false] 94 35 60 10 75 28 48 10 47 17 30 10 37 14 24 10 +minecraft:crimson_sign[rotation=1,waterlogged=true] 94 35 60 10 75 28 48 10 47 17 30 10 37 14 24 10 +minecraft:crimson_sign[rotation=1,waterlogged=false] 94 35 60 10 75 28 48 10 47 17 30 10 37 14 24 10 +minecraft:crimson_sign[rotation=2,waterlogged=true] 94 35 60 10 75 28 48 10 47 17 30 10 37 14 24 10 +minecraft:crimson_sign[rotation=2,waterlogged=false] 94 35 60 10 75 28 48 10 47 17 30 10 37 14 24 10 +minecraft:crimson_sign[rotation=3,waterlogged=true] 94 35 60 10 75 28 48 10 47 17 30 10 37 14 24 10 +minecraft:crimson_sign[rotation=3,waterlogged=false] 94 35 60 10 75 28 48 10 47 17 30 10 37 14 24 10 +minecraft:crimson_sign[rotation=4,waterlogged=true] 94 35 60 10 75 28 48 10 47 17 30 10 37 14 24 10 +minecraft:crimson_sign[rotation=4,waterlogged=false] 94 35 60 10 75 28 48 10 47 17 30 10 37 14 24 10 +minecraft:crimson_sign[rotation=5,waterlogged=true] 94 35 60 10 75 28 48 10 47 17 30 10 37 14 24 10 +minecraft:crimson_sign[rotation=5,waterlogged=false] 94 35 60 10 75 28 48 10 47 17 30 10 37 14 24 10 +minecraft:crimson_sign[rotation=6,waterlogged=true] 94 35 60 10 75 28 48 10 47 17 30 10 37 14 24 10 +minecraft:crimson_sign[rotation=6,waterlogged=false] 94 35 60 10 75 28 48 10 47 17 30 10 37 14 24 10 +minecraft:crimson_sign[rotation=7,waterlogged=true] 94 35 60 10 75 28 48 10 47 17 30 10 37 14 24 10 +minecraft:crimson_sign[rotation=7,waterlogged=false] 94 35 60 10 75 28 48 10 47 17 30 10 37 14 24 10 +minecraft:crimson_sign[rotation=8,waterlogged=true] 94 35 60 10 75 28 48 10 47 17 30 10 37 14 24 10 +minecraft:crimson_sign[rotation=8,waterlogged=false] 94 35 60 10 75 28 48 10 47 17 30 10 37 14 24 10 +minecraft:crimson_sign[rotation=9,waterlogged=true] 94 35 60 10 75 28 48 10 47 17 30 10 37 14 24 10 +minecraft:crimson_sign[rotation=9,waterlogged=false] 94 35 60 10 75 28 48 10 47 17 30 10 37 14 24 10 +minecraft:crimson_sign[rotation=10,waterlogged=true] 94 35 60 10 75 28 48 10 47 17 30 10 37 14 24 10 +minecraft:crimson_sign[rotation=10,waterlogged=false] 94 35 60 10 75 28 48 10 47 17 30 10 37 14 24 10 +minecraft:crimson_sign[rotation=11,waterlogged=true] 94 35 60 10 75 28 48 10 47 17 30 10 37 14 24 10 +minecraft:crimson_sign[rotation=11,waterlogged=false] 94 35 60 10 75 28 48 10 47 17 30 10 37 14 24 10 +minecraft:crimson_sign[rotation=12,waterlogged=true] 94 35 60 10 75 28 48 10 47 17 30 10 37 14 24 10 +minecraft:crimson_sign[rotation=12,waterlogged=false] 94 35 60 10 75 28 48 10 47 17 30 10 37 14 24 10 +minecraft:crimson_sign[rotation=13,waterlogged=true] 94 35 60 10 75 28 48 10 47 17 30 10 37 14 24 10 +minecraft:crimson_sign[rotation=13,waterlogged=false] 94 35 60 10 75 28 48 10 47 17 30 10 37 14 24 10 +minecraft:crimson_sign[rotation=14,waterlogged=true] 94 35 60 10 75 28 48 10 47 17 30 10 37 14 24 10 +minecraft:crimson_sign[rotation=14,waterlogged=false] 94 35 60 10 75 28 48 10 47 17 30 10 37 14 24 10 +minecraft:crimson_sign[rotation=15,waterlogged=true] 94 35 60 10 75 28 48 10 47 17 30 10 37 14 24 10 +minecraft:crimson_sign[rotation=15,waterlogged=false] 94 35 60 10 75 28 48 10 47 17 30 10 37 14 24 10 +minecraft:warped_sign 26 91 78 10 20 72 62 10 13 45 39 10 10 36 31 10 +minecraft:warped_sign[rotation=0,waterlogged=false] 26 91 78 10 20 72 62 10 13 45 39 10 10 36 31 10 +minecraft:warped_sign[rotation=1,waterlogged=true] 26 91 78 10 20 72 62 10 13 45 39 10 10 36 31 10 +minecraft:warped_sign[rotation=1,waterlogged=false] 26 91 78 10 20 72 62 10 13 45 39 10 10 36 31 10 +minecraft:warped_sign[rotation=2,waterlogged=true] 26 91 78 10 20 72 62 10 13 45 39 10 10 36 31 10 +minecraft:warped_sign[rotation=2,waterlogged=false] 26 91 78 10 20 72 62 10 13 45 39 10 10 36 31 10 +minecraft:warped_sign[rotation=3,waterlogged=true] 26 91 78 10 20 72 62 10 13 45 39 10 10 36 31 10 +minecraft:warped_sign[rotation=3,waterlogged=false] 26 91 78 10 20 72 62 10 13 45 39 10 10 36 31 10 +minecraft:warped_sign[rotation=4,waterlogged=true] 26 91 78 10 20 72 62 10 13 45 39 10 10 36 31 10 +minecraft:warped_sign[rotation=4,waterlogged=false] 26 91 78 10 20 72 62 10 13 45 39 10 10 36 31 10 +minecraft:warped_sign[rotation=5,waterlogged=true] 26 91 78 10 20 72 62 10 13 45 39 10 10 36 31 10 +minecraft:warped_sign[rotation=5,waterlogged=false] 26 91 78 10 20 72 62 10 13 45 39 10 10 36 31 10 +minecraft:warped_sign[rotation=6,waterlogged=true] 26 91 78 10 20 72 62 10 13 45 39 10 10 36 31 10 +minecraft:warped_sign[rotation=6,waterlogged=false] 26 91 78 10 20 72 62 10 13 45 39 10 10 36 31 10 +minecraft:warped_sign[rotation=7,waterlogged=true] 26 91 78 10 20 72 62 10 13 45 39 10 10 36 31 10 +minecraft:warped_sign[rotation=7,waterlogged=false] 26 91 78 10 20 72 62 10 13 45 39 10 10 36 31 10 +minecraft:warped_sign[rotation=8,waterlogged=true] 26 91 78 10 20 72 62 10 13 45 39 10 10 36 31 10 +minecraft:warped_sign[rotation=8,waterlogged=false] 26 91 78 10 20 72 62 10 13 45 39 10 10 36 31 10 +minecraft:warped_sign[rotation=9,waterlogged=true] 26 91 78 10 20 72 62 10 13 45 39 10 10 36 31 10 +minecraft:warped_sign[rotation=9,waterlogged=false] 26 91 78 10 20 72 62 10 13 45 39 10 10 36 31 10 +minecraft:warped_sign[rotation=10,waterlogged=true] 26 91 78 10 20 72 62 10 13 45 39 10 10 36 31 10 +minecraft:warped_sign[rotation=10,waterlogged=false] 26 91 78 10 20 72 62 10 13 45 39 10 10 36 31 10 +minecraft:warped_sign[rotation=11,waterlogged=true] 26 91 78 10 20 72 62 10 13 45 39 10 10 36 31 10 +minecraft:warped_sign[rotation=11,waterlogged=false] 26 91 78 10 20 72 62 10 13 45 39 10 10 36 31 10 +minecraft:warped_sign[rotation=12,waterlogged=true] 26 91 78 10 20 72 62 10 13 45 39 10 10 36 31 10 +minecraft:warped_sign[rotation=12,waterlogged=false] 26 91 78 10 20 72 62 10 13 45 39 10 10 36 31 10 +minecraft:warped_sign[rotation=13,waterlogged=true] 26 91 78 10 20 72 62 10 13 45 39 10 10 36 31 10 +minecraft:warped_sign[rotation=13,waterlogged=false] 26 91 78 10 20 72 62 10 13 45 39 10 10 36 31 10 +minecraft:warped_sign[rotation=14,waterlogged=true] 26 91 78 10 20 72 62 10 13 45 39 10 10 36 31 10 +minecraft:warped_sign[rotation=14,waterlogged=false] 26 91 78 10 20 72 62 10 13 45 39 10 10 36 31 10 +minecraft:warped_sign[rotation=15,waterlogged=true] 26 91 78 10 20 72 62 10 13 45 39 10 10 36 31 10 +minecraft:warped_sign[rotation=15,waterlogged=false] 26 91 78 10 20 72 62 10 13 45 39 10 10 36 31 10 +minecraft:crimson_wall_sign 94 35 60 10 75 28 48 10 47 17 30 10 37 14 24 10 +minecraft:crimson_wall_sign[facing=north,waterlogged=false] 94 35 60 10 75 28 48 10 47 17 30 10 37 14 24 10 +minecraft:crimson_wall_sign[facing=south,waterlogged=true] 94 35 60 10 75 28 48 10 47 17 30 10 37 14 24 10 +minecraft:crimson_wall_sign[facing=south,waterlogged=false] 94 35 60 10 75 28 48 10 47 17 30 10 37 14 24 10 +minecraft:crimson_wall_sign[facing=west,waterlogged=true] 94 35 60 10 75 28 48 10 47 17 30 10 37 14 24 10 +minecraft:crimson_wall_sign[facing=west,waterlogged=false] 94 35 60 10 75 28 48 10 47 17 30 10 37 14 24 10 +minecraft:crimson_wall_sign[facing=east,waterlogged=true] 94 35 60 10 75 28 48 10 47 17 30 10 37 14 24 10 +minecraft:crimson_wall_sign[facing=east,waterlogged=false] 94 35 60 10 75 28 48 10 47 17 30 10 37 14 24 10 +minecraft:warped_wall_sign 26 91 78 10 20 72 62 10 13 45 39 10 10 36 31 10 +minecraft:warped_wall_sign[facing=north,waterlogged=false] 26 91 78 10 20 72 62 10 13 45 39 10 10 36 31 10 +minecraft:warped_wall_sign[facing=south,waterlogged=true] 26 91 78 10 20 72 62 10 13 45 39 10 10 36 31 10 +minecraft:warped_wall_sign[facing=south,waterlogged=false] 26 91 78 10 20 72 62 10 13 45 39 10 10 36 31 10 +minecraft:warped_wall_sign[facing=west,waterlogged=true] 26 91 78 10 20 72 62 10 13 45 39 10 10 36 31 10 +minecraft:warped_wall_sign[facing=west,waterlogged=false] 26 91 78 10 20 72 62 10 13 45 39 10 10 36 31 10 +minecraft:warped_wall_sign[facing=east,waterlogged=true] 26 91 78 10 20 72 62 10 13 45 39 10 10 36 31 10 +minecraft:warped_wall_sign[facing=east,waterlogged=false] 26 91 78 10 20 72 62 10 13 45 39 10 10 36 31 10 +minecraft:structure_block 60 72 96 254 48 57 76 254 30 36 48 254 24 28 38 254 +minecraft:structure_block[mode=load] 61 73 96 254 48 58 76 254 30 36 48 254 24 29 38 254 +minecraft:structure_block[mode=corner] 62 70 88 254 49 56 70 254 31 35 44 254 24 28 35 254 +minecraft:structure_block[mode=data] 66 75 94 254 52 60 75 254 33 37 47 254 26 30 37 254 +minecraft:jigsaw 96 85 59 254 76 68 47 254 48 42 29 254 38 34 23 254 +minecraft:jigsaw[orientation=down_north] 96 85 59 254 76 68 47 254 48 42 29 254 38 34 23 254 +minecraft:jigsaw[orientation=down_south] 96 85 59 254 76 68 47 254 48 42 29 254 38 34 23 254 +minecraft:jigsaw[orientation=down_west] 96 85 59 254 76 68 47 254 48 42 29 254 38 34 23 254 +minecraft:jigsaw[orientation=up_east] 96 85 59 254 76 68 47 254 48 42 29 254 38 34 23 254 +minecraft:jigsaw[orientation=up_north] 96 85 59 254 76 68 47 254 48 42 29 254 38 34 23 254 +minecraft:jigsaw[orientation=up_south] 96 85 59 254 76 68 47 254 48 42 29 254 38 34 23 254 +minecraft:jigsaw[orientation=up_west] 96 85 59 254 76 68 47 254 48 42 29 254 38 34 23 254 +minecraft:jigsaw[orientation=west_up] 96 85 59 254 76 68 47 254 48 42 29 254 38 34 23 254 +minecraft:jigsaw[orientation=east_up] 96 85 59 254 76 68 47 254 48 42 29 254 38 34 23 254 +minecraft:jigsaw[orientation=north_up] 96 85 59 254 76 68 47 254 48 42 29 254 38 34 23 254 +minecraft:jigsaw[orientation=south_up] 96 85 59 254 76 68 47 254 48 42 29 254 38 34 23 254 +minecraft:composter 56 51 33 143 44 40 26 143 28 25 16 143 22 20 13 143 +minecraft:composter[level=1] 56 51 33 143 44 40 26 143 28 25 16 143 22 20 13 143 +minecraft:composter[level=2] 56 51 33 143 44 40 26 143 28 25 16 143 22 20 13 143 +minecraft:composter[level=3] 56 51 33 143 44 40 26 143 28 25 16 143 22 20 13 143 +minecraft:composter[level=4] 56 51 33 143 44 40 26 143 28 25 16 143 22 20 13 143 +minecraft:composter[level=5] 56 51 33 143 44 40 26 143 28 25 16 143 22 20 13 143 +minecraft:composter[level=6] 56 51 33 143 44 40 26 143 28 25 16 143 22 20 13 143 +minecraft:composter[level=7] 56 51 33 143 44 40 26 143 28 25 16 143 22 20 13 143 +minecraft:composter[level=8] 56 51 33 143 44 40 26 143 28 25 16 143 22 20 13 143 minecraft:target 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 minecraft:target[power=1] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 minecraft:target[power=2] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 @@ -15624,1556 +15637,1556 @@ minecraft:beehive[facing=east,honey_level=4] 75 60 39 255 60 48 31 255 37 30 19 minecraft:beehive[facing=east,honey_level=5] 75 60 39 255 60 48 31 255 37 30 19 255 30 24 15 255 minecraft:honey_block 238 174 56 153 190 139 44 153 119 87 28 153 95 69 22 153 minecraft:honeycomb_block 203 146 27 255 162 116 21 255 101 73 13 255 81 58 10 255 -minecraft:netherite_block 66 61 63 255 52 48 50 255 33 30 31 255 26 24 25 255 -minecraft:ancient_debris 94 66 58 255 75 52 46 255 47 33 29 255 37 26 23 255 -minecraft:crying_obsidian 32 10 60 255 25 8 48 255 16 5 30 255 12 4 24 255 -minecraft:respawn_anchor 33 21 52 255 26 16 41 255 16 10 26 255 13 8 20 255 -minecraft:respawn_anchor[charges=1] 75 27 144 219 60 21 115 219 37 13 72 219 30 10 57 219 -minecraft:respawn_anchor[charges=2] 75 27 144 219 60 21 115 219 37 13 72 219 30 10 57 219 -minecraft:respawn_anchor[charges=3] 75 27 144 219 60 21 115 219 37 13 72 219 30 10 57 219 -minecraft:respawn_anchor[charges=4] 75 27 144 219 60 21 115 219 37 13 72 219 30 10 57 219 +minecraft:netherite_block 54 48 43 255 43 38 34 255 27 24 21 255 21 19 17 255 +minecraft:ancient_debris 56 34 24 255 44 27 19 255 28 17 12 255 22 13 9 255 +minecraft:crying_obsidian 58 44 74 255 46 35 59 255 29 22 37 255 23 17 29 255 +minecraft:respawn_anchor 19 18 23 255 15 14 18 255 9 9 11 255 7 7 9 255 +minecraft:respawn_anchor[charges=1] 43 18 64 255 34 14 51 255 21 9 32 255 17 7 25 255 +minecraft:respawn_anchor[charges=2] 43 18 64 255 34 14 51 255 21 9 32 255 17 7 25 255 +minecraft:respawn_anchor[charges=3] 43 18 64 255 34 14 51 255 21 9 32 255 17 7 25 255 +minecraft:respawn_anchor[charges=4] 43 18 64 255 34 14 51 255 21 9 32 255 17 7 25 255 minecraft:potted_crimson_fungus 143 91 60 49 114 72 48 49 71 45 30 49 57 36 24 49 minecraft:potted_warped_fungus 143 91 60 49 114 72 48 49 71 45 30 49 57 36 24 49 minecraft:potted_crimson_roots 143 91 60 49 114 72 48 49 71 45 30 49 57 36 24 49 minecraft:potted_warped_roots 143 91 60 49 114 72 48 49 71 45 30 49 57 36 24 49 -minecraft:lodestone 147 149 152 255 117 119 121 255 73 74 76 255 58 59 60 255 -minecraft:blackstone 42 36 41 255 33 28 32 255 21 18 20 255 16 14 16 255 -minecraft:blackstone_stairs 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=north,half=top,shape=straight,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=south,half=top,shape=straight,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=south,half=top,shape=straight,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=west,half=top,shape=straight,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=west,half=top,shape=straight,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=east,half=top,shape=straight,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=east,half=top,shape=straight,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 -minecraft:blackstone_slab 42 36 41 255 33 28 32 255 21 18 20 255 16 14 16 255 -minecraft:blackstone_slab[type=top,waterlogged=false] 42 36 41 255 33 28 32 255 21 18 20 255 16 14 16 255 -minecraft:blackstone_slab[type=bottom,waterlogged=true] 42 36 41 255 33 28 32 255 21 18 20 255 16 14 16 255 -minecraft:blackstone_slab[type=bottom,waterlogged=false] 42 36 41 255 33 28 32 255 21 18 20 255 16 14 16 255 -minecraft:blackstone_slab[type=double,waterlogged=true] 42 36 41 255 33 28 32 255 21 18 20 255 16 14 16 255 -minecraft:blackstone_slab[type=double,waterlogged=false] 42 36 41 255 33 28 32 255 21 18 20 255 16 14 16 255 -minecraft:polished_blackstone 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_bricks 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:cracked_polished_blackstone_bricks 44 37 43 255 35 29 34 255 22 18 21 255 17 14 17 255 -minecraft:chiseled_polished_blackstone 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_brick_slab 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_slab[type=top,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_slab[type=bottom,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_slab[type=bottom,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_slab[type=double,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_slab[type=double,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 -minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:lodestone 72 78 72 255 57 62 57 255 36 39 36 255 28 31 28 255 +minecraft:blackstone 42 38 49 255 33 30 39 255 21 19 24 255 16 15 19 255 +minecraft:blackstone_stairs 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=north,half=top,shape=straight,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=south,half=top,shape=straight,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=south,half=top,shape=straight,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=west,half=top,shape=straight,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=west,half=top,shape=straight,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=east,half=top,shape=straight,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=east,half=top,shape=straight,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:blackstone_slab 42 38 49 255 33 30 39 255 21 19 24 255 16 15 19 255 +minecraft:blackstone_slab[type=top,waterlogged=false] 42 38 49 255 33 30 39 255 21 19 24 255 16 15 19 255 +minecraft:blackstone_slab[type=bottom,waterlogged=true] 42 38 49 255 33 30 39 255 21 19 24 255 16 15 19 255 +minecraft:blackstone_slab[type=bottom,waterlogged=false] 42 38 49 255 33 30 39 255 21 19 24 255 16 15 19 255 +minecraft:blackstone_slab[type=double,waterlogged=true] 42 38 49 255 33 30 39 255 21 19 24 255 16 15 19 255 +minecraft:blackstone_slab[type=double,waterlogged=false] 42 38 49 255 33 30 39 255 21 19 24 255 16 15 19 255 +minecraft:polished_blackstone 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_bricks 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:cracked_polished_blackstone_bricks 42 38 49 255 33 30 39 255 21 19 24 255 16 15 19 255 +minecraft:chiseled_polished_blackstone 43 39 50 255 34 31 40 255 21 19 25 255 17 15 20 255 +minecraft:polished_blackstone_brick_slab 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_slab[type=top,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_slab[type=bottom,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_slab[type=bottom,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_slab[type=double,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_slab[type=double,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 43 40 51 255 34 32 40 255 21 20 25 255 17 16 20 255 minecraft:gilded_blackstone 55 42 38 255 44 33 30 255 27 21 19 255 22 16 15 255 -minecraft:polished_blackstone_stairs 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=north,half=top,shape=straight,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=south,half=top,shape=straight,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=south,half=top,shape=straight,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=west,half=top,shape=straight,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=west,half=top,shape=straight,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=east,half=top,shape=straight,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=east,half=top,shape=straight,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_slab 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_slab[type=top,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_slab[type=bottom,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_slab[type=bottom,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_slab[type=double,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_slab[type=double,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_pressure_plate 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_pressure_plate[powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_button 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_button[face=floor,facing=north,powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_button[face=floor,facing=south,powered=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_button[face=floor,facing=south,powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_button[face=floor,facing=west,powered=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_button[face=floor,facing=west,powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_button[face=floor,facing=east,powered=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_button[face=floor,facing=east,powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_button[face=wall,facing=north,powered=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_button[face=wall,facing=north,powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_button[face=wall,facing=south,powered=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_button[face=wall,facing=south,powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_button[face=wall,facing=west,powered=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_button[face=wall,facing=west,powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_button[face=wall,facing=east,powered=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_button[face=wall,facing=east,powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_button[face=ceiling,facing=north,powered=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_button[face=ceiling,facing=north,powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_button[face=ceiling,facing=south,powered=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_button[face=ceiling,facing=south,powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_button[face=ceiling,facing=west,powered=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_button[face=ceiling,facing=west,powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_button[face=ceiling,facing=east,powered=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_button[face=ceiling,facing=east,powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 -minecraft:chiseled_nether_bricks 47 23 28 255 37 18 22 255 23 11 14 255 18 9 11 255 -minecraft:cracked_nether_bricks 40 20 23 255 32 16 18 255 20 10 11 255 16 8 9 255 -minecraft:quartz_bricks 234 229 221 255 187 183 176 255 117 114 110 255 93 91 88 255 -minecraft:candle 235 210 173 20 188 168 138 20 117 105 86 20 94 84 69 20 -minecraft:candle[candles=1,lit=true,waterlogged=false] 235 210 173 20 188 168 138 20 117 105 86 20 94 84 69 20 -minecraft:candle[candles=1,lit=false,waterlogged=true] 232 200 153 20 185 160 122 20 116 100 76 20 92 80 61 20 -minecraft:candle[candles=1,lit=false,waterlogged=false] 232 200 153 20 185 160 122 20 116 100 76 20 92 80 61 20 -minecraft:candle[candles=2,lit=true,waterlogged=true] 235 210 173 20 188 168 138 20 117 105 86 20 94 84 69 20 -minecraft:candle[candles=2,lit=true,waterlogged=false] 235 210 173 20 188 168 138 20 117 105 86 20 94 84 69 20 -minecraft:candle[candles=2,lit=false,waterlogged=true] 232 200 153 20 185 160 122 20 116 100 76 20 92 80 61 20 -minecraft:candle[candles=2,lit=false,waterlogged=false] 232 200 153 20 185 160 122 20 116 100 76 20 92 80 61 20 -minecraft:candle[candles=3,lit=true,waterlogged=true] 235 210 173 20 188 168 138 20 117 105 86 20 94 84 69 20 -minecraft:candle[candles=3,lit=true,waterlogged=false] 235 210 173 20 188 168 138 20 117 105 86 20 94 84 69 20 -minecraft:candle[candles=3,lit=false,waterlogged=true] 232 200 153 20 185 160 122 20 116 100 76 20 92 80 61 20 -minecraft:candle[candles=3,lit=false,waterlogged=false] 232 200 153 20 185 160 122 20 116 100 76 20 92 80 61 20 -minecraft:candle[candles=4,lit=true,waterlogged=true] 235 210 173 20 188 168 138 20 117 105 86 20 94 84 69 20 -minecraft:candle[candles=4,lit=true,waterlogged=false] 235 210 173 20 188 168 138 20 117 105 86 20 94 84 69 20 -minecraft:candle[candles=4,lit=false,waterlogged=true] 232 200 153 20 185 160 122 20 116 100 76 20 92 80 61 20 -minecraft:candle[candles=4,lit=false,waterlogged=false] 232 200 153 20 185 160 122 20 116 100 76 20 92 80 61 20 -minecraft:white_candle 217 217 206 20 173 173 164 20 108 108 103 20 86 86 82 20 -minecraft:white_candle[candles=1,lit=true,waterlogged=false] 217 217 206 20 173 173 164 20 108 108 103 20 86 86 82 20 -minecraft:white_candle[candles=1,lit=false,waterlogged=true] 210 216 217 20 168 172 173 20 105 108 108 20 84 86 86 20 -minecraft:white_candle[candles=1,lit=false,waterlogged=false] 210 216 217 20 168 172 173 20 105 108 108 20 84 86 86 20 -minecraft:white_candle[candles=2,lit=true,waterlogged=true] 217 217 206 20 173 173 164 20 108 108 103 20 86 86 82 20 -minecraft:white_candle[candles=2,lit=true,waterlogged=false] 217 217 206 20 173 173 164 20 108 108 103 20 86 86 82 20 -minecraft:white_candle[candles=2,lit=false,waterlogged=true] 210 216 217 20 168 172 173 20 105 108 108 20 84 86 86 20 -minecraft:white_candle[candles=2,lit=false,waterlogged=false] 210 216 217 20 168 172 173 20 105 108 108 20 84 86 86 20 -minecraft:white_candle[candles=3,lit=true,waterlogged=true] 217 217 206 20 173 173 164 20 108 108 103 20 86 86 82 20 -minecraft:white_candle[candles=3,lit=true,waterlogged=false] 217 217 206 20 173 173 164 20 108 108 103 20 86 86 82 20 -minecraft:white_candle[candles=3,lit=false,waterlogged=true] 210 216 217 20 168 172 173 20 105 108 108 20 84 86 86 20 -minecraft:white_candle[candles=3,lit=false,waterlogged=false] 210 216 217 20 168 172 173 20 105 108 108 20 84 86 86 20 -minecraft:white_candle[candles=4,lit=true,waterlogged=true] 217 217 206 20 173 173 164 20 108 108 103 20 86 86 82 20 -minecraft:white_candle[candles=4,lit=true,waterlogged=false] 217 217 206 20 173 173 164 20 108 108 103 20 86 86 82 20 -minecraft:white_candle[candles=4,lit=false,waterlogged=true] 210 216 217 20 168 172 173 20 105 108 108 20 84 86 86 20 -minecraft:white_candle[candles=4,lit=false,waterlogged=false] 210 216 217 20 168 172 173 20 105 108 108 20 84 86 86 20 -minecraft:orange_candle 226 131 26 20 180 104 20 20 113 65 13 20 90 52 10 20 -minecraft:orange_candle[candles=1,lit=true,waterlogged=false] 226 131 26 20 180 104 20 20 113 65 13 20 90 52 10 20 -minecraft:orange_candle[candles=1,lit=false,waterlogged=true] 219 100 9 20 175 80 7 20 109 50 4 20 87 40 3 20 -minecraft:orange_candle[candles=1,lit=false,waterlogged=false] 219 100 9 20 175 80 7 20 109 50 4 20 87 40 3 20 -minecraft:orange_candle[candles=2,lit=true,waterlogged=true] 226 131 26 20 180 104 20 20 113 65 13 20 90 52 10 20 -minecraft:orange_candle[candles=2,lit=true,waterlogged=false] 226 131 26 20 180 104 20 20 113 65 13 20 90 52 10 20 -minecraft:orange_candle[candles=2,lit=false,waterlogged=true] 219 100 9 20 175 80 7 20 109 50 4 20 87 40 3 20 -minecraft:orange_candle[candles=2,lit=false,waterlogged=false] 219 100 9 20 175 80 7 20 109 50 4 20 87 40 3 20 -minecraft:orange_candle[candles=3,lit=true,waterlogged=true] 226 131 26 20 180 104 20 20 113 65 13 20 90 52 10 20 -minecraft:orange_candle[candles=3,lit=true,waterlogged=false] 226 131 26 20 180 104 20 20 113 65 13 20 90 52 10 20 -minecraft:orange_candle[candles=3,lit=false,waterlogged=true] 219 100 9 20 175 80 7 20 109 50 4 20 87 40 3 20 -minecraft:orange_candle[candles=3,lit=false,waterlogged=false] 219 100 9 20 175 80 7 20 109 50 4 20 87 40 3 20 -minecraft:orange_candle[candles=4,lit=true,waterlogged=true] 226 131 26 20 180 104 20 20 113 65 13 20 90 52 10 20 -minecraft:orange_candle[candles=4,lit=true,waterlogged=false] 226 131 26 20 180 104 20 20 113 65 13 20 90 52 10 20 -minecraft:orange_candle[candles=4,lit=false,waterlogged=true] 219 100 9 20 175 80 7 20 109 50 4 20 87 40 3 20 -minecraft:orange_candle[candles=4,lit=false,waterlogged=false] 219 100 9 20 175 80 7 20 109 50 4 20 87 40 3 20 -minecraft:magenta_candle 182 69 161 20 145 55 128 20 91 34 80 20 72 27 64 20 -minecraft:magenta_candle[candles=1,lit=true,waterlogged=false] 182 69 161 20 145 55 128 20 91 34 80 20 72 27 64 20 -minecraft:magenta_candle[candles=1,lit=false,waterlogged=true] 160 45 153 20 128 36 122 20 80 22 76 20 64 18 61 20 -minecraft:magenta_candle[candles=1,lit=false,waterlogged=false] 160 45 153 20 128 36 122 20 80 22 76 20 64 18 61 20 -minecraft:magenta_candle[candles=2,lit=true,waterlogged=true] 182 69 161 20 145 55 128 20 91 34 80 20 72 27 64 20 -minecraft:magenta_candle[candles=2,lit=true,waterlogged=false] 182 69 161 20 145 55 128 20 91 34 80 20 72 27 64 20 -minecraft:magenta_candle[candles=2,lit=false,waterlogged=true] 160 45 153 20 128 36 122 20 80 22 76 20 64 18 61 20 -minecraft:magenta_candle[candles=2,lit=false,waterlogged=false] 160 45 153 20 128 36 122 20 80 22 76 20 64 18 61 20 -minecraft:magenta_candle[candles=3,lit=true,waterlogged=true] 182 69 161 20 145 55 128 20 91 34 80 20 72 27 64 20 -minecraft:magenta_candle[candles=3,lit=true,waterlogged=false] 182 69 161 20 145 55 128 20 91 34 80 20 72 27 64 20 -minecraft:magenta_candle[candles=3,lit=false,waterlogged=true] 160 45 153 20 128 36 122 20 80 22 76 20 64 18 61 20 -minecraft:magenta_candle[candles=3,lit=false,waterlogged=false] 160 45 153 20 128 36 122 20 80 22 76 20 64 18 61 20 -minecraft:magenta_candle[candles=4,lit=true,waterlogged=true] 182 69 161 20 145 55 128 20 91 34 80 20 72 27 64 20 -minecraft:magenta_candle[candles=4,lit=true,waterlogged=false] 182 69 161 20 145 55 128 20 91 34 80 20 72 27 64 20 -minecraft:magenta_candle[candles=4,lit=false,waterlogged=true] 160 45 153 20 128 36 122 20 80 22 76 20 64 18 61 20 -minecraft:magenta_candle[candles=4,lit=false,waterlogged=false] 160 45 153 20 128 36 122 20 80 22 76 20 64 18 61 20 -minecraft:light_blue_candle 69 161 201 20 55 128 160 20 34 80 100 20 27 64 80 20 -minecraft:light_blue_candle[candles=1,lit=true,waterlogged=false] 69 161 201 20 55 128 160 20 34 80 100 20 27 64 80 20 -minecraft:light_blue_candle[candles=1,lit=false,waterlogged=true] 34 137 196 20 27 109 156 20 17 68 98 20 13 54 78 20 -minecraft:light_blue_candle[candles=1,lit=false,waterlogged=false] 34 137 196 20 27 109 156 20 17 68 98 20 13 54 78 20 -minecraft:light_blue_candle[candles=2,lit=true,waterlogged=true] 69 161 201 20 55 128 160 20 34 80 100 20 27 64 80 20 -minecraft:light_blue_candle[candles=2,lit=true,waterlogged=false] 69 161 201 20 55 128 160 20 34 80 100 20 27 64 80 20 -minecraft:light_blue_candle[candles=2,lit=false,waterlogged=true] 34 137 196 20 27 109 156 20 17 68 98 20 13 54 78 20 -minecraft:light_blue_candle[candles=2,lit=false,waterlogged=false] 34 137 196 20 27 109 156 20 17 68 98 20 13 54 78 20 -minecraft:light_blue_candle[candles=3,lit=true,waterlogged=true] 69 161 201 20 55 128 160 20 34 80 100 20 27 64 80 20 -minecraft:light_blue_candle[candles=3,lit=true,waterlogged=false] 69 161 201 20 55 128 160 20 34 80 100 20 27 64 80 20 -minecraft:light_blue_candle[candles=3,lit=false,waterlogged=true] 34 137 196 20 27 109 156 20 17 68 98 20 13 54 78 20 -minecraft:light_blue_candle[candles=3,lit=false,waterlogged=false] 34 137 196 20 27 109 156 20 17 68 98 20 13 54 78 20 -minecraft:light_blue_candle[candles=4,lit=true,waterlogged=true] 69 161 201 20 55 128 160 20 34 80 100 20 27 64 80 20 -minecraft:light_blue_candle[candles=4,lit=true,waterlogged=false] 69 161 201 20 55 128 160 20 34 80 100 20 27 64 80 20 -minecraft:light_blue_candle[candles=4,lit=false,waterlogged=true] 34 137 196 20 27 109 156 20 17 68 98 20 13 54 78 20 -minecraft:light_blue_candle[candles=4,lit=false,waterlogged=false] 34 137 196 20 27 109 156 20 17 68 98 20 13 54 78 20 -minecraft:yellow_candle 216 183 74 20 172 146 59 20 108 91 37 20 86 73 29 20 -minecraft:yellow_candle[candles=1,lit=true,waterlogged=false] 216 183 74 20 172 146 59 20 108 91 37 20 86 73 29 20 -minecraft:yellow_candle[candles=1,lit=false,waterlogged=true] 209 164 50 20 167 131 40 20 104 82 25 20 83 65 20 20 -minecraft:yellow_candle[candles=1,lit=false,waterlogged=false] 209 164 50 20 167 131 40 20 104 82 25 20 83 65 20 20 -minecraft:yellow_candle[candles=2,lit=true,waterlogged=true] 216 183 74 20 172 146 59 20 108 91 37 20 86 73 29 20 -minecraft:yellow_candle[candles=2,lit=true,waterlogged=false] 216 183 74 20 172 146 59 20 108 91 37 20 86 73 29 20 -minecraft:yellow_candle[candles=2,lit=false,waterlogged=true] 209 164 50 20 167 131 40 20 104 82 25 20 83 65 20 20 -minecraft:yellow_candle[candles=2,lit=false,waterlogged=false] 209 164 50 20 167 131 40 20 104 82 25 20 83 65 20 20 -minecraft:yellow_candle[candles=3,lit=true,waterlogged=true] 216 183 74 20 172 146 59 20 108 91 37 20 86 73 29 20 -minecraft:yellow_candle[candles=3,lit=true,waterlogged=false] 216 183 74 20 172 146 59 20 108 91 37 20 86 73 29 20 -minecraft:yellow_candle[candles=3,lit=false,waterlogged=true] 209 164 50 20 167 131 40 20 104 82 25 20 83 65 20 20 -minecraft:yellow_candle[candles=3,lit=false,waterlogged=false] 209 164 50 20 167 131 40 20 104 82 25 20 83 65 20 20 -minecraft:yellow_candle[candles=4,lit=true,waterlogged=true] 216 183 74 20 172 146 59 20 108 91 37 20 86 73 29 20 -minecraft:yellow_candle[candles=4,lit=true,waterlogged=false] 216 183 74 20 172 146 59 20 108 91 37 20 86 73 29 20 -minecraft:yellow_candle[candles=4,lit=false,waterlogged=true] 209 164 50 20 167 131 40 20 104 82 25 20 83 65 20 20 -minecraft:yellow_candle[candles=4,lit=false,waterlogged=false] 209 164 50 20 167 131 40 20 104 82 25 20 83 65 20 20 -minecraft:lime_candle 124 181 30 20 99 144 24 20 62 90 15 20 49 72 12 20 -minecraft:lime_candle[candles=1,lit=true,waterlogged=false] 124 181 30 20 99 144 24 20 62 90 15 20 49 72 12 20 -minecraft:lime_candle[candles=1,lit=false,waterlogged=true] 98 171 22 20 78 136 17 20 49 85 11 20 39 68 8 20 -minecraft:lime_candle[candles=1,lit=false,waterlogged=false] 98 171 22 20 78 136 17 20 49 85 11 20 39 68 8 20 -minecraft:lime_candle[candles=2,lit=true,waterlogged=true] 124 181 30 20 99 144 24 20 62 90 15 20 49 72 12 20 -minecraft:lime_candle[candles=2,lit=true,waterlogged=false] 124 181 30 20 99 144 24 20 62 90 15 20 49 72 12 20 -minecraft:lime_candle[candles=2,lit=false,waterlogged=true] 98 171 22 20 78 136 17 20 49 85 11 20 39 68 8 20 -minecraft:lime_candle[candles=2,lit=false,waterlogged=false] 98 171 22 20 78 136 17 20 49 85 11 20 39 68 8 20 -minecraft:lime_candle[candles=3,lit=true,waterlogged=true] 124 181 30 20 99 144 24 20 62 90 15 20 49 72 12 20 -minecraft:lime_candle[candles=3,lit=true,waterlogged=false] 124 181 30 20 99 144 24 20 62 90 15 20 49 72 12 20 -minecraft:lime_candle[candles=3,lit=false,waterlogged=true] 98 171 22 20 78 136 17 20 49 85 11 20 39 68 8 20 -minecraft:lime_candle[candles=3,lit=false,waterlogged=false] 98 171 22 20 78 136 17 20 49 85 11 20 39 68 8 20 -minecraft:lime_candle[candles=4,lit=true,waterlogged=true] 124 181 30 20 99 144 24 20 62 90 15 20 49 72 12 20 -minecraft:lime_candle[candles=4,lit=true,waterlogged=false] 124 181 30 20 99 144 24 20 62 90 15 20 49 72 12 20 -minecraft:lime_candle[candles=4,lit=false,waterlogged=true] 98 171 22 20 78 136 17 20 49 85 11 20 39 68 8 20 -minecraft:lime_candle[candles=4,lit=false,waterlogged=false] 98 171 22 20 78 136 17 20 49 85 11 20 39 68 8 20 -minecraft:pink_candle 217 131 150 20 173 104 120 20 108 65 75 20 86 52 60 20 -minecraft:pink_candle[candles=1,lit=true,waterlogged=false] 217 131 150 20 173 104 120 20 108 65 75 20 86 52 60 20 -minecraft:pink_candle[candles=1,lit=false,waterlogged=true] 208 101 142 20 166 80 113 20 104 50 71 20 83 40 56 20 -minecraft:pink_candle[candles=1,lit=false,waterlogged=false] 208 101 142 20 166 80 113 20 104 50 71 20 83 40 56 20 -minecraft:pink_candle[candles=2,lit=true,waterlogged=true] 217 131 150 20 173 104 120 20 108 65 75 20 86 52 60 20 -minecraft:pink_candle[candles=2,lit=true,waterlogged=false] 217 131 150 20 173 104 120 20 108 65 75 20 86 52 60 20 -minecraft:pink_candle[candles=2,lit=false,waterlogged=true] 208 101 142 20 166 80 113 20 104 50 71 20 83 40 56 20 -minecraft:pink_candle[candles=2,lit=false,waterlogged=false] 208 101 142 20 166 80 113 20 104 50 71 20 83 40 56 20 -minecraft:pink_candle[candles=3,lit=true,waterlogged=true] 217 131 150 20 173 104 120 20 108 65 75 20 86 52 60 20 -minecraft:pink_candle[candles=3,lit=true,waterlogged=false] 217 131 150 20 173 104 120 20 108 65 75 20 86 52 60 20 -minecraft:pink_candle[candles=3,lit=false,waterlogged=true] 208 101 142 20 166 80 113 20 104 50 71 20 83 40 56 20 -minecraft:pink_candle[candles=3,lit=false,waterlogged=false] 208 101 142 20 166 80 113 20 104 50 71 20 83 40 56 20 -minecraft:pink_candle[candles=4,lit=true,waterlogged=true] 217 131 150 20 173 104 120 20 108 65 75 20 86 52 60 20 -minecraft:pink_candle[candles=4,lit=true,waterlogged=false] 217 131 150 20 173 104 120 20 108 65 75 20 86 52 60 20 -minecraft:pink_candle[candles=4,lit=false,waterlogged=true] 208 101 142 20 166 80 113 20 104 50 71 20 83 40 56 20 -minecraft:pink_candle[candles=4,lit=false,waterlogged=false] 208 101 142 20 166 80 113 20 104 50 71 20 83 40 56 20 -minecraft:gray_candle 118 122 108 20 94 97 86 20 59 61 54 20 47 48 43 20 -minecraft:gray_candle[candles=1,lit=true,waterlogged=false] 118 122 108 20 94 97 86 20 59 61 54 20 47 48 43 20 -minecraft:gray_candle[candles=1,lit=false,waterlogged=true] 80 94 96 20 64 75 76 20 40 47 48 20 32 37 38 20 -minecraft:gray_candle[candles=1,lit=false,waterlogged=false] 80 94 96 20 64 75 76 20 40 47 48 20 32 37 38 20 -minecraft:gray_candle[candles=2,lit=true,waterlogged=true] 118 122 108 20 94 97 86 20 59 61 54 20 47 48 43 20 -minecraft:gray_candle[candles=2,lit=true,waterlogged=false] 118 122 108 20 94 97 86 20 59 61 54 20 47 48 43 20 -minecraft:gray_candle[candles=2,lit=false,waterlogged=true] 80 94 96 20 64 75 76 20 40 47 48 20 32 37 38 20 -minecraft:gray_candle[candles=2,lit=false,waterlogged=false] 80 94 96 20 64 75 76 20 40 47 48 20 32 37 38 20 -minecraft:gray_candle[candles=3,lit=true,waterlogged=true] 118 122 108 20 94 97 86 20 59 61 54 20 47 48 43 20 -minecraft:gray_candle[candles=3,lit=true,waterlogged=false] 118 122 108 20 94 97 86 20 59 61 54 20 47 48 43 20 -minecraft:gray_candle[candles=3,lit=false,waterlogged=true] 80 94 96 20 64 75 76 20 40 47 48 20 32 37 38 20 -minecraft:gray_candle[candles=3,lit=false,waterlogged=false] 80 94 96 20 64 75 76 20 40 47 48 20 32 37 38 20 -minecraft:gray_candle[candles=4,lit=true,waterlogged=true] 118 122 108 20 94 97 86 20 59 61 54 20 47 48 43 20 -minecraft:gray_candle[candles=4,lit=true,waterlogged=false] 118 122 108 20 94 97 86 20 59 61 54 20 47 48 43 20 -minecraft:gray_candle[candles=4,lit=false,waterlogged=true] 80 94 96 20 64 75 76 20 40 47 48 20 32 37 38 20 -minecraft:gray_candle[candles=4,lit=false,waterlogged=false] 80 94 96 20 64 75 76 20 40 47 48 20 32 37 38 20 -minecraft:light_gray_candle 151 147 126 20 120 117 100 20 75 73 63 20 60 58 50 20 -minecraft:light_gray_candle[candles=1,lit=true,waterlogged=false] 151 147 126 20 120 117 100 20 75 73 63 20 60 58 50 20 -minecraft:light_gray_candle[candles=1,lit=false,waterlogged=true] 118 120 112 20 94 96 89 20 59 60 56 20 47 48 44 20 -minecraft:light_gray_candle[candles=1,lit=false,waterlogged=false] 118 120 112 20 94 96 89 20 59 60 56 20 47 48 44 20 -minecraft:light_gray_candle[candles=2,lit=true,waterlogged=true] 151 147 126 20 120 117 100 20 75 73 63 20 60 58 50 20 -minecraft:light_gray_candle[candles=2,lit=true,waterlogged=false] 151 147 126 20 120 117 100 20 75 73 63 20 60 58 50 20 -minecraft:light_gray_candle[candles=2,lit=false,waterlogged=true] 118 120 112 20 94 96 89 20 59 60 56 20 47 48 44 20 -minecraft:light_gray_candle[candles=2,lit=false,waterlogged=false] 118 120 112 20 94 96 89 20 59 60 56 20 47 48 44 20 -minecraft:light_gray_candle[candles=3,lit=true,waterlogged=true] 151 147 126 20 120 117 100 20 75 73 63 20 60 58 50 20 -minecraft:light_gray_candle[candles=3,lit=true,waterlogged=false] 151 147 126 20 120 117 100 20 75 73 63 20 60 58 50 20 -minecraft:light_gray_candle[candles=3,lit=false,waterlogged=true] 118 120 112 20 94 96 89 20 59 60 56 20 47 48 44 20 -minecraft:light_gray_candle[candles=3,lit=false,waterlogged=false] 118 120 112 20 94 96 89 20 59 60 56 20 47 48 44 20 -minecraft:light_gray_candle[candles=4,lit=true,waterlogged=true] 151 147 126 20 120 117 100 20 75 73 63 20 60 58 50 20 -minecraft:light_gray_candle[candles=4,lit=true,waterlogged=false] 151 147 126 20 120 117 100 20 75 73 63 20 60 58 50 20 -minecraft:light_gray_candle[candles=4,lit=false,waterlogged=true] 118 120 112 20 94 96 89 20 59 60 56 20 47 48 44 20 -minecraft:light_gray_candle[candles=4,lit=false,waterlogged=false] 118 120 112 20 94 96 89 20 59 60 56 20 47 48 44 20 -minecraft:cyan_candle 43 146 134 20 34 116 107 20 21 73 67 20 17 58 53 20 -minecraft:cyan_candle[candles=1,lit=true,waterlogged=false] 43 146 134 20 34 116 107 20 21 73 67 20 17 58 53 20 -minecraft:cyan_candle[candles=1,lit=false,waterlogged=true] 17 123 123 20 13 98 98 20 8 61 61 20 6 49 49 20 -minecraft:cyan_candle[candles=1,lit=false,waterlogged=false] 17 123 123 20 13 98 98 20 8 61 61 20 6 49 49 20 -minecraft:cyan_candle[candles=2,lit=true,waterlogged=true] 43 146 134 20 34 116 107 20 21 73 67 20 17 58 53 20 -minecraft:cyan_candle[candles=2,lit=true,waterlogged=false] 43 146 134 20 34 116 107 20 21 73 67 20 17 58 53 20 -minecraft:cyan_candle[candles=2,lit=false,waterlogged=true] 17 123 123 20 13 98 98 20 8 61 61 20 6 49 49 20 -minecraft:cyan_candle[candles=2,lit=false,waterlogged=false] 17 123 123 20 13 98 98 20 8 61 61 20 6 49 49 20 -minecraft:cyan_candle[candles=3,lit=true,waterlogged=true] 43 146 134 20 34 116 107 20 21 73 67 20 17 58 53 20 -minecraft:cyan_candle[candles=3,lit=true,waterlogged=false] 43 146 134 20 34 116 107 20 21 73 67 20 17 58 53 20 -minecraft:cyan_candle[candles=3,lit=false,waterlogged=true] 17 123 123 20 13 98 98 20 8 61 61 20 6 49 49 20 -minecraft:cyan_candle[candles=3,lit=false,waterlogged=false] 17 123 123 20 13 98 98 20 8 61 61 20 6 49 49 20 -minecraft:cyan_candle[candles=4,lit=true,waterlogged=true] 43 146 134 20 34 116 107 20 21 73 67 20 17 58 53 20 -minecraft:cyan_candle[candles=4,lit=true,waterlogged=false] 43 146 134 20 34 116 107 20 21 73 67 20 17 58 53 20 -minecraft:cyan_candle[candles=4,lit=false,waterlogged=true] 17 123 123 20 13 98 98 20 8 61 61 20 6 49 49 20 -minecraft:cyan_candle[candles=4,lit=false,waterlogged=false] 17 123 123 20 13 98 98 20 8 61 61 20 6 49 49 20 -minecraft:purple_candle 124 33 144 20 99 26 115 20 62 16 72 20 49 13 57 20 -minecraft:purple_candle[candles=1,lit=true,waterlogged=false] 124 33 144 20 99 26 115 20 62 16 72 20 49 13 57 20 -minecraft:purple_candle[candles=1,lit=false,waterlogged=true] 105 34 159 20 84 27 127 20 52 17 79 20 42 13 63 20 -minecraft:purple_candle[candles=1,lit=false,waterlogged=false] 105 34 159 20 84 27 127 20 52 17 79 20 42 13 63 20 -minecraft:purple_candle[candles=2,lit=true,waterlogged=true] 124 33 144 20 99 26 115 20 62 16 72 20 49 13 57 20 -minecraft:purple_candle[candles=2,lit=true,waterlogged=false] 124 33 144 20 99 26 115 20 62 16 72 20 49 13 57 20 -minecraft:purple_candle[candles=2,lit=false,waterlogged=true] 105 34 159 20 84 27 127 20 52 17 79 20 42 13 63 20 -minecraft:purple_candle[candles=2,lit=false,waterlogged=false] 105 34 159 20 84 27 127 20 52 17 79 20 42 13 63 20 -minecraft:purple_candle[candles=3,lit=true,waterlogged=true] 124 33 144 20 99 26 115 20 62 16 72 20 49 13 57 20 -minecraft:purple_candle[candles=3,lit=true,waterlogged=false] 124 33 144 20 99 26 115 20 62 16 72 20 49 13 57 20 -minecraft:purple_candle[candles=3,lit=false,waterlogged=true] 105 34 159 20 84 27 127 20 52 17 79 20 42 13 63 20 -minecraft:purple_candle[candles=3,lit=false,waterlogged=false] 105 34 159 20 84 27 127 20 52 17 79 20 42 13 63 20 -minecraft:purple_candle[candles=4,lit=true,waterlogged=true] 124 33 144 20 99 26 115 20 62 16 72 20 49 13 57 20 -minecraft:purple_candle[candles=4,lit=true,waterlogged=false] 124 33 144 20 99 26 115 20 62 16 72 20 49 13 57 20 -minecraft:purple_candle[candles=4,lit=false,waterlogged=true] 105 34 159 20 84 27 127 20 52 17 79 20 42 13 63 20 -minecraft:purple_candle[candles=4,lit=false,waterlogged=false] 105 34 159 20 84 27 127 20 52 17 79 20 42 13 63 20 -minecraft:blue_candle 64 84 179 20 51 67 143 20 32 42 89 20 25 33 71 20 -minecraft:blue_candle[candles=1,lit=true,waterlogged=false] 64 84 179 20 51 67 143 20 32 42 89 20 25 33 71 20 -minecraft:blue_candle[candles=1,lit=false,waterlogged=true] 57 76 161 20 45 60 128 20 28 38 80 20 22 30 64 20 -minecraft:blue_candle[candles=1,lit=false,waterlogged=false] 57 76 161 20 45 60 128 20 28 38 80 20 22 30 64 20 -minecraft:blue_candle[candles=2,lit=true,waterlogged=true] 64 84 179 20 51 67 143 20 32 42 89 20 25 33 71 20 -minecraft:blue_candle[candles=2,lit=true,waterlogged=false] 64 84 179 20 51 67 143 20 32 42 89 20 25 33 71 20 -minecraft:blue_candle[candles=2,lit=false,waterlogged=true] 57 76 161 20 45 60 128 20 28 38 80 20 22 30 64 20 -minecraft:blue_candle[candles=2,lit=false,waterlogged=false] 57 76 161 20 45 60 128 20 28 38 80 20 22 30 64 20 -minecraft:blue_candle[candles=3,lit=true,waterlogged=true] 64 84 179 20 51 67 143 20 32 42 89 20 25 33 71 20 -minecraft:blue_candle[candles=3,lit=true,waterlogged=false] 64 84 179 20 51 67 143 20 32 42 89 20 25 33 71 20 -minecraft:blue_candle[candles=3,lit=false,waterlogged=true] 57 76 161 20 45 60 128 20 28 38 80 20 22 30 64 20 -minecraft:blue_candle[candles=3,lit=false,waterlogged=false] 57 76 161 20 45 60 128 20 28 38 80 20 22 30 64 20 -minecraft:blue_candle[candles=4,lit=true,waterlogged=true] 64 84 179 20 51 67 143 20 32 42 89 20 25 33 71 20 -minecraft:blue_candle[candles=4,lit=true,waterlogged=false] 64 84 179 20 51 67 143 20 32 42 89 20 25 33 71 20 -minecraft:blue_candle[candles=4,lit=false,waterlogged=true] 57 76 161 20 45 60 128 20 28 38 80 20 22 30 64 20 -minecraft:blue_candle[candles=4,lit=false,waterlogged=false] 57 76 161 20 45 60 128 20 28 38 80 20 22 30 64 20 -minecraft:brown_candle 147 96 51 20 117 76 40 20 73 48 25 20 58 38 20 20 -minecraft:brown_candle[candles=1,lit=true,waterlogged=false] 147 96 51 20 117 76 40 20 73 48 25 20 58 38 20 20 -minecraft:brown_candle[candles=1,lit=false,waterlogged=true] 111 70 41 20 88 56 32 20 55 35 20 20 44 28 16 20 -minecraft:brown_candle[candles=1,lit=false,waterlogged=false] 111 70 41 20 88 56 32 20 55 35 20 20 44 28 16 20 -minecraft:brown_candle[candles=2,lit=true,waterlogged=true] 147 96 51 20 117 76 40 20 73 48 25 20 58 38 20 20 -minecraft:brown_candle[candles=2,lit=true,waterlogged=false] 147 96 51 20 117 76 40 20 73 48 25 20 58 38 20 20 -minecraft:brown_candle[candles=2,lit=false,waterlogged=true] 111 70 41 20 88 56 32 20 55 35 20 20 44 28 16 20 -minecraft:brown_candle[candles=2,lit=false,waterlogged=false] 111 70 41 20 88 56 32 20 55 35 20 20 44 28 16 20 -minecraft:brown_candle[candles=3,lit=true,waterlogged=true] 147 96 51 20 117 76 40 20 73 48 25 20 58 38 20 20 -minecraft:brown_candle[candles=3,lit=true,waterlogged=false] 147 96 51 20 117 76 40 20 73 48 25 20 58 38 20 20 -minecraft:brown_candle[candles=3,lit=false,waterlogged=true] 111 70 41 20 88 56 32 20 55 35 20 20 44 28 16 20 -minecraft:brown_candle[candles=3,lit=false,waterlogged=false] 111 70 41 20 88 56 32 20 55 35 20 20 44 28 16 20 -minecraft:brown_candle[candles=4,lit=true,waterlogged=true] 147 96 51 20 117 76 40 20 73 48 25 20 58 38 20 20 -minecraft:brown_candle[candles=4,lit=true,waterlogged=false] 147 96 51 20 117 76 40 20 73 48 25 20 58 38 20 20 -minecraft:brown_candle[candles=4,lit=false,waterlogged=true] 111 70 41 20 88 56 32 20 55 35 20 20 44 28 16 20 -minecraft:brown_candle[candles=4,lit=false,waterlogged=false] 111 70 41 20 88 56 32 20 55 35 20 20 44 28 16 20 -minecraft:green_candle 100 115 22 20 80 92 17 20 50 57 11 20 40 46 8 20 -minecraft:green_candle[candles=1,lit=true,waterlogged=false] 100 115 22 20 80 92 17 20 50 57 11 20 40 46 8 20 -minecraft:green_candle[candles=1,lit=false,waterlogged=true] 72 96 20 20 57 76 16 20 36 48 10 20 28 38 8 20 -minecraft:green_candle[candles=1,lit=false,waterlogged=false] 72 96 20 20 57 76 16 20 36 48 10 20 28 38 8 20 -minecraft:green_candle[candles=2,lit=true,waterlogged=true] 100 115 22 20 80 92 17 20 50 57 11 20 40 46 8 20 -minecraft:green_candle[candles=2,lit=true,waterlogged=false] 100 115 22 20 80 92 17 20 50 57 11 20 40 46 8 20 -minecraft:green_candle[candles=2,lit=false,waterlogged=true] 72 96 20 20 57 76 16 20 36 48 10 20 28 38 8 20 -minecraft:green_candle[candles=2,lit=false,waterlogged=false] 72 96 20 20 57 76 16 20 36 48 10 20 28 38 8 20 -minecraft:green_candle[candles=3,lit=true,waterlogged=true] 100 115 22 20 80 92 17 20 50 57 11 20 40 46 8 20 -minecraft:green_candle[candles=3,lit=true,waterlogged=false] 100 115 22 20 80 92 17 20 50 57 11 20 40 46 8 20 -minecraft:green_candle[candles=3,lit=false,waterlogged=true] 72 96 20 20 57 76 16 20 36 48 10 20 28 38 8 20 -minecraft:green_candle[candles=3,lit=false,waterlogged=false] 72 96 20 20 57 76 16 20 36 48 10 20 28 38 8 20 -minecraft:green_candle[candles=4,lit=true,waterlogged=true] 100 115 22 20 80 92 17 20 50 57 11 20 40 46 8 20 -minecraft:green_candle[candles=4,lit=true,waterlogged=false] 100 115 22 20 80 92 17 20 50 57 11 20 40 46 8 20 -minecraft:green_candle[candles=4,lit=false,waterlogged=true] 72 96 20 20 57 76 16 20 36 48 10 20 28 38 8 20 -minecraft:green_candle[candles=4,lit=false,waterlogged=false] 72 96 20 20 57 76 16 20 36 48 10 20 28 38 8 20 -minecraft:red_candle 180 65 47 20 144 52 37 20 90 32 23 20 72 26 18 20 -minecraft:red_candle[candles=1,lit=true,waterlogged=false] 180 65 47 20 144 52 37 20 90 32 23 20 72 26 18 20 -minecraft:red_candle[candles=1,lit=false,waterlogged=true] 153 38 36 20 122 30 28 20 76 19 18 20 61 15 14 20 -minecraft:red_candle[candles=1,lit=false,waterlogged=false] 153 38 36 20 122 30 28 20 76 19 18 20 61 15 14 20 -minecraft:red_candle[candles=2,lit=true,waterlogged=true] 180 65 47 20 144 52 37 20 90 32 23 20 72 26 18 20 -minecraft:red_candle[candles=2,lit=true,waterlogged=false] 180 65 47 20 144 52 37 20 90 32 23 20 72 26 18 20 -minecraft:red_candle[candles=2,lit=false,waterlogged=true] 153 38 36 20 122 30 28 20 76 19 18 20 61 15 14 20 -minecraft:red_candle[candles=2,lit=false,waterlogged=false] 153 38 36 20 122 30 28 20 76 19 18 20 61 15 14 20 -minecraft:red_candle[candles=3,lit=true,waterlogged=true] 180 65 47 20 144 52 37 20 90 32 23 20 72 26 18 20 -minecraft:red_candle[candles=3,lit=true,waterlogged=false] 180 65 47 20 144 52 37 20 90 32 23 20 72 26 18 20 -minecraft:red_candle[candles=3,lit=false,waterlogged=true] 153 38 36 20 122 30 28 20 76 19 18 20 61 15 14 20 -minecraft:red_candle[candles=3,lit=false,waterlogged=false] 153 38 36 20 122 30 28 20 76 19 18 20 61 15 14 20 -minecraft:red_candle[candles=4,lit=true,waterlogged=true] 180 65 47 20 144 52 37 20 90 32 23 20 72 26 18 20 -minecraft:red_candle[candles=4,lit=true,waterlogged=false] 180 65 47 20 144 52 37 20 90 32 23 20 72 26 18 20 -minecraft:red_candle[candles=4,lit=false,waterlogged=true] 153 38 36 20 122 30 28 20 76 19 18 20 61 15 14 20 -minecraft:red_candle[candles=4,lit=false,waterlogged=false] 153 38 36 20 122 30 28 20 76 19 18 20 61 15 14 20 -minecraft:black_candle 73 48 51 20 58 38 40 20 36 24 25 20 29 19 20 20 -minecraft:black_candle[candles=1,lit=true,waterlogged=false] 73 48 51 20 58 38 40 20 36 24 25 20 29 19 20 20 -minecraft:black_candle[candles=1,lit=false,waterlogged=true] 38 36 57 20 30 28 45 20 19 18 28 20 15 14 22 20 -minecraft:black_candle[candles=1,lit=false,waterlogged=false] 38 36 57 20 30 28 45 20 19 18 28 20 15 14 22 20 -minecraft:black_candle[candles=2,lit=true,waterlogged=true] 73 48 51 20 58 38 40 20 36 24 25 20 29 19 20 20 -minecraft:black_candle[candles=2,lit=true,waterlogged=false] 73 48 51 20 58 38 40 20 36 24 25 20 29 19 20 20 -minecraft:black_candle[candles=2,lit=false,waterlogged=true] 38 36 57 20 30 28 45 20 19 18 28 20 15 14 22 20 -minecraft:black_candle[candles=2,lit=false,waterlogged=false] 38 36 57 20 30 28 45 20 19 18 28 20 15 14 22 20 -minecraft:black_candle[candles=3,lit=true,waterlogged=true] 73 48 51 20 58 38 40 20 36 24 25 20 29 19 20 20 -minecraft:black_candle[candles=3,lit=true,waterlogged=false] 73 48 51 20 58 38 40 20 36 24 25 20 29 19 20 20 -minecraft:black_candle[candles=3,lit=false,waterlogged=true] 38 36 57 20 30 28 45 20 19 18 28 20 15 14 22 20 -minecraft:black_candle[candles=3,lit=false,waterlogged=false] 38 36 57 20 30 28 45 20 19 18 28 20 15 14 22 20 -minecraft:black_candle[candles=4,lit=true,waterlogged=true] 73 48 51 20 58 38 40 20 36 24 25 20 29 19 20 20 -minecraft:black_candle[candles=4,lit=true,waterlogged=false] 73 48 51 20 58 38 40 20 36 24 25 20 29 19 20 20 -minecraft:black_candle[candles=4,lit=false,waterlogged=true] 38 36 57 20 30 28 45 20 19 18 28 20 15 14 22 20 -minecraft:black_candle[candles=4,lit=false,waterlogged=false] 38 36 57 20 30 28 45 20 19 18 28 20 15 14 22 20 +minecraft:polished_blackstone_stairs 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=north,half=top,shape=straight,waterlogged=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=south,half=top,shape=straight,waterlogged=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=south,half=top,shape=straight,waterlogged=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=west,half=top,shape=straight,waterlogged=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=west,half=top,shape=straight,waterlogged=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=east,half=top,shape=straight,waterlogged=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=east,half=top,shape=straight,waterlogged=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_slab 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_slab[type=top,waterlogged=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_slab[type=bottom,waterlogged=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_slab[type=bottom,waterlogged=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_slab[type=double,waterlogged=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_slab[type=double,waterlogged=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_pressure_plate 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_pressure_plate[powered=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_button 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_button[face=floor,facing=north,powered=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_button[face=floor,facing=south,powered=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_button[face=floor,facing=south,powered=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_button[face=floor,facing=west,powered=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_button[face=floor,facing=west,powered=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_button[face=floor,facing=east,powered=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_button[face=floor,facing=east,powered=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_button[face=wall,facing=north,powered=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_button[face=wall,facing=north,powered=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_button[face=wall,facing=south,powered=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_button[face=wall,facing=south,powered=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_button[face=wall,facing=west,powered=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_button[face=wall,facing=west,powered=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_button[face=wall,facing=east,powered=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_button[face=wall,facing=east,powered=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_button[face=ceiling,facing=north,powered=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_button[face=ceiling,facing=north,powered=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_button[face=ceiling,facing=south,powered=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_button[face=ceiling,facing=south,powered=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_button[face=ceiling,facing=west,powered=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_button[face=ceiling,facing=west,powered=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_button[face=ceiling,facing=east,powered=true] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_button[face=ceiling,facing=east,powered=false] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 40 36 48 255 32 28 38 255 20 18 24 255 16 14 19 255 +minecraft:chiseled_nether_bricks 52 27 34 255 41 21 27 255 26 13 17 255 20 10 13 255 +minecraft:cracked_nether_bricks 48 25 31 255 38 20 24 255 24 12 15 255 19 10 12 255 +minecraft:quartz_bricks 193 186 176 255 154 148 140 255 96 93 88 255 77 74 70 255 +minecraft:candle 184 176 123 20 147 140 98 20 92 88 61 20 73 70 49 20 +minecraft:candle[candles=1,lit=true,waterlogged=false] 184 176 123 20 147 140 98 20 92 88 61 20 73 70 49 20 +minecraft:candle[candles=1,lit=false,waterlogged=true] 181 168 112 20 144 134 89 20 90 84 56 20 72 67 44 20 +minecraft:candle[candles=1,lit=false,waterlogged=false] 181 168 112 20 144 134 89 20 90 84 56 20 72 67 44 20 +minecraft:candle[candles=2,lit=true,waterlogged=true] 184 176 123 20 147 140 98 20 92 88 61 20 73 70 49 20 +minecraft:candle[candles=2,lit=true,waterlogged=false] 184 176 123 20 147 140 98 20 92 88 61 20 73 70 49 20 +minecraft:candle[candles=2,lit=false,waterlogged=true] 181 168 112 20 144 134 89 20 90 84 56 20 72 67 44 20 +minecraft:candle[candles=2,lit=false,waterlogged=false] 181 168 112 20 144 134 89 20 90 84 56 20 72 67 44 20 +minecraft:candle[candles=3,lit=true,waterlogged=true] 184 176 123 20 147 140 98 20 92 88 61 20 73 70 49 20 +minecraft:candle[candles=3,lit=true,waterlogged=false] 184 176 123 20 147 140 98 20 92 88 61 20 73 70 49 20 +minecraft:candle[candles=3,lit=false,waterlogged=true] 181 168 112 20 144 134 89 20 90 84 56 20 72 67 44 20 +minecraft:candle[candles=3,lit=false,waterlogged=false] 181 168 112 20 144 134 89 20 90 84 56 20 72 67 44 20 +minecraft:candle[candles=4,lit=true,waterlogged=true] 184 176 123 20 147 140 98 20 92 88 61 20 73 70 49 20 +minecraft:candle[candles=4,lit=true,waterlogged=false] 184 176 123 20 147 140 98 20 92 88 61 20 73 70 49 20 +minecraft:candle[candles=4,lit=false,waterlogged=true] 181 168 112 20 144 134 89 20 90 84 56 20 72 67 44 20 +minecraft:candle[candles=4,lit=false,waterlogged=false] 181 168 112 20 144 134 89 20 90 84 56 20 72 67 44 20 +minecraft:white_candle 164 161 150 20 131 128 120 20 82 80 75 20 65 64 60 20 +minecraft:white_candle[candles=1,lit=true,waterlogged=false] 164 161 150 20 131 128 120 20 82 80 75 20 65 64 60 20 +minecraft:white_candle[candles=1,lit=false,waterlogged=true] 146 144 142 20 116 115 113 20 73 72 71 20 58 57 56 20 +minecraft:white_candle[candles=1,lit=false,waterlogged=false] 146 144 142 20 116 115 113 20 73 72 71 20 58 57 56 20 +minecraft:white_candle[candles=2,lit=true,waterlogged=true] 164 161 150 20 131 128 120 20 82 80 75 20 65 64 60 20 +minecraft:white_candle[candles=2,lit=true,waterlogged=false] 164 161 150 20 131 128 120 20 82 80 75 20 65 64 60 20 +minecraft:white_candle[candles=2,lit=false,waterlogged=true] 146 144 142 20 116 115 113 20 73 72 71 20 58 57 56 20 +minecraft:white_candle[candles=2,lit=false,waterlogged=false] 146 144 142 20 116 115 113 20 73 72 71 20 58 57 56 20 +minecraft:white_candle[candles=3,lit=true,waterlogged=true] 164 161 150 20 131 128 120 20 82 80 75 20 65 64 60 20 +minecraft:white_candle[candles=3,lit=true,waterlogged=false] 164 161 150 20 131 128 120 20 82 80 75 20 65 64 60 20 +minecraft:white_candle[candles=3,lit=false,waterlogged=true] 146 144 142 20 116 115 113 20 73 72 71 20 58 57 56 20 +minecraft:white_candle[candles=3,lit=false,waterlogged=false] 146 144 142 20 116 115 113 20 73 72 71 20 58 57 56 20 +minecraft:white_candle[candles=4,lit=true,waterlogged=true] 164 161 150 20 131 128 120 20 82 80 75 20 65 64 60 20 +minecraft:white_candle[candles=4,lit=true,waterlogged=false] 164 161 150 20 131 128 120 20 82 80 75 20 65 64 60 20 +minecraft:white_candle[candles=4,lit=false,waterlogged=true] 146 144 142 20 116 115 113 20 73 72 71 20 58 57 56 20 +minecraft:white_candle[candles=4,lit=false,waterlogged=false] 146 144 142 20 116 115 113 20 73 72 71 20 58 57 56 20 +minecraft:orange_candle 164 118 61 20 131 94 48 20 82 59 30 20 65 47 24 20 +minecraft:orange_candle[candles=1,lit=true,waterlogged=false] 164 118 61 20 131 94 48 20 82 59 30 20 65 47 24 20 +minecraft:orange_candle[candles=1,lit=false,waterlogged=true] 146 68 33 20 116 54 26 20 73 34 16 20 58 27 13 20 +minecraft:orange_candle[candles=1,lit=false,waterlogged=false] 146 68 33 20 116 54 26 20 73 34 16 20 58 27 13 20 +minecraft:orange_candle[candles=2,lit=true,waterlogged=true] 164 118 61 20 131 94 48 20 82 59 30 20 65 47 24 20 +minecraft:orange_candle[candles=2,lit=true,waterlogged=false] 164 118 61 20 131 94 48 20 82 59 30 20 65 47 24 20 +minecraft:orange_candle[candles=2,lit=false,waterlogged=true] 146 68 33 20 116 54 26 20 73 34 16 20 58 27 13 20 +minecraft:orange_candle[candles=2,lit=false,waterlogged=false] 146 68 33 20 116 54 26 20 73 34 16 20 58 27 13 20 +minecraft:orange_candle[candles=3,lit=true,waterlogged=true] 164 118 61 20 131 94 48 20 82 59 30 20 65 47 24 20 +minecraft:orange_candle[candles=3,lit=true,waterlogged=false] 164 118 61 20 131 94 48 20 82 59 30 20 65 47 24 20 +minecraft:orange_candle[candles=3,lit=false,waterlogged=true] 146 68 33 20 116 54 26 20 73 34 16 20 58 27 13 20 +minecraft:orange_candle[candles=3,lit=false,waterlogged=false] 146 68 33 20 116 54 26 20 73 34 16 20 58 27 13 20 +minecraft:orange_candle[candles=4,lit=true,waterlogged=true] 164 118 61 20 131 94 48 20 82 59 30 20 65 47 24 20 +minecraft:orange_candle[candles=4,lit=true,waterlogged=false] 164 118 61 20 131 94 48 20 82 59 30 20 65 47 24 20 +minecraft:orange_candle[candles=4,lit=false,waterlogged=true] 146 68 33 20 116 54 26 20 73 34 16 20 58 27 13 20 +minecraft:orange_candle[candles=4,lit=false,waterlogged=false] 146 68 33 20 116 54 26 20 73 34 16 20 58 27 13 20 +minecraft:magenta_candle 148 111 138 20 118 88 110 20 74 55 69 20 59 44 55 20 +minecraft:magenta_candle[candles=1,lit=true,waterlogged=false] 148 111 138 20 118 88 110 20 74 55 69 20 59 44 55 20 +minecraft:magenta_candle[candles=1,lit=false,waterlogged=true] 114 56 128 20 91 44 102 20 57 28 64 20 45 22 51 20 +minecraft:magenta_candle[candles=1,lit=false,waterlogged=false] 114 56 128 20 91 44 102 20 57 28 64 20 45 22 51 20 +minecraft:magenta_candle[candles=2,lit=true,waterlogged=true] 148 111 138 20 118 88 110 20 74 55 69 20 59 44 55 20 +minecraft:magenta_candle[candles=2,lit=true,waterlogged=false] 148 111 138 20 118 88 110 20 74 55 69 20 59 44 55 20 +minecraft:magenta_candle[candles=2,lit=false,waterlogged=true] 114 56 128 20 91 44 102 20 57 28 64 20 45 22 51 20 +minecraft:magenta_candle[candles=2,lit=false,waterlogged=false] 114 56 128 20 91 44 102 20 57 28 64 20 45 22 51 20 +minecraft:magenta_candle[candles=3,lit=true,waterlogged=true] 148 111 138 20 118 88 110 20 74 55 69 20 59 44 55 20 +minecraft:magenta_candle[candles=3,lit=true,waterlogged=false] 148 111 138 20 118 88 110 20 74 55 69 20 59 44 55 20 +minecraft:magenta_candle[candles=3,lit=false,waterlogged=true] 114 56 128 20 91 44 102 20 57 28 64 20 45 22 51 20 +minecraft:magenta_candle[candles=3,lit=false,waterlogged=false] 114 56 128 20 91 44 102 20 57 28 64 20 45 22 51 20 +minecraft:magenta_candle[candles=4,lit=true,waterlogged=true] 148 111 138 20 118 88 110 20 74 55 69 20 59 44 55 20 +minecraft:magenta_candle[candles=4,lit=true,waterlogged=false] 148 111 138 20 118 88 110 20 74 55 69 20 59 44 55 20 +minecraft:magenta_candle[candles=4,lit=false,waterlogged=true] 114 56 128 20 91 44 102 20 57 28 64 20 45 22 51 20 +minecraft:magenta_candle[candles=4,lit=false,waterlogged=false] 114 56 128 20 91 44 102 20 57 28 64 20 45 22 51 20 +minecraft:light_blue_candle 130 137 145 20 104 109 116 20 65 68 72 20 52 54 58 20 +minecraft:light_blue_candle[candles=1,lit=true,waterlogged=false] 130 137 145 20 104 109 116 20 65 68 72 20 52 54 58 20 +minecraft:light_blue_candle[candles=1,lit=false,waterlogged=true] 80 101 136 20 64 80 108 20 40 50 68 20 32 40 54 20 +minecraft:light_blue_candle[candles=1,lit=false,waterlogged=false] 80 101 136 20 64 80 108 20 40 50 68 20 32 40 54 20 +minecraft:light_blue_candle[candles=2,lit=true,waterlogged=true] 130 137 145 20 104 109 116 20 65 68 72 20 52 54 58 20 +minecraft:light_blue_candle[candles=2,lit=true,waterlogged=false] 130 137 145 20 104 109 116 20 65 68 72 20 52 54 58 20 +minecraft:light_blue_candle[candles=2,lit=false,waterlogged=true] 80 101 136 20 64 80 108 20 40 50 68 20 32 40 54 20 +minecraft:light_blue_candle[candles=2,lit=false,waterlogged=false] 80 101 136 20 64 80 108 20 40 50 68 20 32 40 54 20 +minecraft:light_blue_candle[candles=3,lit=true,waterlogged=true] 130 137 145 20 104 109 116 20 65 68 72 20 52 54 58 20 +minecraft:light_blue_candle[candles=3,lit=true,waterlogged=false] 130 137 145 20 104 109 116 20 65 68 72 20 52 54 58 20 +minecraft:light_blue_candle[candles=3,lit=false,waterlogged=true] 80 101 136 20 64 80 108 20 40 50 68 20 32 40 54 20 +minecraft:light_blue_candle[candles=3,lit=false,waterlogged=false] 80 101 136 20 64 80 108 20 40 50 68 20 32 40 54 20 +minecraft:light_blue_candle[candles=4,lit=true,waterlogged=true] 130 137 145 20 104 109 116 20 65 68 72 20 52 54 58 20 +minecraft:light_blue_candle[candles=4,lit=true,waterlogged=false] 130 137 145 20 104 109 116 20 65 68 72 20 52 54 58 20 +minecraft:light_blue_candle[candles=4,lit=false,waterlogged=true] 80 101 136 20 64 80 108 20 40 50 68 20 32 40 54 20 +minecraft:light_blue_candle[candles=4,lit=false,waterlogged=false] 80 101 136 20 64 80 108 20 40 50 68 20 32 40 54 20 +minecraft:yellow_candle 162 146 62 20 129 116 49 20 81 73 31 20 64 58 24 20 +minecraft:yellow_candle[candles=1,lit=true,waterlogged=false] 162 146 62 20 129 116 49 20 81 73 31 20 64 58 24 20 +minecraft:yellow_candle[candles=1,lit=false,waterlogged=true] 140 117 34 20 112 93 27 20 70 58 17 20 56 46 13 20 +minecraft:yellow_candle[candles=1,lit=false,waterlogged=false] 140 117 34 20 112 93 27 20 70 58 17 20 56 46 13 20 +minecraft:yellow_candle[candles=2,lit=true,waterlogged=true] 162 146 62 20 129 116 49 20 81 73 31 20 64 58 24 20 +minecraft:yellow_candle[candles=2,lit=true,waterlogged=false] 162 146 62 20 129 116 49 20 81 73 31 20 64 58 24 20 +minecraft:yellow_candle[candles=2,lit=false,waterlogged=true] 140 117 34 20 112 93 27 20 70 58 17 20 56 46 13 20 +minecraft:yellow_candle[candles=2,lit=false,waterlogged=false] 140 117 34 20 112 93 27 20 70 58 17 20 56 46 13 20 +minecraft:yellow_candle[candles=3,lit=true,waterlogged=true] 162 146 62 20 129 116 49 20 81 73 31 20 64 58 24 20 +minecraft:yellow_candle[candles=3,lit=true,waterlogged=false] 162 146 62 20 129 116 49 20 81 73 31 20 64 58 24 20 +minecraft:yellow_candle[candles=3,lit=false,waterlogged=true] 140 117 34 20 112 93 27 20 70 58 17 20 56 46 13 20 +minecraft:yellow_candle[candles=3,lit=false,waterlogged=false] 140 117 34 20 112 93 27 20 70 58 17 20 56 46 13 20 +minecraft:yellow_candle[candles=4,lit=true,waterlogged=true] 162 146 62 20 129 116 49 20 81 73 31 20 64 58 24 20 +minecraft:yellow_candle[candles=4,lit=true,waterlogged=false] 162 146 62 20 129 116 49 20 81 73 31 20 64 58 24 20 +minecraft:yellow_candle[candles=4,lit=false,waterlogged=true] 140 117 34 20 112 93 27 20 70 58 17 20 56 46 13 20 +minecraft:yellow_candle[candles=4,lit=false,waterlogged=false] 140 117 34 20 112 93 27 20 70 58 17 20 56 46 13 20 +minecraft:lime_candle 121 150 69 20 96 120 55 20 60 75 34 20 48 60 27 20 +minecraft:lime_candle[candles=1,lit=true,waterlogged=false] 121 150 69 20 96 120 55 20 60 75 34 20 48 60 27 20 +minecraft:lime_candle[candles=1,lit=false,waterlogged=true] 63 124 42 20 50 99 33 20 31 62 21 20 25 49 16 20 +minecraft:lime_candle[candles=1,lit=false,waterlogged=false] 63 124 42 20 50 99 33 20 31 62 21 20 25 49 16 20 +minecraft:lime_candle[candles=2,lit=true,waterlogged=true] 121 150 69 20 96 120 55 20 60 75 34 20 48 60 27 20 +minecraft:lime_candle[candles=2,lit=true,waterlogged=false] 121 150 69 20 96 120 55 20 60 75 34 20 48 60 27 20 +minecraft:lime_candle[candles=2,lit=false,waterlogged=true] 63 124 42 20 50 99 33 20 31 62 21 20 25 49 16 20 +minecraft:lime_candle[candles=2,lit=false,waterlogged=false] 63 124 42 20 50 99 33 20 31 62 21 20 25 49 16 20 +minecraft:lime_candle[candles=3,lit=true,waterlogged=true] 121 150 69 20 96 120 55 20 60 75 34 20 48 60 27 20 +minecraft:lime_candle[candles=3,lit=true,waterlogged=false] 121 150 69 20 96 120 55 20 60 75 34 20 48 60 27 20 +minecraft:lime_candle[candles=3,lit=false,waterlogged=true] 63 124 42 20 50 99 33 20 31 62 21 20 25 49 16 20 +minecraft:lime_candle[candles=3,lit=false,waterlogged=false] 63 124 42 20 50 99 33 20 31 62 21 20 25 49 16 20 +minecraft:lime_candle[candles=4,lit=true,waterlogged=true] 121 150 69 20 96 120 55 20 60 75 34 20 48 60 27 20 +minecraft:lime_candle[candles=4,lit=true,waterlogged=false] 121 150 69 20 96 120 55 20 60 75 34 20 48 60 27 20 +minecraft:lime_candle[candles=4,lit=false,waterlogged=true] 63 124 42 20 50 99 33 20 31 62 21 20 25 49 16 20 +minecraft:lime_candle[candles=4,lit=false,waterlogged=false] 63 124 42 20 50 99 33 20 31 62 21 20 25 49 16 20 +minecraft:pink_candle 164 136 124 20 131 108 99 20 82 68 62 20 65 54 49 20 +minecraft:pink_candle[candles=1,lit=true,waterlogged=false] 164 136 124 20 131 108 99 20 82 68 62 20 65 54 49 20 +minecraft:pink_candle[candles=1,lit=false,waterlogged=true] 144 100 110 20 115 80 88 20 72 50 55 20 57 40 44 20 +minecraft:pink_candle[candles=1,lit=false,waterlogged=false] 144 100 110 20 115 80 88 20 72 50 55 20 57 40 44 20 +minecraft:pink_candle[candles=2,lit=true,waterlogged=true] 164 136 124 20 131 108 99 20 82 68 62 20 65 54 49 20 +minecraft:pink_candle[candles=2,lit=true,waterlogged=false] 164 136 124 20 131 108 99 20 82 68 62 20 65 54 49 20 +minecraft:pink_candle[candles=2,lit=false,waterlogged=true] 144 100 110 20 115 80 88 20 72 50 55 20 57 40 44 20 +minecraft:pink_candle[candles=2,lit=false,waterlogged=false] 144 100 110 20 115 80 88 20 72 50 55 20 57 40 44 20 +minecraft:pink_candle[candles=3,lit=true,waterlogged=true] 164 136 124 20 131 108 99 20 82 68 62 20 65 54 49 20 +minecraft:pink_candle[candles=3,lit=true,waterlogged=false] 164 136 124 20 131 108 99 20 82 68 62 20 65 54 49 20 +minecraft:pink_candle[candles=3,lit=false,waterlogged=true] 144 100 110 20 115 80 88 20 72 50 55 20 57 40 44 20 +minecraft:pink_candle[candles=3,lit=false,waterlogged=false] 144 100 110 20 115 80 88 20 72 50 55 20 57 40 44 20 +minecraft:pink_candle[candles=4,lit=true,waterlogged=true] 164 136 124 20 131 108 99 20 82 68 62 20 65 54 49 20 +minecraft:pink_candle[candles=4,lit=true,waterlogged=false] 164 136 124 20 131 108 99 20 82 68 62 20 65 54 49 20 +minecraft:pink_candle[candles=4,lit=false,waterlogged=true] 144 100 110 20 115 80 88 20 72 50 55 20 57 40 44 20 +minecraft:pink_candle[candles=4,lit=false,waterlogged=false] 144 100 110 20 115 80 88 20 72 50 55 20 57 40 44 20 +minecraft:gray_candle 107 99 63 20 85 79 50 20 53 49 31 20 42 39 25 20 +minecraft:gray_candle[candles=1,lit=true,waterlogged=false] 107 99 63 20 85 79 50 20 53 49 31 20 42 39 25 20 +minecraft:gray_candle[candles=1,lit=false,waterlogged=true] 37 36 35 20 29 28 28 20 18 18 17 20 14 14 14 20 +minecraft:gray_candle[candles=1,lit=false,waterlogged=false] 37 36 35 20 29 28 28 20 18 18 17 20 14 14 14 20 +minecraft:gray_candle[candles=2,lit=true,waterlogged=true] 107 99 63 20 85 79 50 20 53 49 31 20 42 39 25 20 +minecraft:gray_candle[candles=2,lit=true,waterlogged=false] 107 99 63 20 85 79 50 20 53 49 31 20 42 39 25 20 +minecraft:gray_candle[candles=2,lit=false,waterlogged=true] 37 36 35 20 29 28 28 20 18 18 17 20 14 14 14 20 +minecraft:gray_candle[candles=2,lit=false,waterlogged=false] 37 36 35 20 29 28 28 20 18 18 17 20 14 14 14 20 +minecraft:gray_candle[candles=3,lit=true,waterlogged=true] 107 99 63 20 85 79 50 20 53 49 31 20 42 39 25 20 +minecraft:gray_candle[candles=3,lit=true,waterlogged=false] 107 99 63 20 85 79 50 20 53 49 31 20 42 39 25 20 +minecraft:gray_candle[candles=3,lit=false,waterlogged=true] 37 36 35 20 29 28 28 20 18 18 17 20 14 14 14 20 +minecraft:gray_candle[candles=3,lit=false,waterlogged=false] 37 36 35 20 29 28 28 20 18 18 17 20 14 14 14 20 +minecraft:gray_candle[candles=4,lit=true,waterlogged=true] 107 99 63 20 85 79 50 20 53 49 31 20 42 39 25 20 +minecraft:gray_candle[candles=4,lit=true,waterlogged=false] 107 99 63 20 85 79 50 20 53 49 31 20 42 39 25 20 +minecraft:gray_candle[candles=4,lit=false,waterlogged=true] 37 36 35 20 29 28 28 20 18 18 17 20 14 14 14 20 +minecraft:gray_candle[candles=4,lit=false,waterlogged=false] 37 36 35 20 29 28 28 20 18 18 17 20 14 14 14 20 +minecraft:light_gray_candle 132 131 106 20 105 104 84 20 66 65 53 20 52 52 42 20 +minecraft:light_gray_candle[candles=1,lit=true,waterlogged=false] 132 131 106 20 105 104 84 20 66 65 53 20 52 52 42 20 +minecraft:light_gray_candle[candles=1,lit=false,waterlogged=true] 83 91 88 20 66 72 70 20 41 45 44 20 33 36 35 20 +minecraft:light_gray_candle[candles=1,lit=false,waterlogged=false] 83 91 88 20 66 72 70 20 41 45 44 20 33 36 35 20 +minecraft:light_gray_candle[candles=2,lit=true,waterlogged=true] 132 131 106 20 105 104 84 20 66 65 53 20 52 52 42 20 +minecraft:light_gray_candle[candles=2,lit=true,waterlogged=false] 132 131 106 20 105 104 84 20 66 65 53 20 52 52 42 20 +minecraft:light_gray_candle[candles=2,lit=false,waterlogged=true] 83 91 88 20 66 72 70 20 41 45 44 20 33 36 35 20 +minecraft:light_gray_candle[candles=2,lit=false,waterlogged=false] 83 91 88 20 66 72 70 20 41 45 44 20 33 36 35 20 +minecraft:light_gray_candle[candles=3,lit=true,waterlogged=true] 132 131 106 20 105 104 84 20 66 65 53 20 52 52 42 20 +minecraft:light_gray_candle[candles=3,lit=true,waterlogged=false] 132 131 106 20 105 104 84 20 66 65 53 20 52 52 42 20 +minecraft:light_gray_candle[candles=3,lit=false,waterlogged=true] 83 91 88 20 66 72 70 20 41 45 44 20 33 36 35 20 +minecraft:light_gray_candle[candles=3,lit=false,waterlogged=false] 83 91 88 20 66 72 70 20 41 45 44 20 33 36 35 20 +minecraft:light_gray_candle[candles=4,lit=true,waterlogged=true] 132 131 106 20 105 104 84 20 66 65 53 20 52 52 42 20 +minecraft:light_gray_candle[candles=4,lit=true,waterlogged=false] 132 131 106 20 105 104 84 20 66 65 53 20 52 52 42 20 +minecraft:light_gray_candle[candles=4,lit=false,waterlogged=true] 83 91 88 20 66 72 70 20 41 45 44 20 33 36 35 20 +minecraft:light_gray_candle[candles=4,lit=false,waterlogged=false] 83 91 88 20 66 72 70 20 41 45 44 20 33 36 35 20 +minecraft:cyan_candle 103 119 98 20 82 95 78 20 51 59 49 20 41 47 39 20 +minecraft:cyan_candle[candles=1,lit=true,waterlogged=false] 103 119 98 20 82 95 78 20 51 59 49 20 41 47 39 20 +minecraft:cyan_candle[candles=1,lit=false,waterlogged=true] 29 70 79 20 23 56 63 20 14 35 39 20 11 28 31 20 +minecraft:cyan_candle[candles=1,lit=false,waterlogged=false] 29 70 79 20 23 56 63 20 14 35 39 20 11 28 31 20 +minecraft:cyan_candle[candles=2,lit=true,waterlogged=true] 103 119 98 20 82 95 78 20 51 59 49 20 41 47 39 20 +minecraft:cyan_candle[candles=2,lit=true,waterlogged=false] 103 119 98 20 82 95 78 20 51 59 49 20 41 47 39 20 +minecraft:cyan_candle[candles=2,lit=false,waterlogged=true] 29 70 79 20 23 56 63 20 14 35 39 20 11 28 31 20 +minecraft:cyan_candle[candles=2,lit=false,waterlogged=false] 29 70 79 20 23 56 63 20 14 35 39 20 11 28 31 20 +minecraft:cyan_candle[candles=3,lit=true,waterlogged=true] 103 119 98 20 82 95 78 20 51 59 49 20 41 47 39 20 +minecraft:cyan_candle[candles=3,lit=true,waterlogged=false] 103 119 98 20 82 95 78 20 51 59 49 20 41 47 39 20 +minecraft:cyan_candle[candles=3,lit=false,waterlogged=true] 29 70 79 20 23 56 63 20 14 35 39 20 11 28 31 20 +minecraft:cyan_candle[candles=3,lit=false,waterlogged=false] 29 70 79 20 23 56 63 20 14 35 39 20 11 28 31 20 +minecraft:cyan_candle[candles=4,lit=true,waterlogged=true] 103 119 98 20 82 95 78 20 51 59 49 20 41 47 39 20 +minecraft:cyan_candle[candles=4,lit=true,waterlogged=false] 103 119 98 20 82 95 78 20 51 59 49 20 41 47 39 20 +minecraft:cyan_candle[candles=4,lit=false,waterlogged=true] 29 70 79 20 23 56 63 20 14 35 39 20 11 28 31 20 +minecraft:cyan_candle[candles=4,lit=false,waterlogged=false] 29 70 79 20 23 56 63 20 14 35 39 20 11 28 31 20 +minecraft:purple_candle 121 98 116 20 96 78 92 20 60 49 58 20 48 39 46 20 +minecraft:purple_candle[candles=1,lit=true,waterlogged=false] 121 98 116 20 96 78 92 20 60 49 58 20 48 39 46 20 +minecraft:purple_candle[candles=1,lit=false,waterlogged=true] 63 33 100 20 50 26 80 20 31 16 50 20 25 13 40 20 +minecraft:purple_candle[candles=1,lit=false,waterlogged=false] 63 33 100 20 50 26 80 20 31 16 50 20 25 13 40 20 +minecraft:purple_candle[candles=2,lit=true,waterlogged=true] 121 98 116 20 96 78 92 20 60 49 58 20 48 39 46 20 +minecraft:purple_candle[candles=2,lit=true,waterlogged=false] 121 98 116 20 96 78 92 20 60 49 58 20 48 39 46 20 +minecraft:purple_candle[candles=2,lit=false,waterlogged=true] 63 33 100 20 50 26 80 20 31 16 50 20 25 13 40 20 +minecraft:purple_candle[candles=2,lit=false,waterlogged=false] 63 33 100 20 50 26 80 20 31 16 50 20 25 13 40 20 +minecraft:purple_candle[candles=3,lit=true,waterlogged=true] 121 98 116 20 96 78 92 20 60 49 58 20 48 39 46 20 +minecraft:purple_candle[candles=3,lit=true,waterlogged=false] 121 98 116 20 96 78 92 20 60 49 58 20 48 39 46 20 +minecraft:purple_candle[candles=3,lit=false,waterlogged=true] 63 33 100 20 50 26 80 20 31 16 50 20 25 13 40 20 +minecraft:purple_candle[candles=3,lit=false,waterlogged=false] 63 33 100 20 50 26 80 20 31 16 50 20 25 13 40 20 +minecraft:purple_candle[candles=4,lit=true,waterlogged=true] 121 98 116 20 96 78 92 20 60 49 58 20 48 39 46 20 +minecraft:purple_candle[candles=4,lit=true,waterlogged=false] 121 98 116 20 96 78 92 20 60 49 58 20 48 39 46 20 +minecraft:purple_candle[candles=4,lit=false,waterlogged=true] 63 33 100 20 50 26 80 20 31 16 50 20 25 13 40 20 +minecraft:purple_candle[candles=4,lit=false,waterlogged=false] 63 33 100 20 50 26 80 20 31 16 50 20 25 13 40 20 +minecraft:blue_candle 103 104 108 20 82 83 86 20 51 52 54 20 41 41 43 20 +minecraft:blue_candle[candles=1,lit=true,waterlogged=false] 103 104 108 20 82 83 86 20 51 52 54 20 41 41 43 20 +minecraft:blue_candle[candles=1,lit=false,waterlogged=true] 28 44 90 20 22 35 72 20 14 22 45 20 11 17 36 20 +minecraft:blue_candle[candles=1,lit=false,waterlogged=false] 28 44 90 20 22 35 72 20 14 22 45 20 11 17 36 20 +minecraft:blue_candle[candles=2,lit=true,waterlogged=true] 103 104 108 20 82 83 86 20 51 52 54 20 41 41 43 20 +minecraft:blue_candle[candles=2,lit=true,waterlogged=false] 103 104 108 20 82 83 86 20 51 52 54 20 41 41 43 20 +minecraft:blue_candle[candles=2,lit=false,waterlogged=true] 28 44 90 20 22 35 72 20 14 22 45 20 11 17 36 20 +minecraft:blue_candle[candles=2,lit=false,waterlogged=false] 28 44 90 20 22 35 72 20 14 22 45 20 11 17 36 20 +minecraft:blue_candle[candles=3,lit=true,waterlogged=true] 103 104 108 20 82 83 86 20 51 52 54 20 41 41 43 20 +minecraft:blue_candle[candles=3,lit=true,waterlogged=false] 103 104 108 20 82 83 86 20 51 52 54 20 41 41 43 20 +minecraft:blue_candle[candles=3,lit=false,waterlogged=true] 28 44 90 20 22 35 72 20 14 22 45 20 11 17 36 20 +minecraft:blue_candle[candles=3,lit=false,waterlogged=false] 28 44 90 20 22 35 72 20 14 22 45 20 11 17 36 20 +minecraft:blue_candle[candles=4,lit=true,waterlogged=true] 103 104 108 20 82 83 86 20 51 52 54 20 41 41 43 20 +minecraft:blue_candle[candles=4,lit=true,waterlogged=false] 103 104 108 20 82 83 86 20 51 52 54 20 41 41 43 20 +minecraft:blue_candle[candles=4,lit=false,waterlogged=true] 28 44 90 20 22 35 72 20 14 22 45 20 11 17 36 20 +minecraft:blue_candle[candles=4,lit=false,waterlogged=false] 28 44 90 20 22 35 72 20 14 22 45 20 11 17 36 20 +minecraft:brown_candle 118 98 51 20 94 78 40 20 59 49 25 20 47 39 20 20 +minecraft:brown_candle[candles=1,lit=true,waterlogged=false] 118 98 51 20 94 78 40 20 59 49 25 20 47 39 20 20 +minecraft:brown_candle[candles=1,lit=false,waterlogged=true] 56 34 21 20 44 27 16 20 28 17 10 20 22 13 8 20 +minecraft:brown_candle[candles=1,lit=false,waterlogged=false] 56 34 21 20 44 27 16 20 28 17 10 20 22 13 8 20 +minecraft:brown_candle[candles=2,lit=true,waterlogged=true] 118 98 51 20 94 78 40 20 59 49 25 20 47 39 20 20 +minecraft:brown_candle[candles=2,lit=true,waterlogged=false] 118 98 51 20 94 78 40 20 59 49 25 20 47 39 20 20 +minecraft:brown_candle[candles=2,lit=false,waterlogged=true] 56 34 21 20 44 27 16 20 28 17 10 20 22 13 8 20 +minecraft:brown_candle[candles=2,lit=false,waterlogged=false] 56 34 21 20 44 27 16 20 28 17 10 20 22 13 8 20 +minecraft:brown_candle[candles=3,lit=true,waterlogged=true] 118 98 51 20 94 78 40 20 59 49 25 20 47 39 20 20 +minecraft:brown_candle[candles=3,lit=true,waterlogged=false] 118 98 51 20 94 78 40 20 59 49 25 20 47 39 20 20 +minecraft:brown_candle[candles=3,lit=false,waterlogged=true] 56 34 21 20 44 27 16 20 28 17 10 20 22 13 8 20 +minecraft:brown_candle[candles=3,lit=false,waterlogged=false] 56 34 21 20 44 27 16 20 28 17 10 20 22 13 8 20 +minecraft:brown_candle[candles=4,lit=true,waterlogged=true] 118 98 51 20 94 78 40 20 59 49 25 20 47 39 20 20 +minecraft:brown_candle[candles=4,lit=true,waterlogged=false] 118 98 51 20 94 78 40 20 59 49 25 20 47 39 20 20 +minecraft:brown_candle[candles=4,lit=false,waterlogged=true] 56 34 21 20 44 27 16 20 28 17 10 20 22 13 8 20 +minecraft:brown_candle[candles=4,lit=false,waterlogged=false] 56 34 21 20 44 27 16 20 28 17 10 20 22 13 8 20 +minecraft:green_candle 107 118 50 20 85 94 40 20 53 59 25 20 42 47 20 20 +minecraft:green_candle[candles=1,lit=true,waterlogged=false] 107 118 50 20 85 94 40 20 53 59 25 20 42 47 20 20 +minecraft:green_candle[candles=1,lit=false,waterlogged=true] 36 68 19 20 28 54 15 20 18 34 9 20 14 27 7 20 +minecraft:green_candle[candles=1,lit=false,waterlogged=false] 36 68 19 20 28 54 15 20 18 34 9 20 14 27 7 20 +minecraft:green_candle[candles=2,lit=true,waterlogged=true] 107 118 50 20 85 94 40 20 53 59 25 20 42 47 20 20 +minecraft:green_candle[candles=2,lit=true,waterlogged=false] 107 118 50 20 85 94 40 20 53 59 25 20 42 47 20 20 +minecraft:green_candle[candles=2,lit=false,waterlogged=true] 36 68 19 20 28 54 15 20 18 34 9 20 14 27 7 20 +minecraft:green_candle[candles=2,lit=false,waterlogged=false] 36 68 19 20 28 54 15 20 18 34 9 20 14 27 7 20 +minecraft:green_candle[candles=3,lit=true,waterlogged=true] 107 118 50 20 85 94 40 20 53 59 25 20 42 47 20 20 +minecraft:green_candle[candles=3,lit=true,waterlogged=false] 107 118 50 20 85 94 40 20 53 59 25 20 42 47 20 20 +minecraft:green_candle[candles=3,lit=false,waterlogged=true] 36 68 19 20 28 54 15 20 18 34 9 20 14 27 7 20 +minecraft:green_candle[candles=3,lit=false,waterlogged=false] 36 68 19 20 28 54 15 20 18 34 9 20 14 27 7 20 +minecraft:green_candle[candles=4,lit=true,waterlogged=true] 107 118 50 20 85 94 40 20 53 59 25 20 42 47 20 20 +minecraft:green_candle[candles=4,lit=true,waterlogged=false] 107 118 50 20 85 94 40 20 53 59 25 20 42 47 20 20 +minecraft:green_candle[candles=4,lit=false,waterlogged=true] 36 68 19 20 28 54 15 20 18 34 9 20 14 27 7 20 +minecraft:green_candle[candles=4,lit=false,waterlogged=false] 36 68 19 20 28 54 15 20 18 34 9 20 14 27 7 20 +minecraft:red_candle 134 92 55 20 107 73 44 20 67 46 27 20 53 36 22 20 +minecraft:red_candle[candles=1,lit=true,waterlogged=false] 134 92 55 20 107 73 44 20 67 46 27 20 53 36 22 20 +minecraft:red_candle[candles=1,lit=false,waterlogged=true] 87 24 26 20 69 19 20 20 43 12 13 20 34 9 10 20 +minecraft:red_candle[candles=1,lit=false,waterlogged=false] 87 24 26 20 69 19 20 20 43 12 13 20 34 9 10 20 +minecraft:red_candle[candles=2,lit=true,waterlogged=true] 134 92 55 20 107 73 44 20 67 46 27 20 53 36 22 20 +minecraft:red_candle[candles=2,lit=true,waterlogged=false] 134 92 55 20 107 73 44 20 67 46 27 20 53 36 22 20 +minecraft:red_candle[candles=2,lit=false,waterlogged=true] 87 24 26 20 69 19 20 20 43 12 13 20 34 9 10 20 +minecraft:red_candle[candles=2,lit=false,waterlogged=false] 87 24 26 20 69 19 20 20 43 12 13 20 34 9 10 20 +minecraft:red_candle[candles=3,lit=true,waterlogged=true] 134 92 55 20 107 73 44 20 67 46 27 20 53 36 22 20 +minecraft:red_candle[candles=3,lit=true,waterlogged=false] 134 92 55 20 107 73 44 20 67 46 27 20 53 36 22 20 +minecraft:red_candle[candles=3,lit=false,waterlogged=true] 87 24 26 20 69 19 20 20 43 12 13 20 34 9 10 20 +minecraft:red_candle[candles=3,lit=false,waterlogged=false] 87 24 26 20 69 19 20 20 43 12 13 20 34 9 10 20 +minecraft:red_candle[candles=4,lit=true,waterlogged=true] 134 92 55 20 107 73 44 20 67 46 27 20 53 36 22 20 +minecraft:red_candle[candles=4,lit=true,waterlogged=false] 134 92 55 20 107 73 44 20 67 46 27 20 53 36 22 20 +minecraft:red_candle[candles=4,lit=false,waterlogged=true] 87 24 26 20 69 19 20 20 43 12 13 20 34 9 10 20 +minecraft:red_candle[candles=4,lit=false,waterlogged=false] 87 24 26 20 69 19 20 20 43 12 13 20 34 9 10 20 +minecraft:black_candle 98 88 47 20 78 70 37 20 49 44 23 20 39 35 18 20 +minecraft:black_candle[candles=1,lit=true,waterlogged=false] 98 88 47 20 78 70 37 20 49 44 23 20 39 35 18 20 +minecraft:black_candle[candles=1,lit=false,waterlogged=true] 18 17 16 20 14 13 12 20 9 8 8 20 7 6 6 20 +minecraft:black_candle[candles=1,lit=false,waterlogged=false] 18 17 16 20 14 13 12 20 9 8 8 20 7 6 6 20 +minecraft:black_candle[candles=2,lit=true,waterlogged=true] 98 88 47 20 78 70 37 20 49 44 23 20 39 35 18 20 +minecraft:black_candle[candles=2,lit=true,waterlogged=false] 98 88 47 20 78 70 37 20 49 44 23 20 39 35 18 20 +minecraft:black_candle[candles=2,lit=false,waterlogged=true] 18 17 16 20 14 13 12 20 9 8 8 20 7 6 6 20 +minecraft:black_candle[candles=2,lit=false,waterlogged=false] 18 17 16 20 14 13 12 20 9 8 8 20 7 6 6 20 +minecraft:black_candle[candles=3,lit=true,waterlogged=true] 98 88 47 20 78 70 37 20 49 44 23 20 39 35 18 20 +minecraft:black_candle[candles=3,lit=true,waterlogged=false] 98 88 47 20 78 70 37 20 49 44 23 20 39 35 18 20 +minecraft:black_candle[candles=3,lit=false,waterlogged=true] 18 17 16 20 14 13 12 20 9 8 8 20 7 6 6 20 +minecraft:black_candle[candles=3,lit=false,waterlogged=false] 18 17 16 20 14 13 12 20 9 8 8 20 7 6 6 20 +minecraft:black_candle[candles=4,lit=true,waterlogged=true] 98 88 47 20 78 70 37 20 49 44 23 20 39 35 18 20 +minecraft:black_candle[candles=4,lit=true,waterlogged=false] 98 88 47 20 78 70 37 20 49 44 23 20 39 35 18 20 +minecraft:black_candle[candles=4,lit=false,waterlogged=true] 18 17 16 20 14 13 12 20 9 8 8 20 7 6 6 20 +minecraft:black_candle[candles=4,lit=false,waterlogged=false] 18 17 16 20 14 13 12 20 9 8 8 20 7 6 6 20 minecraft:candle_cake 196 188 189 195 156 150 151 195 98 94 94 195 78 75 75 195 minecraft:candle_cake[lit=false] 196 188 189 195 156 150 151 195 98 94 94 195 78 75 75 195 minecraft:white_candle_cake 196 188 189 195 156 150 151 195 98 94 94 195 78 75 75 195 @@ -17208,803 +17221,803 @@ minecraft:red_candle_cake 196 188 189 195 156 150 151 195 98 94 94 195 78 75 75 minecraft:red_candle_cake[lit=false] 196 188 189 195 156 150 151 195 98 94 94 195 78 75 75 195 minecraft:black_candle_cake 196 188 189 195 156 150 151 195 98 94 94 195 78 75 75 195 minecraft:black_candle_cake[lit=false] 196 188 189 195 156 150 151 195 98 94 94 195 78 75 75 195 -minecraft:amethyst_block 133 97 191 255 106 77 152 255 66 48 95 255 53 38 76 255 -minecraft:budding_amethyst 132 96 186 255 105 76 148 255 66 48 93 255 52 38 74 255 -minecraft:amethyst_cluster 163 126 207 139 130 100 165 139 81 63 103 139 65 50 82 139 -minecraft:amethyst_cluster[facing=north,waterlogged=false] 163 126 207 139 130 100 165 139 81 63 103 139 65 50 82 139 -minecraft:amethyst_cluster[facing=east,waterlogged=true] 163 126 207 139 130 100 165 139 81 63 103 139 65 50 82 139 -minecraft:amethyst_cluster[facing=east,waterlogged=false] 163 126 207 139 130 100 165 139 81 63 103 139 65 50 82 139 -minecraft:amethyst_cluster[facing=south,waterlogged=true] 163 126 207 139 130 100 165 139 81 63 103 139 65 50 82 139 -minecraft:amethyst_cluster[facing=south,waterlogged=false] 163 126 207 139 130 100 165 139 81 63 103 139 65 50 82 139 -minecraft:amethyst_cluster[facing=west,waterlogged=true] 163 126 207 139 130 100 165 139 81 63 103 139 65 50 82 139 -minecraft:amethyst_cluster[facing=west,waterlogged=false] 163 126 207 139 130 100 165 139 81 63 103 139 65 50 82 139 -minecraft:amethyst_cluster[facing=up,waterlogged=true] 163 126 207 139 130 100 165 139 81 63 103 139 65 50 82 139 -minecraft:amethyst_cluster[facing=up,waterlogged=false] 163 126 207 139 130 100 165 139 81 63 103 139 65 50 82 139 -minecraft:amethyst_cluster[facing=down,waterlogged=true] 163 126 207 139 130 100 165 139 81 63 103 139 65 50 82 139 -minecraft:amethyst_cluster[facing=down,waterlogged=false] 163 126 207 139 130 100 165 139 81 63 103 139 65 50 82 139 -minecraft:large_amethyst_bud 161 126 202 77 128 100 161 77 80 63 101 77 64 50 80 77 -minecraft:large_amethyst_bud[facing=north,waterlogged=false] 161 126 202 77 128 100 161 77 80 63 101 77 64 50 80 77 -minecraft:large_amethyst_bud[facing=east,waterlogged=true] 161 126 202 77 128 100 161 77 80 63 101 77 64 50 80 77 -minecraft:large_amethyst_bud[facing=east,waterlogged=false] 161 126 202 77 128 100 161 77 80 63 101 77 64 50 80 77 -minecraft:large_amethyst_bud[facing=south,waterlogged=true] 161 126 202 77 128 100 161 77 80 63 101 77 64 50 80 77 -minecraft:large_amethyst_bud[facing=south,waterlogged=false] 161 126 202 77 128 100 161 77 80 63 101 77 64 50 80 77 -minecraft:large_amethyst_bud[facing=west,waterlogged=true] 161 126 202 77 128 100 161 77 80 63 101 77 64 50 80 77 -minecraft:large_amethyst_bud[facing=west,waterlogged=false] 161 126 202 77 128 100 161 77 80 63 101 77 64 50 80 77 -minecraft:large_amethyst_bud[facing=up,waterlogged=true] 161 126 202 77 128 100 161 77 80 63 101 77 64 50 80 77 -minecraft:large_amethyst_bud[facing=up,waterlogged=false] 161 126 202 77 128 100 161 77 80 63 101 77 64 50 80 77 -minecraft:large_amethyst_bud[facing=down,waterlogged=true] 161 126 202 77 128 100 161 77 80 63 101 77 64 50 80 77 -minecraft:large_amethyst_bud[facing=down,waterlogged=false] 161 126 202 77 128 100 161 77 80 63 101 77 64 50 80 77 -minecraft:medium_amethyst_bud 158 120 201 50 126 96 160 50 79 60 100 50 63 48 80 50 -minecraft:medium_amethyst_bud[facing=north,waterlogged=false] 158 120 201 50 126 96 160 50 79 60 100 50 63 48 80 50 -minecraft:medium_amethyst_bud[facing=east,waterlogged=true] 158 120 201 50 126 96 160 50 79 60 100 50 63 48 80 50 -minecraft:medium_amethyst_bud[facing=east,waterlogged=false] 158 120 201 50 126 96 160 50 79 60 100 50 63 48 80 50 -minecraft:medium_amethyst_bud[facing=south,waterlogged=true] 158 120 201 50 126 96 160 50 79 60 100 50 63 48 80 50 -minecraft:medium_amethyst_bud[facing=south,waterlogged=false] 158 120 201 50 126 96 160 50 79 60 100 50 63 48 80 50 -minecraft:medium_amethyst_bud[facing=west,waterlogged=true] 158 120 201 50 126 96 160 50 79 60 100 50 63 48 80 50 -minecraft:medium_amethyst_bud[facing=west,waterlogged=false] 158 120 201 50 126 96 160 50 79 60 100 50 63 48 80 50 -minecraft:medium_amethyst_bud[facing=up,waterlogged=true] 158 120 201 50 126 96 160 50 79 60 100 50 63 48 80 50 -minecraft:medium_amethyst_bud[facing=up,waterlogged=false] 158 120 201 50 126 96 160 50 79 60 100 50 63 48 80 50 -minecraft:medium_amethyst_bud[facing=down,waterlogged=true] 158 120 201 50 126 96 160 50 79 60 100 50 63 48 80 50 -minecraft:medium_amethyst_bud[facing=down,waterlogged=false] 158 120 201 50 126 96 160 50 79 60 100 50 63 48 80 50 -minecraft:small_amethyst_bud 131 99 192 31 104 79 153 31 65 49 96 31 52 39 76 31 -minecraft:small_amethyst_bud[facing=north,waterlogged=false] 131 99 192 31 104 79 153 31 65 49 96 31 52 39 76 31 -minecraft:small_amethyst_bud[facing=east,waterlogged=true] 131 99 192 31 104 79 153 31 65 49 96 31 52 39 76 31 -minecraft:small_amethyst_bud[facing=east,waterlogged=false] 131 99 192 31 104 79 153 31 65 49 96 31 52 39 76 31 -minecraft:small_amethyst_bud[facing=south,waterlogged=true] 131 99 192 31 104 79 153 31 65 49 96 31 52 39 76 31 -minecraft:small_amethyst_bud[facing=south,waterlogged=false] 131 99 192 31 104 79 153 31 65 49 96 31 52 39 76 31 -minecraft:small_amethyst_bud[facing=west,waterlogged=true] 131 99 192 31 104 79 153 31 65 49 96 31 52 39 76 31 -minecraft:small_amethyst_bud[facing=west,waterlogged=false] 131 99 192 31 104 79 153 31 65 49 96 31 52 39 76 31 -minecraft:small_amethyst_bud[facing=up,waterlogged=true] 131 99 192 31 104 79 153 31 65 49 96 31 52 39 76 31 -minecraft:small_amethyst_bud[facing=up,waterlogged=false] 131 99 192 31 104 79 153 31 65 49 96 31 52 39 76 31 -minecraft:small_amethyst_bud[facing=down,waterlogged=true] 131 99 192 31 104 79 153 31 65 49 96 31 52 39 76 31 -minecraft:small_amethyst_bud[facing=down,waterlogged=false] 131 99 192 31 104 79 153 31 65 49 96 31 52 39 76 31 -minecraft:tuff 108 109 102 255 86 87 81 255 54 54 51 255 43 43 40 255 -minecraft:calcite 223 224 220 255 178 179 176 255 111 112 110 255 89 89 88 255 -minecraft:tinted_glass 44 38 46 131 35 30 36 131 22 19 23 131 17 15 18 131 -minecraft:powder_snow 248 253 253 255 198 202 202 255 124 126 126 255 99 101 101 255 -minecraft:sculk_sensor 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 -minecraft:sculk_sensor[power=0,sculk_sensor_phase=inactive,waterlogged=false] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 -minecraft:sculk_sensor[power=0,sculk_sensor_phase=active,waterlogged=true] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 -minecraft:sculk_sensor[power=0,sculk_sensor_phase=active,waterlogged=false] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 -minecraft:sculk_sensor[power=0,sculk_sensor_phase=cooldown,waterlogged=true] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 -minecraft:sculk_sensor[power=0,sculk_sensor_phase=cooldown,waterlogged=false] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 -minecraft:sculk_sensor[power=1,sculk_sensor_phase=inactive,waterlogged=true] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 -minecraft:sculk_sensor[power=1,sculk_sensor_phase=inactive,waterlogged=false] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 -minecraft:sculk_sensor[power=1,sculk_sensor_phase=active,waterlogged=true] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 -minecraft:sculk_sensor[power=1,sculk_sensor_phase=active,waterlogged=false] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 -minecraft:sculk_sensor[power=1,sculk_sensor_phase=cooldown,waterlogged=true] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 -minecraft:sculk_sensor[power=1,sculk_sensor_phase=cooldown,waterlogged=false] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 -minecraft:sculk_sensor[power=2,sculk_sensor_phase=inactive,waterlogged=true] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 -minecraft:sculk_sensor[power=2,sculk_sensor_phase=inactive,waterlogged=false] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 -minecraft:sculk_sensor[power=2,sculk_sensor_phase=active,waterlogged=true] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 -minecraft:sculk_sensor[power=2,sculk_sensor_phase=active,waterlogged=false] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 -minecraft:oxidized_copper 82 162 132 255 65 129 105 255 41 81 66 255 32 64 52 255 -minecraft:weathered_copper 108 153 110 255 86 122 88 255 54 76 55 255 43 61 44 255 -minecraft:exposed_copper 161 125 103 255 128 100 82 255 80 62 51 255 64 50 41 255 -minecraft:copper_block 192 107 79 255 153 85 63 255 96 53 39 255 76 42 31 255 -minecraft:copper_ore 124 125 120 255 99 100 96 255 62 62 60 255 49 50 48 255 -minecraft:deepslate_copper_ore 92 93 89 255 73 74 71 255 46 46 44 255 36 37 35 255 -minecraft:oxidized_cut_copper 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:weathered_cut_copper 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:exposed_cut_copper 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:cut_copper 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:oxidized_cut_copper_stairs 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:weathered_cut_copper_stairs 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:exposed_cut_copper_stairs 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:cut_copper_stairs 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:oxidized_cut_copper_slab 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_slab[type=top,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_slab[type=bottom,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_slab[type=bottom,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_slab[type=double,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:oxidized_cut_copper_slab[type=double,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:weathered_cut_copper_slab 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_slab[type=top,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_slab[type=bottom,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_slab[type=bottom,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_slab[type=double,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:weathered_cut_copper_slab[type=double,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:exposed_cut_copper_slab 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_slab[type=top,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_slab[type=bottom,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_slab[type=bottom,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_slab[type=double,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:exposed_cut_copper_slab[type=double,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:cut_copper_slab 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_slab[type=top,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_slab[type=bottom,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_slab[type=bottom,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_slab[type=double,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:cut_copper_slab[type=double,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_copper_block 192 107 79 255 153 85 63 255 96 53 39 255 76 42 31 255 -minecraft:waxed_weathered_copper 108 153 110 255 86 122 88 255 54 76 55 255 43 61 44 255 -minecraft:waxed_exposed_copper 161 125 103 255 128 100 82 255 80 62 51 255 64 50 41 255 -minecraft:waxed_oxidized_copper 82 162 132 255 65 129 105 255 41 81 66 255 32 64 52 255 -minecraft:waxed_oxidized_cut_copper 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_weathered_cut_copper 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_exposed_cut_copper 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_cut_copper 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_oxidized_cut_copper_stairs 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_weathered_cut_copper_stairs 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_exposed_cut_copper_stairs 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_cut_copper_stairs 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_oxidized_cut_copper_slab 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_slab[type=top,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_slab[type=bottom,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_slab[type=bottom,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_slab[type=double,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_oxidized_cut_copper_slab[type=double,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 -minecraft:waxed_weathered_cut_copper_slab 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_slab[type=top,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_slab[type=bottom,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_slab[type=bottom,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_slab[type=double,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_weathered_cut_copper_slab[type=double,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 -minecraft:waxed_exposed_cut_copper_slab 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_slab[type=top,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_slab[type=bottom,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_slab[type=bottom,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_slab[type=double,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_exposed_cut_copper_slab[type=double,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 -minecraft:waxed_cut_copper_slab 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_slab[type=top,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_slab[type=bottom,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_slab[type=bottom,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_slab[type=double,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:waxed_cut_copper_slab[type=double,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 -minecraft:pointed_dripstone 138 111 95 85 110 88 76 85 69 55 47 85 55 44 38 85 -minecraft:pointed_dripstone[thickness=tip_merge,vertical_direction=up,waterlogged=false] 138 111 95 85 110 88 76 85 69 55 47 85 55 44 38 85 -minecraft:pointed_dripstone[thickness=tip_merge,vertical_direction=down,waterlogged=true] 138 111 95 85 110 88 76 85 69 55 47 85 55 44 38 85 -minecraft:pointed_dripstone[thickness=tip_merge,vertical_direction=down,waterlogged=false] 138 111 95 85 110 88 76 85 69 55 47 85 55 44 38 85 -minecraft:pointed_dripstone[thickness=tip,vertical_direction=up,waterlogged=true] 136 109 93 52 108 87 74 52 68 54 46 52 54 43 37 52 -minecraft:pointed_dripstone[thickness=tip,vertical_direction=up,waterlogged=false] 136 109 93 52 108 87 74 52 68 54 46 52 54 43 37 52 -minecraft:pointed_dripstone[thickness=tip,vertical_direction=down,waterlogged=true] 136 109 93 52 108 87 74 52 68 54 46 52 54 43 37 52 -minecraft:pointed_dripstone[thickness=tip,vertical_direction=down,waterlogged=false] 136 109 93 52 108 87 74 52 68 54 46 52 54 43 37 52 -minecraft:pointed_dripstone[thickness=frustum,vertical_direction=up,waterlogged=true] 128 102 89 165 102 81 71 165 64 51 44 165 51 40 35 165 -minecraft:pointed_dripstone[thickness=frustum,vertical_direction=up,waterlogged=false] 128 102 89 165 102 81 71 165 64 51 44 165 51 40 35 165 -minecraft:pointed_dripstone[thickness=frustum,vertical_direction=down,waterlogged=true] 128 102 89 165 102 81 71 165 64 51 44 165 51 40 35 165 -minecraft:pointed_dripstone[thickness=frustum,vertical_direction=down,waterlogged=false] 128 102 89 165 102 81 71 165 64 51 44 165 51 40 35 165 -minecraft:pointed_dripstone[thickness=middle,vertical_direction=up,waterlogged=true] 130 103 90 185 104 82 72 185 65 51 45 185 52 41 36 185 -minecraft:pointed_dripstone[thickness=middle,vertical_direction=up,waterlogged=false] 130 103 90 185 104 82 72 185 65 51 45 185 52 41 36 185 -minecraft:pointed_dripstone[thickness=middle,vertical_direction=down,waterlogged=true] 130 103 90 185 104 82 72 185 65 51 45 185 52 41 36 185 -minecraft:pointed_dripstone[thickness=middle,vertical_direction=down,waterlogged=false] 130 103 90 185 104 82 72 185 65 51 45 185 52 41 36 185 -minecraft:pointed_dripstone[thickness=base,vertical_direction=up,waterlogged=true] 129 102 89 229 103 81 71 229 64 51 44 229 51 40 35 229 -minecraft:pointed_dripstone[thickness=base,vertical_direction=up,waterlogged=false] 129 102 89 229 103 81 71 229 64 51 44 229 51 40 35 229 -minecraft:pointed_dripstone[thickness=base,vertical_direction=down,waterlogged=true] 129 102 89 229 103 81 71 229 64 51 44 229 51 40 35 229 -minecraft:pointed_dripstone[thickness=base,vertical_direction=down,waterlogged=false] 129 102 89 229 103 81 71 229 64 51 44 229 51 40 35 229 -minecraft:dripstone_block 134 107 92 255 107 85 73 255 67 53 46 255 53 42 36 255 +minecraft:amethyst_block 158 101 202 255 126 80 161 255 79 50 101 255 63 40 80 255 +minecraft:budding_amethyst 148 94 189 255 118 75 151 255 74 47 94 255 59 37 75 255 +minecraft:amethyst_cluster 144 95 175 121 115 76 140 121 72 47 87 121 57 38 70 121 +minecraft:amethyst_cluster[facing=north,waterlogged=false] 144 95 175 121 115 76 140 121 72 47 87 121 57 38 70 121 +minecraft:amethyst_cluster[facing=east,waterlogged=true] 144 95 175 121 115 76 140 121 72 47 87 121 57 38 70 121 +minecraft:amethyst_cluster[facing=east,waterlogged=false] 144 95 175 121 115 76 140 121 72 47 87 121 57 38 70 121 +minecraft:amethyst_cluster[facing=south,waterlogged=true] 144 95 175 121 115 76 140 121 72 47 87 121 57 38 70 121 +minecraft:amethyst_cluster[facing=south,waterlogged=false] 144 95 175 121 115 76 140 121 72 47 87 121 57 38 70 121 +minecraft:amethyst_cluster[facing=west,waterlogged=true] 144 95 175 121 115 76 140 121 72 47 87 121 57 38 70 121 +minecraft:amethyst_cluster[facing=west,waterlogged=false] 144 95 175 121 115 76 140 121 72 47 87 121 57 38 70 121 +minecraft:amethyst_cluster[facing=up,waterlogged=true] 144 95 175 121 115 76 140 121 72 47 87 121 57 38 70 121 +minecraft:amethyst_cluster[facing=up,waterlogged=false] 144 95 175 121 115 76 140 121 72 47 87 121 57 38 70 121 +minecraft:amethyst_cluster[facing=down,waterlogged=true] 144 95 175 121 115 76 140 121 72 47 87 121 57 38 70 121 +minecraft:amethyst_cluster[facing=down,waterlogged=false] 144 95 175 121 115 76 140 121 72 47 87 121 57 38 70 121 +minecraft:large_amethyst_bud 142 93 173 69 113 74 138 69 71 46 86 69 56 37 69 69 +minecraft:large_amethyst_bud[facing=north,waterlogged=false] 142 93 173 69 113 74 138 69 71 46 86 69 56 37 69 69 +minecraft:large_amethyst_bud[facing=east,waterlogged=true] 142 93 173 69 113 74 138 69 71 46 86 69 56 37 69 69 +minecraft:large_amethyst_bud[facing=east,waterlogged=false] 142 93 173 69 113 74 138 69 71 46 86 69 56 37 69 69 +minecraft:large_amethyst_bud[facing=south,waterlogged=true] 142 93 173 69 113 74 138 69 71 46 86 69 56 37 69 69 +minecraft:large_amethyst_bud[facing=south,waterlogged=false] 142 93 173 69 113 74 138 69 71 46 86 69 56 37 69 69 +minecraft:large_amethyst_bud[facing=west,waterlogged=true] 142 93 173 69 113 74 138 69 71 46 86 69 56 37 69 69 +minecraft:large_amethyst_bud[facing=west,waterlogged=false] 142 93 173 69 113 74 138 69 71 46 86 69 56 37 69 69 +minecraft:large_amethyst_bud[facing=up,waterlogged=true] 142 93 173 69 113 74 138 69 71 46 86 69 56 37 69 69 +minecraft:large_amethyst_bud[facing=up,waterlogged=false] 142 93 173 69 113 74 138 69 71 46 86 69 56 37 69 69 +minecraft:large_amethyst_bud[facing=down,waterlogged=true] 142 93 173 69 113 74 138 69 71 46 86 69 56 37 69 69 +minecraft:large_amethyst_bud[facing=down,waterlogged=false] 142 93 173 69 113 74 138 69 71 46 86 69 56 37 69 69 +minecraft:medium_amethyst_bud 137 87 168 41 109 69 134 41 68 43 84 41 54 34 67 41 +minecraft:medium_amethyst_bud[facing=north,waterlogged=false] 137 87 168 41 109 69 134 41 68 43 84 41 54 34 67 41 +minecraft:medium_amethyst_bud[facing=east,waterlogged=true] 137 87 168 41 109 69 134 41 68 43 84 41 54 34 67 41 +minecraft:medium_amethyst_bud[facing=east,waterlogged=false] 137 87 168 41 109 69 134 41 68 43 84 41 54 34 67 41 +minecraft:medium_amethyst_bud[facing=south,waterlogged=true] 137 87 168 41 109 69 134 41 68 43 84 41 54 34 67 41 +minecraft:medium_amethyst_bud[facing=south,waterlogged=false] 137 87 168 41 109 69 134 41 68 43 84 41 54 34 67 41 +minecraft:medium_amethyst_bud[facing=west,waterlogged=true] 137 87 168 41 109 69 134 41 68 43 84 41 54 34 67 41 +minecraft:medium_amethyst_bud[facing=west,waterlogged=false] 137 87 168 41 109 69 134 41 68 43 84 41 54 34 67 41 +minecraft:medium_amethyst_bud[facing=up,waterlogged=true] 137 87 168 41 109 69 134 41 68 43 84 41 54 34 67 41 +minecraft:medium_amethyst_bud[facing=up,waterlogged=false] 137 87 168 41 109 69 134 41 68 43 84 41 54 34 67 41 +minecraft:medium_amethyst_bud[facing=down,waterlogged=true] 137 87 168 41 109 69 134 41 68 43 84 41 54 34 67 41 +minecraft:medium_amethyst_bud[facing=down,waterlogged=false] 137 87 168 41 109 69 134 41 68 43 84 41 54 34 67 41 +minecraft:small_amethyst_bud 132 84 162 22 105 67 129 22 66 42 81 22 52 33 64 22 +minecraft:small_amethyst_bud[facing=north,waterlogged=false] 132 84 162 22 105 67 129 22 66 42 81 22 52 33 64 22 +minecraft:small_amethyst_bud[facing=east,waterlogged=true] 132 84 162 22 105 67 129 22 66 42 81 22 52 33 64 22 +minecraft:small_amethyst_bud[facing=east,waterlogged=false] 132 84 162 22 105 67 129 22 66 42 81 22 52 33 64 22 +minecraft:small_amethyst_bud[facing=south,waterlogged=true] 132 84 162 22 105 67 129 22 66 42 81 22 52 33 64 22 +minecraft:small_amethyst_bud[facing=south,waterlogged=false] 132 84 162 22 105 67 129 22 66 42 81 22 52 33 64 22 +minecraft:small_amethyst_bud[facing=west,waterlogged=true] 132 84 162 22 105 67 129 22 66 42 81 22 52 33 64 22 +minecraft:small_amethyst_bud[facing=west,waterlogged=false] 132 84 162 22 105 67 129 22 66 42 81 22 52 33 64 22 +minecraft:small_amethyst_bud[facing=up,waterlogged=true] 132 84 162 22 105 67 129 22 66 42 81 22 52 33 64 22 +minecraft:small_amethyst_bud[facing=up,waterlogged=false] 132 84 162 22 105 67 129 22 66 42 81 22 52 33 64 22 +minecraft:small_amethyst_bud[facing=down,waterlogged=true] 132 84 162 22 105 67 129 22 66 42 81 22 52 33 64 22 +minecraft:small_amethyst_bud[facing=down,waterlogged=false] 132 84 162 22 105 67 129 22 66 42 81 22 52 33 64 22 +minecraft:tuff 83 86 85 255 66 68 68 255 41 43 42 255 33 34 34 255 +minecraft:calcite 197 195 192 255 157 156 153 255 98 97 96 255 78 78 76 255 +minecraft:tinted_glass 60 59 54 194 48 47 43 194 30 29 27 194 24 23 21 194 +minecraft:powder_snow 214 225 233 255 171 180 186 255 107 112 116 255 85 90 93 255 +minecraft:sculk_sensor 5 14 30 127 4 11 24 127 2 7 15 127 2 5 12 127 +minecraft:sculk_sensor[power=0,sculk_sensor_phase=inactive,waterlogged=false] 5 14 30 127 4 11 24 127 2 7 15 127 2 5 12 127 +minecraft:sculk_sensor[power=0,sculk_sensor_phase=active,waterlogged=true] 5 14 30 127 4 11 24 127 2 7 15 127 2 5 12 127 +minecraft:sculk_sensor[power=0,sculk_sensor_phase=active,waterlogged=false] 5 14 30 127 4 11 24 127 2 7 15 127 2 5 12 127 +minecraft:sculk_sensor[power=0,sculk_sensor_phase=cooldown,waterlogged=true] 5 14 30 127 4 11 24 127 2 7 15 127 2 5 12 127 +minecraft:sculk_sensor[power=0,sculk_sensor_phase=cooldown,waterlogged=false] 5 14 30 127 4 11 24 127 2 7 15 127 2 5 12 127 +minecraft:sculk_sensor[power=1,sculk_sensor_phase=inactive,waterlogged=true] 5 14 30 127 4 11 24 127 2 7 15 127 2 5 12 127 +minecraft:sculk_sensor[power=1,sculk_sensor_phase=inactive,waterlogged=false] 5 14 30 127 4 11 24 127 2 7 15 127 2 5 12 127 +minecraft:sculk_sensor[power=1,sculk_sensor_phase=active,waterlogged=true] 5 14 30 127 4 11 24 127 2 7 15 127 2 5 12 127 +minecraft:sculk_sensor[power=1,sculk_sensor_phase=active,waterlogged=false] 5 14 30 127 4 11 24 127 2 7 15 127 2 5 12 127 +minecraft:sculk_sensor[power=1,sculk_sensor_phase=cooldown,waterlogged=true] 5 14 30 127 4 11 24 127 2 7 15 127 2 5 12 127 +minecraft:sculk_sensor[power=1,sculk_sensor_phase=cooldown,waterlogged=false] 5 14 30 127 4 11 24 127 2 7 15 127 2 5 12 127 +minecraft:sculk_sensor[power=2,sculk_sensor_phase=inactive,waterlogged=true] 5 14 30 127 4 11 24 127 2 7 15 127 2 5 12 127 +minecraft:sculk_sensor[power=2,sculk_sensor_phase=inactive,waterlogged=false] 5 14 30 127 4 11 24 127 2 7 15 127 2 5 12 127 +minecraft:sculk_sensor[power=2,sculk_sensor_phase=active,waterlogged=true] 5 14 30 127 4 11 24 127 2 7 15 127 2 5 12 127 +minecraft:sculk_sensor[power=2,sculk_sensor_phase=active,waterlogged=false] 5 14 30 127 4 11 24 127 2 7 15 127 2 5 12 127 +minecraft:oxidized_copper 36 99 79 255 28 79 63 255 18 49 39 255 14 39 31 255 +minecraft:weathered_copper 60 96 69 255 48 76 55 255 30 48 34 255 24 38 27 255 +minecraft:exposed_copper 113 77 40 255 90 61 32 255 56 38 20 255 45 30 16 255 +minecraft:copper_block 141 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:copper_ore 115 118 105 255 92 94 84 255 57 59 52 255 46 47 42 255 +minecraft:deepslate_copper_ore 75 67 63 255 60 53 50 255 37 33 31 255 30 26 25 255 +minecraft:oxidized_cut_copper 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:weathered_cut_copper 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:exposed_cut_copper 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:cut_copper 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:oxidized_cut_copper_stairs 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:weathered_cut_copper_stairs 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:exposed_cut_copper_stairs 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:cut_copper_stairs 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:oxidized_cut_copper_slab 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_slab[type=top,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_slab[type=bottom,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_slab[type=bottom,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_slab[type=double,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:oxidized_cut_copper_slab[type=double,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:weathered_cut_copper_slab 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_slab[type=top,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_slab[type=bottom,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_slab[type=bottom,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_slab[type=double,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:weathered_cut_copper_slab[type=double,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:exposed_cut_copper_slab 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_slab[type=top,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_slab[type=bottom,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_slab[type=bottom,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_slab[type=double,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:exposed_cut_copper_slab[type=double,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:cut_copper_slab 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_slab[type=top,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_slab[type=bottom,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_slab[type=bottom,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_slab[type=double,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:cut_copper_slab[type=double,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_copper_block 141 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_weathered_copper 60 96 69 255 48 76 55 255 30 48 34 255 24 38 27 255 +minecraft:waxed_exposed_copper 113 77 40 255 90 61 32 255 56 38 20 255 45 30 16 255 +minecraft:waxed_oxidized_copper 36 99 79 255 28 79 63 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_weathered_cut_copper 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_exposed_cut_copper 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_cut_copper 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_oxidized_cut_copper_stairs 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_weathered_cut_copper_stairs 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_exposed_cut_copper_stairs 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_cut_copper_stairs 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_oxidized_cut_copper_slab 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_slab[type=top,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_slab[type=bottom,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_slab[type=bottom,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_slab[type=double,waterlogged=true] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_oxidized_cut_copper_slab[type=double,waterlogged=false] 36 98 78 255 28 78 62 255 18 49 39 255 14 39 31 255 +minecraft:waxed_weathered_cut_copper_slab 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_slab[type=top,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_slab[type=bottom,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_slab[type=bottom,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_slab[type=double,waterlogged=true] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_weathered_cut_copper_slab[type=double,waterlogged=false] 60 95 68 255 48 76 54 255 30 47 34 255 24 38 27 255 +minecraft:waxed_exposed_cut_copper_slab 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_slab[type=top,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_slab[type=bottom,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_slab[type=bottom,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_slab[type=double,waterlogged=true] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_exposed_cut_copper_slab[type=double,waterlogged=false] 112 77 40 255 89 61 32 255 56 38 20 255 44 30 16 255 +minecraft:waxed_cut_copper_slab 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_slab[type=top,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_slab[type=bottom,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_slab[type=bottom,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_slab[type=double,waterlogged=true] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:waxed_cut_copper_slab[type=double,waterlogged=false] 140 76 33 255 112 60 26 255 70 38 16 255 56 30 13 255 +minecraft:pointed_dripstone 81 60 57 61 64 48 45 61 40 30 28 61 32 24 22 61 +minecraft:pointed_dripstone[thickness=tip_merge,vertical_direction=up,waterlogged=false] 81 60 57 61 64 48 45 61 40 30 28 61 32 24 22 61 +minecraft:pointed_dripstone[thickness=tip_merge,vertical_direction=down,waterlogged=true] 81 60 57 61 64 48 45 61 40 30 28 61 32 24 22 61 +minecraft:pointed_dripstone[thickness=tip_merge,vertical_direction=down,waterlogged=false] 81 60 57 61 64 48 45 61 40 30 28 61 32 24 22 61 +minecraft:pointed_dripstone[thickness=tip,vertical_direction=up,waterlogged=true] 77 57 53 52 61 45 42 52 38 28 26 52 30 22 21 52 +minecraft:pointed_dripstone[thickness=tip,vertical_direction=up,waterlogged=false] 77 57 53 52 61 45 42 52 38 28 26 52 30 22 21 52 +minecraft:pointed_dripstone[thickness=tip,vertical_direction=down,waterlogged=true] 77 56 53 45 61 44 42 45 38 28 26 45 30 22 21 45 +minecraft:pointed_dripstone[thickness=tip,vertical_direction=down,waterlogged=false] 77 56 53 45 61 44 42 45 38 28 26 45 30 22 21 45 +minecraft:pointed_dripstone[thickness=frustum,vertical_direction=up,waterlogged=true] 83 61 57 156 66 48 45 156 41 30 28 156 33 24 22 156 +minecraft:pointed_dripstone[thickness=frustum,vertical_direction=up,waterlogged=false] 83 61 57 156 66 48 45 156 41 30 28 156 33 24 22 156 +minecraft:pointed_dripstone[thickness=frustum,vertical_direction=down,waterlogged=true] 83 61 57 154 66 48 45 154 41 30 28 154 33 24 22 154 +minecraft:pointed_dripstone[thickness=frustum,vertical_direction=down,waterlogged=false] 83 61 57 154 66 48 45 154 41 30 28 154 33 24 22 154 +minecraft:pointed_dripstone[thickness=middle,vertical_direction=up,waterlogged=true] 84 62 58 174 67 49 46 174 42 31 29 174 33 24 23 174 +minecraft:pointed_dripstone[thickness=middle,vertical_direction=up,waterlogged=false] 84 62 58 174 67 49 46 174 42 31 29 174 33 24 23 174 +minecraft:pointed_dripstone[thickness=middle,vertical_direction=down,waterlogged=true] 84 62 58 174 67 49 46 174 42 31 29 174 33 24 23 174 +minecraft:pointed_dripstone[thickness=middle,vertical_direction=down,waterlogged=false] 84 62 58 174 67 49 46 174 42 31 29 174 33 24 23 174 +minecraft:pointed_dripstone[thickness=base,vertical_direction=up,waterlogged=true] 85 62 58 216 68 49 46 216 42 31 29 216 34 24 23 216 +minecraft:pointed_dripstone[thickness=base,vertical_direction=up,waterlogged=false] 85 62 58 216 68 49 46 216 42 31 29 216 34 24 23 216 +minecraft:pointed_dripstone[thickness=base,vertical_direction=down,waterlogged=true] 85 62 58 216 68 49 46 216 42 31 29 216 34 24 23 216 +minecraft:pointed_dripstone[thickness=base,vertical_direction=down,waterlogged=false] 85 62 58 216 68 49 46 216 42 31 29 216 34 24 23 216 +minecraft:dripstone_block 94 70 66 255 75 56 52 255 47 35 33 255 37 28 26 255 minecraft:cave_vines 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 minecraft:cave_vines[age=0,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 minecraft:cave_vines[age=1,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 @@ -18059,38 +18072,38 @@ minecraft:cave_vines[age=25,berries=true] 105 112 41 148 84 89 32 148 52 56 20 1 minecraft:cave_vines[age=25,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 minecraft:cave_vines_plant 105 107 40 159 84 85 32 159 52 53 20 159 42 42 16 159 minecraft:cave_vines_plant[berries=false] 88 101 38 143 70 80 30 143 44 50 19 143 35 40 15 143 -minecraft:spore_blossom 206 96 158 123 164 76 126 123 103 48 79 123 82 38 63 123 -minecraft:azalea 93 117 45 153 74 93 36 153 46 58 22 153 37 46 18 153 -minecraft:flowering_azalea 111 113 73 153 88 90 58 153 55 56 36 153 44 45 29 153 -minecraft:moss_carpet 89 109 45 255 71 87 36 255 44 54 22 255 35 43 18 255 -minecraft:moss_block 89 109 45 255 71 87 36 255 44 54 22 255 35 43 18 255 -minecraft:big_dripleaf_stem 91 115 45 83 72 92 36 83 45 57 22 83 36 46 18 83 -minecraft:big_dripleaf_stem[facing=north,waterlogged=false] 91 115 45 83 72 92 36 83 45 57 22 83 36 46 18 83 -minecraft:big_dripleaf_stem[facing=south,waterlogged=true] 91 115 45 83 72 92 36 83 45 57 22 83 36 46 18 83 -minecraft:big_dripleaf_stem[facing=south,waterlogged=false] 91 115 45 83 72 92 36 83 45 57 22 83 36 46 18 83 -minecraft:big_dripleaf_stem[facing=west,waterlogged=true] 91 115 45 83 72 92 36 83 45 57 22 83 36 46 18 83 -minecraft:big_dripleaf_stem[facing=west,waterlogged=false] 91 115 45 83 72 92 36 83 45 57 22 83 36 46 18 83 -minecraft:big_dripleaf_stem[facing=east,waterlogged=true] 91 115 45 83 72 92 36 83 45 57 22 83 36 46 18 83 -minecraft:big_dripleaf_stem[facing=east,waterlogged=false] 91 115 45 83 72 92 36 83 45 57 22 83 36 46 18 83 +minecraft:spore_blossom 206 97 147 123 164 77 117 123 103 48 73 123 82 38 58 123 +minecraft:azalea 85 107 55 160 68 85 44 160 42 53 27 160 34 42 22 160 +minecraft:flowering_azalea 101 108 79 161 80 86 63 161 50 54 39 161 40 43 31 161 +minecraft:moss_carpet 51 62 25 255 40 49 20 255 25 31 12 255 20 24 10 255 +minecraft:moss_block 51 62 25 255 40 49 20 255 25 31 12 255 20 24 10 255 +minecraft:big_dripleaf_stem 23 85 40 102 18 68 32 102 11 42 20 102 9 34 16 102 +minecraft:big_dripleaf_stem[facing=north,waterlogged=false] 23 85 40 102 18 68 32 102 11 42 20 102 9 34 16 102 +minecraft:big_dripleaf_stem[facing=south,waterlogged=true] 23 85 40 102 18 68 32 102 11 42 20 102 9 34 16 102 +minecraft:big_dripleaf_stem[facing=south,waterlogged=false] 23 85 40 102 18 68 32 102 11 42 20 102 9 34 16 102 +minecraft:big_dripleaf_stem[facing=west,waterlogged=true] 23 85 40 102 18 68 32 102 11 42 20 102 9 34 16 102 +minecraft:big_dripleaf_stem[facing=west,waterlogged=false] 23 85 40 102 18 68 32 102 11 42 20 102 9 34 16 102 +minecraft:big_dripleaf_stem[facing=east,waterlogged=true] 23 85 40 102 18 68 32 102 11 42 20 102 9 34 16 102 +minecraft:big_dripleaf_stem[facing=east,waterlogged=false] 23 85 40 102 18 68 32 102 11 42 20 102 9 34 16 102 minecraft:small_dripleaf 94 119 45 63 75 95 36 63 47 59 22 63 37 47 18 63 minecraft:small_dripleaf[facing=north,half=upper,waterlogged=false] 94 119 45 63 75 95 36 63 47 59 22 63 37 47 18 63 -minecraft:small_dripleaf[facing=north,half=lower,waterlogged=true] 94 122 45 42 75 97 36 42 47 61 22 42 37 48 18 42 -minecraft:small_dripleaf[facing=north,half=lower,waterlogged=false] 94 122 45 42 75 97 36 42 47 61 22 42 37 48 18 42 +minecraft:small_dripleaf[facing=north,half=lower,waterlogged=true] 42 78 39 105 33 62 31 105 21 39 19 105 16 31 15 105 +minecraft:small_dripleaf[facing=north,half=lower,waterlogged=false] 42 78 39 105 33 62 31 105 21 39 19 105 16 31 15 105 minecraft:small_dripleaf[facing=south,half=upper,waterlogged=true] 94 119 45 63 75 95 36 63 47 59 22 63 37 47 18 63 minecraft:small_dripleaf[facing=south,half=upper,waterlogged=false] 94 119 45 63 75 95 36 63 47 59 22 63 37 47 18 63 -minecraft:small_dripleaf[facing=south,half=lower,waterlogged=true] 94 122 45 42 75 97 36 42 47 61 22 42 37 48 18 42 -minecraft:small_dripleaf[facing=south,half=lower,waterlogged=false] 94 122 45 42 75 97 36 42 47 61 22 42 37 48 18 42 +minecraft:small_dripleaf[facing=south,half=lower,waterlogged=true] 42 78 39 105 33 62 31 105 21 39 19 105 16 31 15 105 +minecraft:small_dripleaf[facing=south,half=lower,waterlogged=false] 42 78 39 105 33 62 31 105 21 39 19 105 16 31 15 105 minecraft:small_dripleaf[facing=west,half=upper,waterlogged=true] 94 119 45 63 75 95 36 63 47 59 22 63 37 47 18 63 minecraft:small_dripleaf[facing=west,half=upper,waterlogged=false] 94 119 45 63 75 95 36 63 47 59 22 63 37 47 18 63 -minecraft:small_dripleaf[facing=west,half=lower,waterlogged=true] 94 122 45 42 75 97 36 42 47 61 22 42 37 48 18 42 -minecraft:small_dripleaf[facing=west,half=lower,waterlogged=false] 94 122 45 42 75 97 36 42 47 61 22 42 37 48 18 42 +minecraft:small_dripleaf[facing=west,half=lower,waterlogged=true] 42 78 39 105 33 62 31 105 21 39 19 105 16 31 15 105 +minecraft:small_dripleaf[facing=west,half=lower,waterlogged=false] 42 78 39 105 33 62 31 105 21 39 19 105 16 31 15 105 minecraft:small_dripleaf[facing=east,half=upper,waterlogged=true] 94 119 45 63 75 95 36 63 47 59 22 63 37 47 18 63 minecraft:small_dripleaf[facing=east,half=upper,waterlogged=false] 94 119 45 63 75 95 36 63 47 59 22 63 37 47 18 63 -minecraft:small_dripleaf[facing=east,half=lower,waterlogged=true] 94 122 45 42 75 97 36 42 47 61 22 42 37 48 18 42 -minecraft:small_dripleaf[facing=east,half=lower,waterlogged=false] 94 122 45 42 75 97 36 42 47 61 22 42 37 48 18 42 -minecraft:hanging_roots 161 115 91 74 128 92 72 74 80 57 45 74 64 46 36 74 -minecraft:hanging_roots[waterlogged=false] 161 115 91 74 128 92 72 74 80 57 45 74 64 46 36 74 -minecraft:rooted_dirt 144 103 76 255 115 82 60 255 72 51 38 255 57 41 30 255 +minecraft:small_dripleaf[facing=east,half=lower,waterlogged=true] 42 78 39 105 33 62 31 105 21 39 19 105 16 31 15 105 +minecraft:small_dripleaf[facing=east,half=lower,waterlogged=false] 42 78 39 105 33 62 31 105 21 39 19 105 16 31 15 105 +minecraft:hanging_roots 98 76 49 40 78 60 39 40 49 38 24 40 39 30 19 40 +minecraft:hanging_roots[waterlogged=false] 98 76 49 40 78 60 39 40 49 38 24 40 39 30 19 40 +minecraft:rooted_dirt 78 57 40 255 62 45 32 255 39 28 20 255 31 22 16 255 minecraft:deepslate 80 80 82 255 64 64 65 255 40 40 41 255 32 32 32 255 minecraft:deepslate[axis=y] 87 87 89 255 69 69 71 255 43 43 44 255 34 34 35 255 minecraft:deepslate[axis=z] 80 80 82 255 64 64 65 255 40 40 41 255 32 32 32 255 @@ -19738,13 +19751,13 @@ minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=false,waterlog minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 -minecraft:chiseled_deepslate 54 54 54 255 43 43 43 255 27 27 27 255 21 21 21 255 +minecraft:chiseled_deepslate 75 74 81 255 60 59 64 255 37 37 40 255 30 29 32 255 minecraft:cracked_deepslate_bricks 64 64 65 255 51 51 52 255 32 32 32 255 25 25 26 255 minecraft:cracked_deepslate_tiles 52 52 52 255 41 41 41 255 26 26 26 255 20 20 20 255 minecraft:infested_deepslate 80 80 82 255 64 64 65 255 40 40 41 255 32 32 32 255 minecraft:infested_deepslate[axis=y] 87 87 89 255 69 69 71 255 43 43 44 255 34 34 35 255 minecraft:infested_deepslate[axis=z] 80 80 82 255 64 64 65 255 40 40 41 255 32 32 32 255 -minecraft:smooth_basalt 72 72 78 255 57 57 62 255 36 36 39 255 28 28 31 255 -minecraft:raw_iron_block 166 135 107 255 132 108 85 255 83 67 53 255 66 54 42 255 -minecraft:raw_copper_block 154 105 79 255 123 84 63 255 77 52 39 255 61 42 31 255 -minecraft:raw_gold_block 221 169 46 255 176 135 36 255 110 84 23 255 88 67 18 255 +minecraft:smooth_basalt 113 121 113 255 90 96 90 255 56 60 56 255 45 48 45 255 +minecraft:raw_iron_block 136 98 76 255 108 78 60 255 68 49 38 255 54 39 30 255 +minecraft:raw_copper_block 127 88 45 255 101 70 36 255 63 44 22 255 50 35 18 255 +minecraft:raw_gold_block 165 128 47 255 132 102 37 255 82 64 23 255 66 51 18 255 diff --git a/DynmapCore/src/main/resources/extracted/colorschemes/flames.txt b/DynmapCore/src/main/resources/extracted/colorschemes/flames.txt index 2a38d935..96c3a570 100644 --- a/DynmapCore/src/main/resources/extracted/colorschemes/flames.txt +++ b/DynmapCore/src/main/resources/extracted/colorschemes/flames.txt @@ -1,585 +1,19769 @@ -Stone -1 120 120 120 255 96 96 96 255 60 60 60 255 48 48 48 255 -Grass -2 60 113 17 255 50 94 14 255 42 79 12 255 50 94 14 255 -Dirt -3 134 96 67 255 107 76 53 255 67 48 33 255 53 38 26 255 -3:2 122 87 57 255 97 69 45 255 61 43 28 255 48 34 22 255 -Cobblestone -4 115 115 115 255 92 92 92 255 57 57 57 255 46 46 46 255 -Wooden Plank -5 157 128 79 255 125 102 63 255 78 64 39 255 62 51 31 255 -5:1 103 77 46 255 82 61 36 255 51 38 23 255 41 30 18 255 -5:2 195 179 123 255 156 143 98 255 97 89 61 255 78 71 49 255 -5:3 154 110 77 255 123 88 61 255 77 55 38 255 61 44 30 255 -5:4 169 91 51 255 135 72 40 255 84 45 25 255 67 36 20 255 -5:5 61 39 18 255 48 31 14 255 30 19 9 255 24 15 7 255 -Sapling -6 120 120 120 0 96 96 96 0 60 60 60 0 48 48 48 0 -6:1 51 58 33 83 40 46 26 83 25 29 16 83 20 23 13 83 -6:2 118 150 84 107 94 120 67 107 59 75 42 107 47 60 33 107 -6:3 48 86 18 85 38 68 14 85 24 43 9 85 19 34 7 85 -6:4 114 115 20 75 91 92 16 75 57 57 10 75 45 46 8 75 -6:5 56 86 28 100 44 68 22 100 28 43 14 100 22 34 11 100 -6:9 51 58 33 83 40 46 26 83 25 29 16 83 20 23 13 83 -6:10 118 150 84 107 94 120 67 107 59 75 42 107 47 60 33 107 -6:11 48 86 18 85 38 68 14 85 24 43 9 85 19 34 7 85 -6:12 114 115 20 75 91 92 16 75 57 57 10 75 45 46 8 75 -6:13 56 86 28 100 44 68 22 100 28 43 14 100 22 34 11 100 -Bedrock -7 84 84 84 255 67 67 67 255 42 42 42 255 33 33 33 255 -Water -8 38 92 255 51 30 73 204 51 19 46 127 51 15 36 102 51 -Stationary Water -9 38 92 255 51 30 73 204 51 19 46 127 51 15 36 102 51 -Lava -10 255 90 0 255 204 72 0 255 127 45 0 255 102 36 0 255 -Stationary Lava -11 255 90 0 255 204 72 0 255 127 45 0 255 102 36 0 255 -Sand -12 218 210 158 255 174 168 126 255 109 105 79 255 87 84 63 255 -Gravel -13 136 126 126 255 108 100 100 255 68 63 63 255 54 50 50 255 -Gold Ore -14 143 140 125 255 114 112 100 255 71 70 62 255 57 56 50 255 -Iron Ore -15 136 130 127 255 108 104 101 255 68 65 63 255 54 52 50 255 -Coal Ore -16 115 115 115 255 92 92 92 255 57 57 57 255 46 46 46 255 -Wood - Normal -17 102 81 51 255 125 102 63 255 78 64 39 255 40 32 20 255 -17:0 102 81 51 255 125 102 63 255 78 64 39 255 40 32 20 255 -Wood - Spruce (Red/dark wood) -17:1 75 44 24 255 125 102 63 255 78 64 39 255 30 18 10 255 -Wood - Birch (light wood) -17:2 191 191 191 255 125 102 63 255 78 64 39 255 76 76 76 255 -Wood - Jungle -17:3 75 44 24 255 125 102 63 255 78 64 39 255 30 18 10 255 -Leaves -18 27 69 37 180 22 57 31 180 19 48 25 180 22 57 31 180 -18:1 44 69 44 0 35 55 35 0 22 34 22 0 17 27 17 0 -18:2 67 88 45 0 53 70 36 0 33 44 22 0 26 35 18 0 -18:3 18 71 25 0 14 56 20 0 9 35 12 0 7 28 10 0 -18:5 44 69 44 0 35 55 35 0 22 34 22 0 17 27 17 0 -18:6 67 88 45 0 53 70 36 0 33 44 22 0 26 35 18 0 -18:7 18 71 25 0 14 56 20 0 9 35 12 0 7 28 10 0 -18:9 44 69 44 0 35 55 35 0 22 34 22 0 17 27 17 0 -18:10 67 88 45 0 53 70 36 0 33 44 22 0 26 35 18 0 -18:11 18 71 25 0 14 56 20 0 9 35 12 0 7 28 10 0 -18:13 44 69 44 0 35 55 35 0 22 34 22 0 17 27 17 0 -18:14 67 88 45 0 53 70 36 0 33 44 22 0 26 35 18 0 -18:15 18 71 25 0 14 56 20 0 9 35 12 0 7 28 10 0 -Sponge -19 193 193 65 255 174 174 47 255 97 97 5 255 76 76 20 255 -Glass -20 255 255 255 64 204 204 204 64 127 127 127 64 102 102 102 64 -Lapis Lazuli Ore -21 23 68 196 255 18 56 158 255 14 43 122 255 14 43 78 255 -Lapis Lazuli Block -22 23 68 196 255 18 56 158 255 14 43 122 255 14 43 78 255 -Dispenser -23 96 96 96 255 76 76 76 255 48 48 48 255 38 38 38 255 -Sandstone -24 192 178 110 255 160 148 92 255 134 124 77 255 160 148 92 255 -Note Block -25 125 91 38 255 100 72 30 255 62 45 19 255 50 36 15 255 -Bed -26 200 20 20 255 160 16 16 255 100 10 10 255 80 8 8 255 -Powered Rail -27 150 134 102 180 120 107 81 180 75 67 51 180 60 53 40 180 -Detector Rail -28 150 134 102 180 120 107 81 180 75 67 51 180 60 53 40 180 -Sticky Piston -29 157 128 79 255 96 96 96 255 78 64 39 255 48 48 48 255 -Cobweb -30 138 145 145 255 110 115 115 255 69 72 72 255 55 57 57 255 -Tall Grass -31 97 156 53 255 73 120 38 255 38 68 16 255 26 50 9 255 -31:1 14 58 21 0 11 46 16 0 7 29 10 0 5 23 8 0 -31:2 15 60 22 0 12 48 17 0 7 30 11 0 6 24 8 0 -Dead Shrubs -32 75 44 24 255 60 35 19 255 37 22 12 255 30 18 10 255 -Piston -33 157 128 79 255 96 96 96 255 78 64 39 255 48 48 48 255 -Piston Head -34 157 128 79 255 96 96 96 255 78 64 39 255 48 48 48 255 -Wool -35 247 255 239 255 244 251 236 255 204 210 197 255 244 251 236 255 -35:0 247 255 239 255 244 251 236 255 204 210 197 255 244 251 236 255 -Wool - Orange -35:1 227 128 52 255 224 126 51 255 187 105 42 255 224 126 51 255 -Wool - Magenta -35:2 185 76 188 255 183 75 186 255 153 63 155 255 183 75 186 255 -Wool - Light Blue -35:3 102 139 199 255 100 137 196 255 84 114 164 255 100 137 196 255 -Wool - Yellow -35:4 189 181 26 255 187 178 26 255 156 149 22 255 187 178 26 255 -Wool - Light Green -35:5 57 189 45 255 56 186 44 255 47 156 37 255 56 186 44 255 -Wool - Pink -35:6 211 132 145 255 209 130 143 255 174 109 120 255 209 130 143 255 -Wool - Gray -35:7 65 67 63 255 64 66 62 255 54 55 52 255 64 66 62 255 -Wool - Light Gray -35:8 154 166 156 255 152 163 154 255 127 137 128 255 152 163 154 255 -Wool - Cyan -35:9 38 117 141 255 37 115 139 255 31 96 116 255 37 115 139 255 -Wool - Purple -35:10 126 54 184 255 124 53 181 255 104 44 151 255 124 53 181 255 -Wool - Blue -35:11 38 51 144 255 37 50 143 255 31 42 119 255 37 50 143 255 -Wool - Brown -35:12 83 51 26 255 82 50 26 255 69 42 22 255 82 50 26 255 -Wool - Dark Green -35:13 54 77 22 255 54 76 22 255 45 63 19 255 54 76 22 255 -Wool - Red -35:14 159 45 38 255 157 44 38 255 131 37 32 255 157 44 38 255 -Wool - Black -35:15 26 23 22 255 26 23 21 255 22 19 18 255 26 23 21 255 -Yellow Flower -37 255 255 0 255 204 204 0 255 127 127 0 255 102 102 0 255 -Red Rose -38 255 0 0 255 204 0 0 255 127 0 0 255 102 0 0 255 -38:1 37 152 138 45 29 121 110 45 18 76 69 45 14 60 55 45 -38:2 177 141 211 38 141 112 168 38 88 70 105 38 70 56 84 38 -38:3 162 191 138 42 129 152 110 42 81 95 69 42 64 76 55 42 -38:4 103 135 38 48 82 108 30 48 51 67 19 48 41 54 15 48 -38:5 95 134 32 49 76 107 25 49 47 67 16 49 38 53 12 49 -38:6 94 153 65 48 75 122 52 48 47 76 32 48 37 61 26 48 -38:7 101 150 73 47 80 120 58 47 50 75 36 47 40 60 29 47 -38:8 176 197 139 43 140 157 111 43 88 98 69 43 70 78 55 43 -Brown Mushroom -39 204 153 120 32 145 109 85 32 114 86 67 32 73 64 58 32 -Red Mushroom -40 255 43 43 32 196 29 38 32 186 105 109 32 124 64 64 32 -Gold Block -41 232 245 46 255 185 196 36 255 116 122 23 255 92 98 18 255 -Iron Block -42 191 191 191 255 152 152 152 255 95 95 95 255 76 76 76 255 -Double Stone Slab -43 200 200 200 255 160 160 160 255 100 100 100 255 80 80 80 255 -43:0 200 200 200 255 160 160 160 255 100 100 100 255 80 80 80 255 -43:6 200 200 200 255 160 160 160 255 100 100 100 255 80 80 80 255 -Double Stone Slab - Sandstone -43:1 192 178 110 255 160 148 92 255 134 124 77 255 160 148 92 255 -Double Stone Slab - Wood -43:2 157 128 79 255 125 102 63 255 78 64 39 255 62 51 31 255 -Double Stone Slab - Cobblestone -43:3 115 115 115 255 92 92 92 255 57 57 57 255 46 46 46 255 -Double Stone Slab - Brick -43:4 170 86 62 255 136 68 49 255 85 43 31 255 68 34 24 255 -Double Stone Slab - Stone Brick -43:5 200 200 200 255 160 160 160 255 100 100 100 255 80 80 80 255 -Stone Slab -44 200 200 200 255 160 160 160 255 100 100 100 255 80 80 80 255 -44:0 200 200 200 255 160 160 160 255 100 100 100 255 80 80 80 255 -44:6 200 200 200 255 160 160 160 255 100 100 100 255 80 80 80 255 -44:8 200 200 200 255 160 160 160 255 100 100 100 255 80 80 80 255 -44:14 200 200 200 255 160 160 160 255 100 100 100 255 80 80 80 255 -Stone Slab - Sandstone -44:1 192 178 110 255 160 148 92 255 134 124 77 255 160 148 92 255 -44:9 192 178 110 255 160 148 92 255 134 124 77 255 160 148 92 255 -Stone Slab - Wood -44:2 157 128 79 255 125 102 63 255 78 64 39 255 62 51 31 255 -44:10 157 128 79 255 125 102 63 255 78 64 39 255 62 51 31 255 -Stone Slab - Cobblestone -44:3 115 115 115 255 92 92 92 255 57 57 57 255 46 46 46 255 -44:11 115 115 115 255 92 92 92 255 57 57 57 255 46 46 46 255 -Stone Slab - Brick -44:4 170 86 62 255 136 68 49 255 85 43 31 255 68 34 24 255 -44:12 170 86 62 255 136 68 49 255 85 43 31 255 68 34 24 255 -Stone Slab - Stone Brick -44:5 200 200 200 255 160 160 160 255 100 100 100 255 80 80 80 255 -44:13 200 200 200 255 160 160 160 255 100 100 100 255 80 80 80 255 -Brick -45 170 86 62 255 136 68 49 255 85 43 31 255 68 34 24 255 -TNT -46 160 83 65 255 128 66 52 255 80 41 32 255 64 33 26 255 -Bookshelf -47 125 91 38 192 100 72 30 192 62 45 19 192 50 36 15 192 -Moss Stone -48 115 115 115 255 92 92 92 255 57 57 57 255 46 46 46 255 -Obsidian -49 26 11 43 255 20 8 34 255 13 5 21 255 10 4 17 255 -Torch -50 159 127 80 255 98 88 20 0 245 220 50 255 196 176 40 0 -Fire -51 255 170 30 200 204 136 24 200 127 85 15 200 102 68 12 200 -Monster Spawner -52 0 150 110 196 0 150 130 196 0 150 110 196 0 150 130 196 -Wooden Stair -53 157 128 79 255 125 102 63 255 78 64 39 255 62 51 31 255 -Chest -54 125 91 38 255 100 72 30 255 62 45 19 255 50 36 15 255 -Redstone Wire -55 240 30 30 64 160 20 20 64 120 15 15 64 100 12 12 64 -Diamond Ore -56 129 140 143 255 103 112 114 255 64 70 71 255 51 56 57 255 -Diamond Block -57 45 166 152 255 36 132 121 255 22 83 76 255 18 66 60 255 -Workbench -58 114 88 56 255 91 70 44 255 57 44 28 255 45 35 22 255 -Crops -59 146 192 0 255 116 153 0 255 73 96 0 255 58 76 0 255 -Farmland -60 95 58 30 255 76 46 24 255 47 29 15 255 38 23 12 255 -Furnace -61 96 96 96 255 76 76 76 255 48 48 48 255 38 38 38 255 -Burning Furnace -62 96 96 96 255 76 76 76 255 48 48 48 255 38 38 38 255 -Sign Post -63 111 91 54 255 88 72 43 255 55 45 27 255 44 36 21 255 -Wooden Door -64 136 109 67 255 108 87 53 255 68 54 33 255 54 43 26 255 -Ladder -65 181 140 64 32 144 112 51 32 90 70 32 32 72 56 25 32 -Minecart Tracks -66 150 134 102 180 120 107 81 180 75 67 51 180 60 53 40 180 -Cobblestone Stairs -67 115 115 115 255 92 92 92 255 57 57 57 255 46 46 46 255 -Wall Sign -68 111 91 54 255 88 72 43 255 55 45 27 255 44 36 21 255 -Lever -69 111 91 54 255 88 72 43 255 55 45 27 255 44 36 21 255 -Stone Pressure Plate -70 120 120 120 255 96 96 96 255 60 60 60 255 48 48 48 255 -Iron Door -71 191 191 191 255 152 152 152 255 95 95 95 255 76 76 76 255 -Wooden Pressure Plate -72 111 91 54 255 88 72 43 255 55 45 27 255 44 36 21 255 -Redstone Ore -73 131 107 107 255 104 85 85 255 65 53 53 255 52 42 42 255 -Glowing Redstone Ore -74 131 107 107 255 104 85 85 255 65 53 53 255 52 42 42 255 -Redstone Torch off -75 159 127 80 255 72 56 25 0 181 140 64 255 144 112 51 0 -Redstone Torch on -76 159 127 80 255 102 0 0 0 255 0 0 255 204 0 0 0 -Stone Button -77 120 120 120 255 96 96 96 255 60 60 60 255 48 48 48 255 -Snow -78 255 255 255 255 204 204 204 255 127 127 127 255 102 102 102 255 -Ice -79 83 113 163 51 66 90 130 51 41 56 81 51 33 45 65 51 -Snow Block -80 250 250 250 255 200 200 200 255 125 125 125 255 100 100 100 255 -Cactus -81 25 120 25 255 20 96 20 255 12 60 12 255 10 48 10 255 -Clay -82 151 157 169 255 120 125 135 255 75 78 84 255 60 62 67 255 -Sugar Cane -83 193 234 150 255 154 187 120 255 96 117 75 255 77 93 60 255 -Jukebox -84 125 91 38 255 100 72 30 255 62 45 19 255 50 36 15 255 -Fence -85 127 98 49 96 95 72 33 96 48 34 9 96 32 21 21 96 -Pumpkin -86 255 115 0 200 204 92 0 200 126 57 0 200 102 46 0 200 -Netherrack -87 166 89 89 255 141 80 62 255 135 15 15 255 96 6 6 255 -Soulsand -88 133 109 94 255 121 97 82 255 90 70 57 255 79 59 46 255 -Glowstone -89 249 212 156 255 255 188 94 255 192 143 70 255 122 91 44 255 -Portal -90 140 0 196 128 120 0 196 128 140 0 196 128 120 0 196 128 -Jack-o-lantern -91 255 115 0 255 204 92 0 255 126 57 0 255 102 46 0 255 -Cake Block -92 234 234 234 255 210 210 210 255 203 203 203 255 190 190 190 255 -Below: same as default -93 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 -94 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 -95 255 255 255 123 204 204 204 123 127 127 127 123 102 102 102 123 -95:1 216 127 51 123 172 101 40 123 108 63 25 123 86 50 20 123 -95:2 178 76 216 123 142 60 172 123 89 38 108 123 71 30 86 123 -95:3 102 153 216 123 81 122 172 123 51 76 108 123 40 61 86 123 -95:4 229 229 51 123 183 183 40 123 114 114 25 123 91 91 20 123 -95:5 127 204 25 123 101 163 20 123 63 102 12 123 50 81 10 123 -95:6 242 127 165 123 193 101 132 123 121 63 82 123 96 50 66 123 -95:7 76 76 76 123 60 60 60 123 38 38 38 123 30 30 30 123 -95:8 153 153 153 123 122 122 122 123 76 76 76 123 61 61 61 123 -95:9 76 127 153 123 60 101 122 123 38 63 76 123 30 50 61 123 -95:10 127 63 178 123 101 50 142 123 63 31 89 123 50 25 71 123 -95:11 51 76 178 123 40 60 142 123 25 38 89 123 20 30 71 123 -95:12 102 76 51 123 81 60 40 123 51 38 25 123 40 30 20 123 -95:13 102 127 51 123 81 101 40 123 51 63 25 123 40 50 20 123 -95:14 153 51 51 123 122 40 40 123 76 25 25 123 61 20 20 123 -95:15 25 25 25 123 20 20 20 123 12 12 12 123 10 10 10 123 -96 126 93 45 219 100 74 36 219 63 46 22 219 50 37 18 219 -97 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 -97:1 122 122 122 255 97 97 97 255 61 61 61 255 48 48 48 255 -97:2 122 122 122 255 97 97 97 255 61 61 61 255 48 48 48 255 -98 122 122 122 255 97 97 97 255 61 61 61 255 48 48 48 255 -98:1 114 119 106 255 91 95 84 255 57 59 53 255 45 47 42 255 -98:2 118 118 118 255 94 94 94 255 59 59 59 255 47 47 47 255 -98:3 118 118 118 255 94 94 94 255 59 59 59 255 47 47 47 255 -99 202 171 120 255 161 136 96 255 101 85 60 255 80 68 48 255 -99:1 141 106 83 255 112 84 66 255 70 53 41 255 56 42 33 255 -99:4 141 106 83 255 112 84 66 255 70 53 41 255 56 42 33 255 -99:7 141 106 83 255 112 84 66 255 70 53 41 255 56 42 33 255 -99:10 207 204 194 255 165 163 155 255 103 102 97 255 82 81 77 255 -99:14 141 106 83 255 112 84 66 255 70 53 41 255 56 42 33 255 -99:15 207 204 194 255 165 163 155 255 103 102 97 255 82 81 77 255 -100 202 171 120 255 161 136 96 255 101 85 60 255 80 68 48 255 -100:1 182 37 36 255 145 29 28 255 91 18 18 255 72 14 14 255 -100:4 182 37 36 255 145 29 28 255 91 18 18 255 72 14 14 255 -100:7 182 37 36 255 145 29 28 255 91 18 18 255 72 14 14 255 -100:10 207 204 194 255 165 163 155 255 103 102 97 255 82 81 77 255 -100:14 182 37 36 255 145 29 28 255 91 18 18 255 72 14 14 255 -100:15 207 204 194 255 165 163 155 255 103 102 97 255 82 81 77 255 -101 109 108 106 115 87 86 84 115 54 54 53 115 43 43 42 115 -102 218 240 244 70 174 192 195 70 109 120 122 70 87 96 97 70 -103 141 145 36 255 112 116 28 255 70 72 18 255 56 58 14 255 -104 90 112 56 34 72 89 44 34 45 56 28 34 36 44 22 34 -105 90 112 56 34 72 89 44 34 45 56 28 34 36 44 22 34 -106 54 73 23 138 43 58 18 138 27 36 11 138 21 29 9 138 -107 156 127 78 255 124 101 62 255 78 63 39 255 62 50 31 255 -108 146 99 86 255 116 79 68 255 73 49 43 255 58 39 34 255 -109 122 122 122 255 97 97 97 255 61 61 61 255 48 48 48 255 -110 113 88 73 255 90 70 58 255 56 44 36 255 45 35 29 255 -111 14 59 22 0 11 47 17 0 7 29 11 0 5 23 8 0 -112 44 22 26 255 35 17 20 255 22 11 13 255 17 8 10 255 -113 44 22 26 255 35 17 20 255 22 11 13 255 17 8 10 255 -114 44 22 26 255 35 17 20 255 22 11 13 255 17 8 10 255 -115 106 14 30 42 84 11 24 42 53 7 15 42 42 5 12 42 -115:1 108 15 22 120 86 12 17 120 54 7 11 120 43 6 8 120 -115:2 108 15 22 120 86 12 17 120 54 7 11 120 43 6 8 120 -115:3 111 18 17 204 88 14 13 204 55 9 8 204 44 7 6 204 -115:4 111 18 17 204 88 14 13 204 55 9 8 204 44 7 6 204 -115:5 111 18 17 204 88 14 13 204 55 9 8 204 44 7 6 204 -115:6 111 18 17 204 88 14 13 204 55 9 8 204 44 7 6 204 -115:7 111 18 17 204 88 14 13 204 55 9 8 204 44 7 6 204 -116 41 43 46 191 32 34 36 191 20 21 23 191 16 17 18 191 -117 106 106 106 255 84 84 84 255 53 53 53 255 42 42 42 255 -118 62 62 62 231 49 49 49 231 31 31 31 231 24 24 24 231 -119 20 18 29 255 16 14 23 255 10 9 14 255 8 7 11 255 -120 147 160 123 207 117 128 98 207 73 80 61 207 58 64 49 207 -121 221 223 165 255 176 178 132 255 110 111 82 255 88 89 66 255 -122 12 9 15 255 9 7 12 255 6 4 7 255 4 3 6 255 -123 70 43 26 255 56 34 20 255 35 21 13 255 28 17 10 255 -124 119 89 55 255 95 71 44 255 59 44 27 255 47 35 22 255 -125 156 127 78 255 124 101 62 255 78 63 39 255 62 50 31 255 -125:1 103 77 46 255 82 61 36 255 51 38 23 255 41 30 18 255 -125:2 195 179 123 255 156 143 98 255 97 89 61 255 78 71 49 255 -125:3 154 110 77 255 123 88 61 255 77 55 38 255 61 44 30 255 -125:4 169 91 51 255 135 72 40 255 84 45 25 255 67 36 20 255 -125:5 61 39 18 255 48 31 14 255 30 19 9 255 24 15 7 255 -125:9 103 77 46 255 82 61 36 255 51 38 23 255 41 30 18 255 -125:10 195 179 123 255 156 143 98 255 97 89 61 255 78 71 49 255 -125:11 154 110 77 255 123 88 61 255 77 55 38 255 61 44 30 255 -125:12 169 91 51 255 135 72 40 255 84 45 25 255 67 36 20 255 -125:13 61 39 18 255 48 31 14 255 30 19 9 255 24 15 7 255 -126 156 127 78 255 124 101 62 255 78 63 39 255 62 50 31 255 -126:1 103 77 46 255 82 61 36 255 51 38 23 255 41 30 18 255 -126:2 195 179 123 255 156 143 98 255 97 89 61 255 78 71 49 255 -126:3 154 110 77 255 123 88 61 255 77 55 38 255 61 44 30 255 -126:4 169 91 51 255 135 72 40 255 84 45 25 255 67 36 20 255 -126:5 61 39 18 255 48 31 14 255 30 19 9 255 24 15 7 255 -126:9 103 77 46 255 82 61 36 255 51 38 23 255 41 30 18 255 -126:10 195 179 123 255 156 143 98 255 97 89 61 255 78 71 49 255 -126:11 154 110 77 255 123 88 61 255 77 55 38 255 61 44 30 255 -126:12 169 91 51 255 135 72 40 255 84 45 25 255 67 36 20 255 -126:13 61 39 18 255 48 31 14 255 30 19 9 255 24 15 7 255 -127 145 80 30 131 116 64 24 131 72 40 15 131 58 32 12 131 -128 216 209 157 255 172 167 125 255 108 104 78 255 86 83 62 255 -129 109 128 116 255 87 102 92 255 54 64 58 255 43 51 46 255 -130:2 20 31 32 199 16 24 25 199 10 15 16 199 8 12 12 199 -130:3 20 31 32 199 16 24 25 199 10 15 16 199 8 12 12 199 -130:4 34 49 44 195 27 39 35 195 17 24 22 195 13 19 17 195 -130:5 16 28 32 195 12 22 25 195 8 14 16 195 6 11 12 195 -131 122 122 122 255 97 97 97 255 61 61 61 255 48 48 48 255 -133 81 217 117 255 64 173 93 255 40 108 58 255 32 86 46 255 -134 103 77 46 255 82 61 36 255 51 38 23 255 41 30 18 255 -135 195 179 123 255 156 143 98 255 97 89 61 255 78 71 49 255 -136 154 110 77 255 123 88 61 255 77 55 38 255 61 44 30 255 -137 178 137 111 255 142 109 88 255 89 68 55 255 71 54 44 255 -138 218 240 244 70 174 192 195 70 109 120 122 70 87 96 97 70 -139 122 122 122 255 97 97 97 255 61 61 61 255 48 48 48 255 -139:1 103 121 103 255 82 96 82 255 51 60 51 255 41 48 41 255 -140 118 65 51 49 94 52 40 49 59 32 25 49 47 26 20 49 -141 1 171 16 9 0 136 12 9 0 85 8 9 0 68 6 9 -141:2 1 187 15 23 0 149 12 23 0 93 7 23 0 74 6 23 -141:3 1 187 15 23 0 149 12 23 0 93 7 23 0 74 6 23 -141:4 0 190 16 54 0 152 12 54 0 95 8 54 0 76 6 54 -141:5 0 190 16 54 0 152 12 54 0 95 8 54 0 76 6 54 -141:6 0 190 16 54 0 152 12 54 0 95 8 54 0 76 6 54 -141:7 21 128 2 111 16 102 1 111 10 64 1 111 8 51 0 111 -142 1 171 16 9 0 136 12 9 0 85 8 9 0 68 6 9 -142:2 1 187 15 23 0 149 12 23 0 93 7 23 0 74 6 23 -142:3 1 187 15 23 0 149 12 23 0 93 7 23 0 74 6 23 -142:4 0 190 16 54 0 152 12 54 0 95 8 54 0 76 6 54 -142:5 0 190 16 54 0 152 12 54 0 95 8 54 0 76 6 54 -142:6 0 190 16 54 0 152 12 54 0 95 8 54 0 76 6 54 -142:7 34 170 36 105 27 136 28 105 17 85 18 105 13 68 14 105 -143 156 127 78 255 124 101 62 255 78 63 39 255 62 50 31 255 -145 64 64 64 255 51 51 51 255 32 32 32 255 25 25 25 255 -146 118 87 39 199 94 69 31 199 59 43 19 199 47 34 15 199 -146:1 118 87 38 195 94 69 30 195 59 43 19 195 47 34 15 195 -146:2 119 87 39 199 95 69 31 199 59 43 19 199 47 34 15 199 -146:3 119 88 42 195 95 70 33 195 59 44 21 195 47 35 16 195 -146:5 123 89 37 209 98 71 29 209 61 44 18 209 49 35 14 209 -146:6 119 87 39 199 95 69 31 199 59 43 19 199 47 34 15 199 -146:7 126 92 41 209 100 73 32 209 63 46 20 209 50 36 16 209 -146:9 125 91 38 209 100 72 30 209 62 45 19 209 50 36 15 209 -146:10 119 87 39 199 95 69 31 199 59 43 19 199 47 34 15 199 -146:11 122 89 38 209 97 71 30 209 61 44 19 209 48 35 15 209 -147 249 236 78 255 199 188 62 255 124 118 39 255 99 94 31 255 -148 219 219 219 255 175 175 175 255 109 109 109 255 87 87 87 255 -149 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 -150 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 -151 66 55 35 255 52 44 28 255 33 27 17 255 26 22 14 255 -152 171 27 9 255 136 21 7 255 85 13 4 255 68 10 3 255 -153 125 84 79 255 100 67 63 255 62 42 39 255 50 33 31 255 -154 62 62 62 255 49 49 49 255 31 31 31 255 24 24 24 255 -155 236 233 226 255 188 186 180 255 118 116 113 255 94 93 90 255 -155:1 231 228 220 255 184 182 176 255 115 114 110 255 92 91 88 255 -155:2 231 227 219 255 184 181 175 255 115 113 109 255 92 90 87 255 -155:3 232 229 221 255 185 183 176 255 116 114 110 255 92 91 88 255 -155:4 231 227 219 255 184 181 175 255 115 113 109 255 92 90 87 255 -156 236 233 226 255 188 186 180 255 118 116 113 255 94 93 90 255 -157 104 83 71 155 83 66 56 155 52 41 35 155 41 33 28 155 -157:8 141 81 70 155 112 64 56 155 70 40 35 155 56 32 28 155 -157:9 141 81 70 155 112 64 56 155 70 40 35 155 56 32 28 155 -157:10 141 81 70 155 112 64 56 155 70 40 35 155 56 32 28 155 -157:11 141 81 70 155 112 64 56 155 70 40 35 155 56 32 28 155 -157:12 141 81 70 155 112 64 56 155 70 40 35 155 56 32 28 155 -157:13 141 81 70 155 112 64 56 155 70 40 35 155 56 32 28 155 -158 96 96 96 255 76 76 76 255 48 48 48 255 38 38 38 255 -158:2 113 113 113 255 90 90 90 255 56 56 56 255 45 45 45 255 -158:3 113 113 113 255 90 90 90 255 56 56 56 255 45 45 45 255 -158:4 116 116 116 255 92 92 92 255 58 58 58 255 46 46 46 255 -158:5 113 113 113 255 90 90 90 255 56 56 56 255 45 45 45 255 -159 209 178 161 255 167 142 128 255 104 89 80 255 83 71 64 255 -159:1 161 83 37 255 128 66 29 255 80 41 18 255 64 33 14 255 -159:2 149 88 108 255 119 70 86 255 74 44 54 255 59 35 43 255 -159:3 113 108 137 255 90 86 109 255 56 54 68 255 45 43 54 255 -159:4 186 133 35 255 148 106 28 255 93 66 17 255 74 53 14 255 -159:5 103 117 52 255 82 93 41 255 51 58 26 255 41 46 20 255 -159:6 161 78 78 255 128 62 62 255 80 39 39 255 64 31 31 255 -159:7 57 42 35 255 45 33 28 255 28 21 17 255 22 16 14 255 -159:8 135 106 97 255 108 84 77 255 67 53 48 255 54 42 38 255 -159:9 86 91 91 255 68 72 72 255 43 45 45 255 34 36 36 255 -159:10 118 70 86 255 94 56 68 255 59 35 43 255 47 28 34 255 -159:11 74 59 91 255 59 47 72 255 37 29 45 255 29 23 36 255 -159:12 77 51 35 255 61 40 28 255 38 25 17 255 30 20 14 255 -159:13 76 83 42 255 60 66 33 255 38 41 21 255 30 33 16 255 -159:14 143 61 46 255 114 48 36 255 71 30 23 255 57 24 18 255 -159:15 37 22 16 255 29 17 12 255 18 11 8 255 14 8 6 255 -160 255 255 255 123 204 204 204 123 127 127 127 123 102 102 102 123 -160:1 216 127 51 123 172 101 40 123 108 63 25 123 86 50 20 123 -160:2 178 76 216 123 142 60 172 123 89 38 108 123 71 30 86 123 -160:3 102 153 216 123 81 122 172 123 51 76 108 123 40 61 86 123 -160:4 229 229 51 123 183 183 40 123 114 114 25 123 91 91 20 123 -160:5 127 204 25 123 101 163 20 123 63 102 12 123 50 81 10 123 -160:6 242 127 165 123 193 101 132 123 121 63 82 123 96 50 66 123 -160:7 76 76 76 123 60 60 60 123 38 38 38 123 30 30 30 123 -160:8 153 153 153 123 122 122 122 123 76 76 76 123 61 61 61 123 -160:9 76 127 153 123 60 101 122 123 38 63 76 123 30 50 61 123 -160:10 127 63 178 123 101 50 142 123 63 31 89 123 50 25 71 123 -160:11 51 76 178 123 40 60 142 123 25 38 89 123 20 30 71 123 -160:12 102 76 51 123 81 60 40 123 51 38 25 123 40 30 20 123 -160:13 102 127 51 123 81 101 40 123 51 63 25 123 40 50 20 123 -160:14 153 51 51 123 122 40 40 123 76 25 25 123 61 20 20 123 -160:15 25 25 25 123 20 20 20 123 12 12 12 123 10 10 10 123 -161 66 88 28 154 52 70 22 154 33 44 14 154 26 35 11 154 -162 105 99 89 255 84 79 71 255 52 49 44 255 42 39 35 255 -162:1 45 28 12 255 36 22 9 255 22 14 6 255 18 11 4 255 -162:4 154 91 64 255 123 72 51 255 77 45 32 255 61 36 25 255 -162:5 104 81 48 255 83 64 38 255 52 40 24 255 41 32 19 255 -162:9 45 28 12 255 36 22 9 255 22 14 6 255 18 11 4 255 -162:13 45 28 12 255 36 22 9 255 22 14 6 255 18 11 4 255 -163 169 91 51 255 135 72 40 255 84 45 25 255 67 36 20 255 -164 61 39 18 255 48 31 14 255 30 19 9 255 24 15 7 255 -170 157 116 18 255 125 92 14 255 78 58 9 255 62 46 7 255 -171 221 221 221 255 176 176 176 255 110 110 110 255 88 88 88 255 -171:1 219 125 62 255 175 100 49 255 109 62 31 255 87 50 24 255 -171:2 179 80 188 255 143 64 150 255 89 40 94 255 71 32 75 255 -171:3 106 138 201 255 84 110 160 255 53 69 100 255 42 55 80 255 -171:4 177 166 39 255 141 132 31 255 88 83 19 255 70 66 15 255 -171:5 65 174 56 255 52 139 44 255 32 87 28 255 26 69 22 255 -171:6 208 132 153 255 166 105 122 255 104 66 76 255 83 52 61 255 -171:7 64 64 64 255 51 51 51 255 32 32 32 255 25 25 25 255 -171:8 154 161 161 255 123 128 128 255 77 80 80 255 61 64 64 255 -171:9 46 110 137 255 36 88 109 255 23 55 68 255 18 44 54 255 -171:10 126 61 181 255 100 48 144 255 63 30 90 255 50 24 72 255 -171:11 46 56 141 255 36 44 112 255 23 28 70 255 18 22 56 255 -171:12 79 50 31 255 63 40 24 255 39 25 15 255 31 20 12 255 -171:13 53 70 27 255 42 56 21 255 26 35 13 255 21 28 10 255 -171:14 150 52 48 255 120 41 38 255 75 26 24 255 60 20 19 255 -171:15 25 22 22 255 20 17 17 255 12 11 11 255 10 8 8 255 -172 150 92 66 255 120 73 52 255 75 46 33 255 60 36 26 255 -173 18 18 18 255 14 14 14 255 9 9 9 255 7 7 7 255 -174 165 194 245 255 132 155 196 255 82 97 122 255 66 77 98 255 -175 65 109 43 51 52 87 34 51 32 54 21 51 26 43 17 51 -175:1 142 148 132 86 113 118 105 86 71 74 66 86 56 59 52 86 -175:2 72 89 44 138 57 71 35 138 36 44 22 138 28 35 17 138 -175:3 72 90 45 158 57 72 36 158 36 45 22 158 28 36 18 158 -175:4 69 64 3 185 55 51 2 185 34 32 1 185 27 25 1 185 -175:5 54 88 59 147 43 70 47 147 27 44 29 147 21 35 23 147 -175:8 67 111 45 26 53 88 36 26 33 55 22 26 26 44 18 26 -175:9 148 148 140 83 118 118 112 83 74 74 70 83 59 59 56 83 -175:10 76 94 47 92 60 75 37 92 38 47 23 92 30 37 18 92 -175:11 74 91 46 122 59 72 36 122 37 45 23 122 29 36 18 122 -175:12 115 61 7 107 92 48 5 107 57 30 3 107 46 24 2 107 -175:13 132 133 141 129 105 106 112 129 66 66 70 129 52 53 56 129 -178 106 109 112 255 84 87 89 255 53 54 56 255 42 43 44 255 -179 166 85 29 255 132 68 23 255 83 42 14 255 66 34 11 255 -180 165 84 29 255 132 67 23 255 82 42 14 255 66 33 11 255 -181 166 85 29 255 132 68 23 255 83 42 14 255 66 34 11 255 -182 166 85 29 255 132 68 23 255 83 42 14 255 66 34 11 255 -183 103 77 46 255 82 61 36 255 51 38 23 255 41 30 18 255 -184 195 179 123 255 156 143 98 255 97 89 61 255 78 71 49 255 -185 154 110 77 255 123 88 61 255 77 55 38 255 61 44 30 255 -186 61 39 18 255 48 31 14 255 30 19 9 255 24 15 7 255 -187 169 91 51 255 135 72 40 255 84 45 25 255 67 36 20 255 -188 103 77 46 255 82 61 36 255 51 38 23 255 41 30 18 255 -189 195 179 123 255 156 143 98 255 97 89 61 255 78 71 49 255 -190 154 110 77 255 123 88 61 255 77 55 38 255 61 44 30 255 -191 61 39 18 255 48 31 14 255 30 19 9 255 24 15 7 255 -192 169 91 51 255 135 72 40 255 84 45 25 255 67 36 20 255 -193 96 74 49 255 76 59 39 255 48 37 24 255 38 29 19 255 -194 217 210 179 255 173 168 143 255 108 105 89 255 86 84 71 255 -195 151 113 85 207 120 90 68 207 75 56 42 207 60 45 34 207 -196 161 93 58 183 128 74 46 183 80 46 29 183 64 37 23 183 -197 69 47 25 255 55 37 20 255 34 23 12 255 27 18 10 255 - -Biome Mapping -[RAINFOREST] 49 67 21 255 39 54 17 255 25 34 11 255 20 27 8 255 -[SWAMPLAND] 64 128 0 255 51 102 0 255 32 64 0 255 26 51 0 255 -[SEASONAL_FOREST] 51 165 42 255 41 132 34 255 26 83 21 255 20 66 17 255 -[FOREST] 0 128 64 255 0 102 51 255 0 64 32 255 0 51 26 255 -[SAVANNA] 58 58 58 255 46 46 46 255 29 29 29 255 23 23 23 255 -[SHRUBLAND] 170 158 24 255 136 126 19 255 85 79 12 255 68 63 10 255 -[TAIGA] 204 255 102 255 163 204 82 255 102 128 51 255 82 102 41 255 -[DESERT] 255 255 102 255 204 204 82 255 128 128 51 255 102 102 41 255 -[PLAINS] 255 204 102 255 204 163 82 255 128 102 51 255 102 82 41 255 -[ICE_DESERT] 26 33 103 255 21 26 82 255 13 17 52 255 10 13 41 255 -[TUNDRA] 222 222 222 255 178 178 178 255 111 111 111 255 89 89 89 255 -[HELL] 255 0 0 255 204 0 0 255 128 0 0 255 102 0 0 255 -[SKY] 102 204 255 255 82 163 204 255 51 102 128 255 41 82 102 255 -[OCEAN] 0 0 255 255 0 0 204 255 0 0 128 255 0 0 102 255 -[RIVER] 0 128 255 255 0 102 204 255 0 64 128 255 0 51 102 255 -[EXTREME_HILLS] 128 64 0 255 102 51 0 255 64 32 0 255 51 26 0 255 -[FROZEN_OCEAN] 102 255 204 255 82 204 163 255 51 128 102 255 41 102 82 255 -[FROZEN_RIVER] 102 102 255 255 82 82 204 255 51 51 128 255 41 41 102 255 -[ICE_PLAINS] 102 255 255 255 82 204 204 255 51 128 128 255 41 102 102 255 -[ICE_MOUNTAINS] 255 255 255 255 204 204 204 255 128 128 128 255 102 102 102 255 -[MUSHROOM_ISLAND] 255 111 207 255 204 89 166 255 128 56 104 255 102 44 83 255 -[MUSHROOM_SHORE] 255 0 128 255 204 0 102 255 128 0 64 255 102 0 51 255 -[BEACH] 255 206 75 255 230 185 68 255 255 206 75 255 179 144 53 255 -[DESERT_HILLS] 255 146 51 255 230 131 46 255 255 146 51 255 179 102 36 255 -[FOREST_HILLS] 0 162 100 255 0 146 90 255 0 162 100 255 0 113 70 255 -[TAIGA_HILLS] 178 212 117 255 160 191 105 255 178 212 117 255 125 148 82 255 -[SMALL_MOUNTAINS] 184 103 33 255 166 93 30 255 184 103 33 255 129 72 23 255 -[JUNGLE] 49 67 21 255 39 54 17 255 25 34 11 255 20 27 8 255 -[JUNGLE_HILLS] 33 44 14 255 26 36 12 255 16 22 7 255 13 18 6 255 -Rainfall/Temperature Mapping -[RAINFALL-0.0] 120 120 120 255 96 96 96 255 60 60 60 255 48 48 48 255 -[RAINFALL-1.0] 38 92 255 255 30 73 204 255 19 46 127 255 15 36 102 255 -[TEMPERATURE-0.0] 38 92 255 255 30 73 204 255 19 46 127 255 15 36 102 255 -[TEMPERATURE-0.5] 91 121 185 255 73 96 147 255 46 61 92 255 36 48 73 255 -[TEMPERATURE-0.8] 51 165 42 255 41 131 33 255 26 82 21 255 20 65 17 255 -[TEMPERATURE-0.9] 170 158 24 255 135 126 19 255 85 79 12 255 67 62 10 255 -[TEMPERATURE-0.95] 204 111 48 255 162 89 38 255 102 56 24 255 81 44 19 255 -[TEMPERATURE-1.0] 143 39 36 255 114 31 28 255 71 20 18 255 57 16 14 255 +minecraft:stone 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:granite 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:polished_granite 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:diorite 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:polished_diorite 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:andesite 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:polished_andesite 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:grass_block 69 110 51 255 55 88 40 255 34 55 25 255 27 44 20 255 +minecraft:grass_block[snowy=false] 69 110 51 255 55 88 40 255 34 55 25 255 27 44 20 255 +minecraft:dirt 134 96 67 255 107 76 53 255 67 48 33 255 53 38 26 255 +minecraft:coarse_dirt 119 85 59 255 95 68 47 255 59 42 29 255 47 34 23 255 +minecraft:podzol 147 147 147 255 117 117 117 255 73 73 73 255 58 58 58 255 +minecraft:podzol[snowy=false] 91 63 24 255 72 50 19 255 45 31 12 255 36 25 9 255 +minecraft:cobblestone 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:oak_planks 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:spruce_planks 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:birch_planks 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:jungle_planks 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:acacia_planks 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:dark_oak_planks 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:oak_sapling 77 106 40 110 61 84 32 110 38 53 20 110 30 42 16 110 +minecraft:oak_sapling[stage=1] 77 106 40 110 61 84 32 110 38 53 20 110 30 42 16 110 +minecraft:spruce_sapling 44 60 36 82 35 48 28 82 22 30 18 82 17 24 14 82 +minecraft:spruce_sapling[stage=1] 44 60 36 82 35 48 28 82 22 30 18 82 17 24 14 82 +minecraft:birch_sapling 127 160 79 97 101 128 63 97 63 80 39 97 50 64 31 97 +minecraft:birch_sapling[stage=1] 127 160 79 97 101 128 63 97 63 80 39 97 50 64 31 97 +minecraft:jungle_sapling 47 81 16 85 37 64 12 85 23 40 8 85 18 32 6 85 +minecraft:jungle_sapling[stage=1] 47 81 16 85 37 64 12 85 23 40 8 85 18 32 6 85 +minecraft:acacia_sapling 118 117 23 110 94 93 18 110 59 58 11 110 47 46 9 110 +minecraft:acacia_sapling[stage=1] 118 117 23 110 94 93 18 110 59 58 11 110 47 46 9 110 +minecraft:dark_oak_sapling 61 90 30 109 48 72 24 109 30 45 15 109 24 36 12 109 +minecraft:dark_oak_sapling[stage=1] 61 90 30 109 48 72 24 109 30 45 15 109 24 36 12 109 +minecraft:bedrock 85 85 85 255 68 68 68 255 42 42 42 255 34 34 34 255 +minecraft:water 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=1] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=2] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=3] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=4] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=5] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=6] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=7] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=8] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=9] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=10] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=11] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=12] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=13] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=14] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=15] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:lava 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 +minecraft:lava[level=1] 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 +minecraft:lava[level=2] 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 +minecraft:lava[level=3] 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 +minecraft:lava[level=4] 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 +minecraft:lava[level=5] 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 +minecraft:lava[level=6] 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 +minecraft:lava[level=7] 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 +minecraft:lava[level=8] 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 +minecraft:lava[level=9] 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 +minecraft:lava[level=10] 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 +minecraft:lava[level=11] 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 +minecraft:lava[level=12] 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 +minecraft:lava[level=13] 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 +minecraft:lava[level=14] 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 +minecraft:lava[level=15] 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 +minecraft:sand 219 207 163 255 175 165 130 255 109 103 81 255 87 82 65 255 +minecraft:red_sand 190 102 33 255 152 81 26 255 95 51 16 255 76 40 13 255 +minecraft:gravel 131 127 126 255 104 101 100 255 65 63 63 255 52 50 50 255 +minecraft:gold_ore 145 133 106 255 116 106 84 255 72 66 53 255 58 53 42 255 +minecraft:deepslate_gold_ore 115 102 78 255 92 81 62 255 57 51 39 255 46 40 31 255 +minecraft:iron_ore 136 129 122 255 108 103 97 255 68 64 61 255 54 51 48 255 +minecraft:deepslate_iron_ore 106 99 94 255 84 79 75 255 53 49 47 255 42 39 37 255 +minecraft:coal_ore 105 105 105 255 84 84 84 255 52 52 52 255 42 42 42 255 +minecraft:deepslate_coal_ore 74 74 76 255 59 59 60 255 37 37 38 255 29 29 30 255 +minecraft:nether_gold_ore 115 54 42 255 92 43 33 255 57 27 21 255 46 21 16 255 +minecraft:oak_log 109 85 50 255 87 68 40 255 54 42 25 255 43 34 20 255 +minecraft:oak_log[axis=y] 151 121 73 255 120 96 58 255 75 60 36 255 60 48 29 255 +minecraft:oak_log[axis=z] 109 85 50 255 87 68 40 255 54 42 25 255 43 34 20 255 +minecraft:spruce_log 58 37 16 255 46 29 12 255 29 18 8 255 23 14 6 255 +minecraft:spruce_log[axis=y] 108 80 46 255 86 64 36 255 54 40 23 255 43 32 18 255 +minecraft:spruce_log[axis=z] 58 37 16 255 46 29 12 255 29 18 8 255 23 14 6 255 +minecraft:birch_log 216 215 210 255 172 172 168 255 108 107 105 255 86 86 84 255 +minecraft:birch_log[axis=y] 193 179 135 255 154 143 108 255 96 89 67 255 77 71 54 255 +minecraft:birch_log[axis=z] 216 215 210 255 172 172 168 255 108 107 105 255 86 86 84 255 +minecraft:jungle_log 85 67 25 255 68 53 20 255 42 33 12 255 34 26 10 255 +minecraft:jungle_log[axis=y] 149 109 70 255 119 87 56 255 74 54 35 255 59 43 28 255 +minecraft:jungle_log[axis=z] 85 67 25 255 68 53 20 255 42 33 12 255 34 26 10 255 +minecraft:acacia_log 103 96 86 255 82 76 68 255 51 48 43 255 41 38 34 255 +minecraft:acacia_log[axis=y] 150 88 55 255 120 70 44 255 75 44 27 255 60 35 22 255 +minecraft:acacia_log[axis=z] 103 96 86 255 82 76 68 255 51 48 43 255 41 38 34 255 +minecraft:dark_oak_log 60 46 26 255 48 36 20 255 30 23 13 255 24 18 10 255 +minecraft:dark_oak_log[axis=y] 64 42 21 255 51 33 16 255 32 21 10 255 25 16 8 255 +minecraft:dark_oak_log[axis=z] 60 46 26 255 48 36 20 255 30 23 13 255 24 18 10 255 +minecraft:stripped_spruce_log 115 89 52 255 92 71 41 255 57 44 26 255 46 35 20 255 +minecraft:stripped_spruce_log[axis=y] 105 80 46 255 84 64 36 255 52 40 23 255 42 32 18 255 +minecraft:stripped_spruce_log[axis=z] 115 89 52 255 92 71 41 255 57 44 26 255 46 35 20 255 +minecraft:stripped_birch_log 196 176 118 255 156 140 94 255 98 88 59 255 78 70 47 255 +minecraft:stripped_birch_log[axis=y] 191 171 116 255 152 136 92 255 95 85 58 255 76 68 46 255 +minecraft:stripped_birch_log[axis=z] 196 176 118 255 156 140 94 255 98 88 59 255 78 70 47 255 +minecraft:stripped_jungle_log 171 132 84 255 136 105 67 255 85 66 42 255 68 52 33 255 +minecraft:stripped_jungle_log[axis=y] 165 122 81 255 132 97 64 255 82 61 40 255 66 48 32 255 +minecraft:stripped_jungle_log[axis=z] 171 132 84 255 136 105 67 255 85 66 42 255 68 52 33 255 +minecraft:stripped_acacia_log 174 92 59 255 139 73 47 255 87 46 29 255 69 36 23 255 +minecraft:stripped_acacia_log[axis=y] 166 91 51 255 132 72 40 255 83 45 25 255 66 36 20 255 +minecraft:stripped_acacia_log[axis=z] 174 92 59 255 139 73 47 255 87 46 29 255 69 36 23 255 +minecraft:stripped_dark_oak_log 96 76 49 255 76 60 39 255 48 38 24 255 38 30 19 255 +minecraft:stripped_dark_oak_log[axis=y] 65 44 22 255 52 35 17 255 32 22 11 255 26 17 8 255 +minecraft:stripped_dark_oak_log[axis=z] 96 76 49 255 76 60 39 255 48 38 24 255 38 30 19 255 +minecraft:stripped_oak_log 177 144 86 255 141 115 68 255 88 72 43 255 70 57 34 255 +minecraft:stripped_oak_log[axis=y] 160 129 77 255 128 103 61 255 80 64 38 255 64 51 30 255 +minecraft:stripped_oak_log[axis=z] 177 144 86 255 141 115 68 255 88 72 43 255 70 57 34 255 +minecraft:oak_wood 109 85 50 255 87 68 40 255 54 42 25 255 43 34 20 255 +minecraft:oak_wood[axis=y] 109 85 50 255 87 68 40 255 54 42 25 255 43 34 20 255 +minecraft:oak_wood[axis=z] 109 85 50 255 87 68 40 255 54 42 25 255 43 34 20 255 +minecraft:spruce_wood 58 37 16 255 46 29 12 255 29 18 8 255 23 14 6 255 +minecraft:spruce_wood[axis=y] 58 37 16 255 46 29 12 255 29 18 8 255 23 14 6 255 +minecraft:spruce_wood[axis=z] 58 37 16 255 46 29 12 255 29 18 8 255 23 14 6 255 +minecraft:birch_wood 216 215 210 255 172 172 168 255 108 107 105 255 86 86 84 255 +minecraft:birch_wood[axis=y] 216 215 210 255 172 172 168 255 108 107 105 255 86 86 84 255 +minecraft:birch_wood[axis=z] 216 215 210 255 172 172 168 255 108 107 105 255 86 86 84 255 +minecraft:jungle_wood 85 67 25 255 68 53 20 255 42 33 12 255 34 26 10 255 +minecraft:jungle_wood[axis=y] 85 67 25 255 68 53 20 255 42 33 12 255 34 26 10 255 +minecraft:jungle_wood[axis=z] 85 67 25 255 68 53 20 255 42 33 12 255 34 26 10 255 +minecraft:acacia_wood 103 96 86 255 82 76 68 255 51 48 43 255 41 38 34 255 +minecraft:acacia_wood[axis=y] 103 96 86 255 82 76 68 255 51 48 43 255 41 38 34 255 +minecraft:acacia_wood[axis=z] 103 96 86 255 82 76 68 255 51 48 43 255 41 38 34 255 +minecraft:dark_oak_wood 60 46 26 255 48 36 20 255 30 23 13 255 24 18 10 255 +minecraft:dark_oak_wood[axis=y] 60 46 26 255 48 36 20 255 30 23 13 255 24 18 10 255 +minecraft:dark_oak_wood[axis=z] 60 46 26 255 48 36 20 255 30 23 13 255 24 18 10 255 +minecraft:stripped_oak_wood 177 144 86 255 141 115 68 255 88 72 43 255 70 57 34 255 +minecraft:stripped_oak_wood[axis=y] 177 144 86 255 141 115 68 255 88 72 43 255 70 57 34 255 +minecraft:stripped_oak_wood[axis=z] 177 144 86 255 141 115 68 255 88 72 43 255 70 57 34 255 +minecraft:stripped_spruce_wood 115 89 52 255 92 71 41 255 57 44 26 255 46 35 20 255 +minecraft:stripped_spruce_wood[axis=y] 115 89 52 255 92 71 41 255 57 44 26 255 46 35 20 255 +minecraft:stripped_spruce_wood[axis=z] 115 89 52 255 92 71 41 255 57 44 26 255 46 35 20 255 +minecraft:stripped_birch_wood 196 176 118 255 156 140 94 255 98 88 59 255 78 70 47 255 +minecraft:stripped_birch_wood[axis=y] 196 176 118 255 156 140 94 255 98 88 59 255 78 70 47 255 +minecraft:stripped_birch_wood[axis=z] 196 176 118 255 156 140 94 255 98 88 59 255 78 70 47 255 +minecraft:stripped_jungle_wood 171 132 84 255 136 105 67 255 85 66 42 255 68 52 33 255 +minecraft:stripped_jungle_wood[axis=y] 171 132 84 255 136 105 67 255 85 66 42 255 68 52 33 255 +minecraft:stripped_jungle_wood[axis=z] 171 132 84 255 136 105 67 255 85 66 42 255 68 52 33 255 +minecraft:stripped_acacia_wood 174 92 59 255 139 73 47 255 87 46 29 255 69 36 23 255 +minecraft:stripped_acacia_wood[axis=y] 174 92 59 255 139 73 47 255 87 46 29 255 69 36 23 255 +minecraft:stripped_acacia_wood[axis=z] 174 92 59 255 139 73 47 255 87 46 29 255 69 36 23 255 +minecraft:stripped_dark_oak_wood 96 76 49 255 76 60 39 255 48 38 24 255 38 30 19 255 +minecraft:stripped_dark_oak_wood[axis=y] 96 76 49 255 76 60 39 255 48 38 24 255 38 30 19 255 +minecraft:stripped_dark_oak_wood[axis=z] 96 76 49 255 76 60 39 255 48 38 24 255 38 30 19 255 +minecraft:oak_leaves 50 98 27 171 40 78 21 171 25 49 13 171 20 39 10 171 +minecraft:oak_leaves[distance=1,persistent=false] 50 98 27 171 40 78 21 171 25 49 13 171 20 39 10 171 +minecraft:oak_leaves[distance=2,persistent=true] 50 98 27 171 40 78 21 171 25 49 13 171 20 39 10 171 +minecraft:oak_leaves[distance=2,persistent=false] 50 98 27 171 40 78 21 171 25 49 13 171 20 39 10 171 +minecraft:oak_leaves[distance=3,persistent=true] 50 98 27 171 40 78 21 171 25 49 13 171 20 39 10 171 +minecraft:oak_leaves[distance=3,persistent=false] 50 98 27 171 40 78 21 171 25 49 13 171 20 39 10 171 +minecraft:oak_leaves[distance=4,persistent=true] 50 98 27 171 40 78 21 171 25 49 13 171 20 39 10 171 +minecraft:oak_leaves[distance=4,persistent=false] 50 98 27 171 40 78 21 171 25 49 13 171 20 39 10 171 +minecraft:oak_leaves[distance=5,persistent=true] 50 98 27 171 40 78 21 171 25 49 13 171 20 39 10 171 +minecraft:oak_leaves[distance=5,persistent=false] 50 98 27 171 40 78 21 171 25 49 13 171 20 39 10 171 +minecraft:oak_leaves[distance=6,persistent=true] 50 98 27 171 40 78 21 171 25 49 13 171 20 39 10 171 +minecraft:oak_leaves[distance=6,persistent=false] 50 98 27 171 40 78 21 171 25 49 13 171 20 39 10 171 +minecraft:oak_leaves[distance=7,persistent=true] 50 98 27 171 40 78 21 171 25 49 13 171 20 39 10 171 +minecraft:oak_leaves[distance=7,persistent=false] 50 98 27 171 40 78 21 171 25 49 13 171 20 39 10 171 +minecraft:spruce_leaves 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=1,persistent=false] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=2,persistent=true] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=2,persistent=false] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=3,persistent=true] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=3,persistent=false] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=4,persistent=true] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=4,persistent=false] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=5,persistent=true] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=5,persistent=false] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=6,persistent=true] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=6,persistent=false] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=7,persistent=true] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=7,persistent=false] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:birch_leaves 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=1,persistent=false] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=2,persistent=true] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=2,persistent=false] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=3,persistent=true] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=3,persistent=false] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=4,persistent=true] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=4,persistent=false] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=5,persistent=true] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=5,persistent=false] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=6,persistent=true] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=6,persistent=false] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=7,persistent=true] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=7,persistent=false] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:jungle_leaves 54 105 26 177 43 84 20 177 27 52 13 177 21 42 10 177 +minecraft:jungle_leaves[distance=1,persistent=false] 54 105 26 177 43 84 20 177 27 52 13 177 21 42 10 177 +minecraft:jungle_leaves[distance=2,persistent=true] 54 105 26 177 43 84 20 177 27 52 13 177 21 42 10 177 +minecraft:jungle_leaves[distance=2,persistent=false] 54 105 26 177 43 84 20 177 27 52 13 177 21 42 10 177 +minecraft:jungle_leaves[distance=3,persistent=true] 54 105 26 177 43 84 20 177 27 52 13 177 21 42 10 177 +minecraft:jungle_leaves[distance=3,persistent=false] 54 105 26 177 43 84 20 177 27 52 13 177 21 42 10 177 +minecraft:jungle_leaves[distance=4,persistent=true] 54 105 26 177 43 84 20 177 27 52 13 177 21 42 10 177 +minecraft:jungle_leaves[distance=4,persistent=false] 54 105 26 177 43 84 20 177 27 52 13 177 21 42 10 177 +minecraft:jungle_leaves[distance=5,persistent=true] 54 105 26 177 43 84 20 177 27 52 13 177 21 42 10 177 +minecraft:jungle_leaves[distance=5,persistent=false] 54 105 26 177 43 84 20 177 27 52 13 177 21 42 10 177 +minecraft:jungle_leaves[distance=6,persistent=true] 54 105 26 177 43 84 20 177 27 52 13 177 21 42 10 177 +minecraft:jungle_leaves[distance=6,persistent=false] 54 105 26 177 43 84 20 177 27 52 13 177 21 42 10 177 +minecraft:jungle_leaves[distance=7,persistent=true] 54 105 26 177 43 84 20 177 27 52 13 177 21 42 10 177 +minecraft:jungle_leaves[distance=7,persistent=false] 54 105 26 177 43 84 20 177 27 52 13 177 21 42 10 177 +minecraft:acacia_leaves 52 100 27 147 41 80 21 147 26 50 13 147 20 40 10 147 +minecraft:acacia_leaves[distance=1,persistent=false] 52 100 27 147 41 80 21 147 26 50 13 147 20 40 10 147 +minecraft:acacia_leaves[distance=2,persistent=true] 52 100 27 147 41 80 21 147 26 50 13 147 20 40 10 147 +minecraft:acacia_leaves[distance=2,persistent=false] 52 100 27 147 41 80 21 147 26 50 13 147 20 40 10 147 +minecraft:acacia_leaves[distance=3,persistent=true] 52 100 27 147 41 80 21 147 26 50 13 147 20 40 10 147 +minecraft:acacia_leaves[distance=3,persistent=false] 52 100 27 147 41 80 21 147 26 50 13 147 20 40 10 147 +minecraft:acacia_leaves[distance=4,persistent=true] 52 100 27 147 41 80 21 147 26 50 13 147 20 40 10 147 +minecraft:acacia_leaves[distance=4,persistent=false] 52 100 27 147 41 80 21 147 26 50 13 147 20 40 10 147 +minecraft:acacia_leaves[distance=5,persistent=true] 52 100 27 147 41 80 21 147 26 50 13 147 20 40 10 147 +minecraft:acacia_leaves[distance=5,persistent=false] 52 100 27 147 41 80 21 147 26 50 13 147 20 40 10 147 +minecraft:acacia_leaves[distance=6,persistent=true] 52 100 27 147 41 80 21 147 26 50 13 147 20 40 10 147 +minecraft:acacia_leaves[distance=6,persistent=false] 52 100 27 147 41 80 21 147 26 50 13 147 20 40 10 147 +minecraft:acacia_leaves[distance=7,persistent=true] 52 100 27 147 41 80 21 147 26 50 13 147 20 40 10 147 +minecraft:acacia_leaves[distance=7,persistent=false] 52 100 27 147 41 80 21 147 26 50 13 147 20 40 10 147 +minecraft:dark_oak_leaves 52 102 28 178 41 81 22 178 26 51 14 178 20 40 11 178 +minecraft:dark_oak_leaves[distance=1,persistent=false] 52 102 28 178 41 81 22 178 26 51 14 178 20 40 11 178 +minecraft:dark_oak_leaves[distance=2,persistent=true] 52 102 28 178 41 81 22 178 26 51 14 178 20 40 11 178 +minecraft:dark_oak_leaves[distance=2,persistent=false] 52 102 28 178 41 81 22 178 26 51 14 178 20 40 11 178 +minecraft:dark_oak_leaves[distance=3,persistent=true] 52 102 28 178 41 81 22 178 26 51 14 178 20 40 11 178 +minecraft:dark_oak_leaves[distance=3,persistent=false] 52 102 28 178 41 81 22 178 26 51 14 178 20 40 11 178 +minecraft:dark_oak_leaves[distance=4,persistent=true] 52 102 28 178 41 81 22 178 26 51 14 178 20 40 11 178 +minecraft:dark_oak_leaves[distance=4,persistent=false] 52 102 28 178 41 81 22 178 26 51 14 178 20 40 11 178 +minecraft:dark_oak_leaves[distance=5,persistent=true] 52 102 28 178 41 81 22 178 26 51 14 178 20 40 11 178 +minecraft:dark_oak_leaves[distance=5,persistent=false] 52 102 28 178 41 81 22 178 26 51 14 178 20 40 11 178 +minecraft:dark_oak_leaves[distance=6,persistent=true] 52 102 28 178 41 81 22 178 26 51 14 178 20 40 11 178 +minecraft:dark_oak_leaves[distance=6,persistent=false] 52 102 28 178 41 81 22 178 26 51 14 178 20 40 11 178 +minecraft:dark_oak_leaves[distance=7,persistent=true] 52 102 28 178 41 81 22 178 26 51 14 178 20 40 11 178 +minecraft:dark_oak_leaves[distance=7,persistent=false] 52 102 28 178 41 81 22 178 26 51 14 178 20 40 11 178 +minecraft:azalea_leaves 31 77 8 196 24 61 6 196 15 38 4 196 12 30 3 196 +minecraft:azalea_leaves[distance=1,persistent=false] 31 77 8 196 24 61 6 196 15 38 4 196 12 30 3 196 +minecraft:azalea_leaves[distance=2,persistent=true] 31 77 8 196 24 61 6 196 15 38 4 196 12 30 3 196 +minecraft:azalea_leaves[distance=2,persistent=false] 31 77 8 196 24 61 6 196 15 38 4 196 12 30 3 196 +minecraft:azalea_leaves[distance=3,persistent=true] 31 77 8 196 24 61 6 196 15 38 4 196 12 30 3 196 +minecraft:azalea_leaves[distance=3,persistent=false] 31 77 8 196 24 61 6 196 15 38 4 196 12 30 3 196 +minecraft:azalea_leaves[distance=4,persistent=true] 31 77 8 196 24 61 6 196 15 38 4 196 12 30 3 196 +minecraft:azalea_leaves[distance=4,persistent=false] 31 77 8 196 24 61 6 196 15 38 4 196 12 30 3 196 +minecraft:azalea_leaves[distance=5,persistent=true] 31 77 8 196 24 61 6 196 15 38 4 196 12 30 3 196 +minecraft:azalea_leaves[distance=5,persistent=false] 31 77 8 196 24 61 6 196 15 38 4 196 12 30 3 196 +minecraft:azalea_leaves[distance=6,persistent=true] 31 77 8 196 24 61 6 196 15 38 4 196 12 30 3 196 +minecraft:azalea_leaves[distance=6,persistent=false] 31 77 8 196 24 61 6 196 15 38 4 196 12 30 3 196 +minecraft:azalea_leaves[distance=7,persistent=true] 31 77 8 196 24 61 6 196 15 38 4 196 12 30 3 196 +minecraft:azalea_leaves[distance=7,persistent=false] 31 77 8 196 24 61 6 196 15 38 4 196 12 30 3 196 +minecraft:flowering_azalea_leaves 34 75 11 204 27 60 8 204 17 37 5 204 13 30 4 204 +minecraft:flowering_azalea_leaves[distance=1,persistent=false] 34 75 11 204 27 60 8 204 17 37 5 204 13 30 4 204 +minecraft:flowering_azalea_leaves[distance=2,persistent=true] 34 75 11 204 27 60 8 204 17 37 5 204 13 30 4 204 +minecraft:flowering_azalea_leaves[distance=2,persistent=false] 34 75 11 204 27 60 8 204 17 37 5 204 13 30 4 204 +minecraft:flowering_azalea_leaves[distance=3,persistent=true] 34 75 11 204 27 60 8 204 17 37 5 204 13 30 4 204 +minecraft:flowering_azalea_leaves[distance=3,persistent=false] 34 75 11 204 27 60 8 204 17 37 5 204 13 30 4 204 +minecraft:flowering_azalea_leaves[distance=4,persistent=true] 34 75 11 204 27 60 8 204 17 37 5 204 13 30 4 204 +minecraft:flowering_azalea_leaves[distance=4,persistent=false] 34 75 11 204 27 60 8 204 17 37 5 204 13 30 4 204 +minecraft:flowering_azalea_leaves[distance=5,persistent=true] 34 75 11 204 27 60 8 204 17 37 5 204 13 30 4 204 +minecraft:flowering_azalea_leaves[distance=5,persistent=false] 34 75 11 204 27 60 8 204 17 37 5 204 13 30 4 204 +minecraft:flowering_azalea_leaves[distance=6,persistent=true] 34 75 11 204 27 60 8 204 17 37 5 204 13 30 4 204 +minecraft:flowering_azalea_leaves[distance=6,persistent=false] 34 75 11 204 27 60 8 204 17 37 5 204 13 30 4 204 +minecraft:flowering_azalea_leaves[distance=7,persistent=true] 34 75 11 204 27 60 8 204 17 37 5 204 13 30 4 204 +minecraft:flowering_azalea_leaves[distance=7,persistent=false] 34 75 11 204 27 60 8 204 17 37 5 204 13 30 4 204 +minecraft:sponge 195 192 74 255 156 153 59 255 97 96 37 255 78 76 29 255 +minecraft:wet_sponge 171 181 70 255 136 144 56 255 85 90 35 255 68 72 28 255 +minecraft:glass 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:lapis_ore 107 117 141 255 85 93 112 255 53 58 70 255 42 46 56 255 +minecraft:deepslate_lapis_ore 79 90 115 255 63 72 92 255 39 45 57 255 31 36 46 255 +minecraft:lapis_block 30 67 140 255 24 53 112 255 15 33 70 255 12 26 56 255 +minecraft:dispenser 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dispenser[facing=north,triggered=false] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dispenser[facing=east,triggered=true] 98 97 97 255 78 77 77 255 49 48 48 255 39 38 38 255 +minecraft:dispenser[facing=east,triggered=false] 98 97 97 255 78 77 77 255 49 48 48 255 39 38 38 255 +minecraft:dispenser[facing=south,triggered=true] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dispenser[facing=south,triggered=false] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dispenser[facing=west,triggered=true] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dispenser[facing=west,triggered=false] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dispenser[facing=up,triggered=true] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dispenser[facing=up,triggered=false] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dispenser[facing=down,triggered=true] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dispenser[facing=down,triggered=false] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:sandstone 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:chiseled_sandstone 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:cut_sandstone 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:note_block 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=0,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=1,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=1,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=2,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=2,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=3,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=3,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=4,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=4,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=5,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=5,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=6,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=6,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=7,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=7,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=8,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=8,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=9,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=9,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=10,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=10,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=11,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=11,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=12,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=12,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=13,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=13,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=14,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=14,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=15,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=15,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=16,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=16,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=17,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=17,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=18,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=18,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=19,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=19,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=20,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=20,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=21,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=21,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=22,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=22,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=23,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=23,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=24,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=24,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=0,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=0,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=1,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=1,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=2,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=2,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=3,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=3,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=4,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=4,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=5,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=5,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=6,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=6,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=7,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=7,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=8,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=8,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=9,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=9,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=10,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=10,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=11,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=11,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=12,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=12,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=13,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=13,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=14,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=14,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=15,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=15,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=16,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=16,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=17,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=17,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=18,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=18,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=19,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=19,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=20,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=20,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=21,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=21,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=22,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=22,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=23,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=23,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=24,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=24,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=0,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=0,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=1,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=1,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=2,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=2,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=3,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=3,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=4,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=4,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=5,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=5,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=6,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=6,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=7,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=7,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=8,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=8,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=9,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=9,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=10,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=10,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=11,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=11,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=12,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=12,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=13,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=13,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=14,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=14,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=15,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=15,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=16,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=16,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=17,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=17,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=18,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=18,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=19,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=19,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=20,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=20,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=21,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=21,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=22,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=22,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=23,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=23,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=24,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=24,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=0,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=0,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=1,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=1,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=2,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=2,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=3,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=3,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=4,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=4,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=5,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=5,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=6,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=6,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=7,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=7,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=8,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=8,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=9,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=9,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=10,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=10,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=11,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=11,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=12,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=12,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=13,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=13,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=14,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=14,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=15,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=15,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=16,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=16,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=17,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=17,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=18,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=18,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=19,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=19,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=20,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=20,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=21,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=21,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=22,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=22,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=23,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=23,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=24,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=24,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=0,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=0,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=1,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=1,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=2,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=2,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=3,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=3,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=4,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=4,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=5,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=5,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=6,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=6,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=7,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=7,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=8,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=8,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=9,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=9,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=10,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=10,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=11,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=11,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=12,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=12,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=13,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=13,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=14,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=14,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=15,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=15,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=16,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=16,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=17,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=17,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=18,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=18,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=19,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=19,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=20,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=20,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=21,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=21,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=22,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=22,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=23,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=23,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=24,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=24,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=0,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=0,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=1,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=1,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=2,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=2,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=3,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=3,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=4,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=4,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=5,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=5,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=6,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=6,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=7,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=7,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=8,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=8,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=9,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=9,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=10,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=10,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=11,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=11,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=12,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=12,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=13,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=13,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=14,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=14,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=15,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=15,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=16,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=16,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=17,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=17,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=18,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=18,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=19,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=19,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=20,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=20,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=21,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=21,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=22,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=22,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=23,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=23,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=24,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=24,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=0,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=0,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=1,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=1,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=2,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=2,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=3,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=3,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=4,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=4,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=5,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=5,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=6,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=6,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=7,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=7,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=8,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=8,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=9,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=9,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=10,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=10,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=11,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=11,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=12,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=12,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=13,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=13,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=14,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=14,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=15,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=15,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=16,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=16,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=17,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=17,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=18,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=18,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=19,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=19,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=20,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=20,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=21,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=21,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=22,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=22,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=23,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=23,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=24,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=24,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=0,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=0,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=1,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=1,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=2,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=2,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=3,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=3,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=4,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=4,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=5,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=5,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=6,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=6,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=7,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=7,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=8,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=8,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=9,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=9,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=10,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=10,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=11,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=11,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=12,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=12,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=13,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=13,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=14,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=14,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=15,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=15,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=16,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=16,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=17,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=17,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=18,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=18,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=19,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=19,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=20,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=20,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=21,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=21,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=22,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=22,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=23,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=23,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=24,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=24,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=0,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=0,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=1,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=1,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=2,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=2,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=3,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=3,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=4,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=4,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=5,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=5,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=6,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=6,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=7,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=7,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=8,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=8,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=9,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=9,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=10,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=10,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=11,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=11,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=12,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=12,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=13,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=13,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=14,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=14,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=15,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=15,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=16,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=16,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=17,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=17,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=18,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=18,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=19,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=19,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=20,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=20,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=21,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=21,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=22,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=22,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=23,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=23,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=24,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=24,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=0,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=0,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=1,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=1,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=2,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=2,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=3,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=3,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=4,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=4,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=5,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=5,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=6,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=6,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=7,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=7,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=8,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=8,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=9,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=9,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=10,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=10,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=11,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=11,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=12,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=12,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=13,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=13,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=14,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=14,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=15,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=15,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=16,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=16,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=17,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=17,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=18,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=18,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=19,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=19,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=20,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=20,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=21,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=21,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=22,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=22,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=23,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=23,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=24,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=24,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=0,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=0,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=1,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=1,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=2,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=2,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=3,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=3,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=4,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=4,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=5,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=5,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=6,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=6,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=7,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=7,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=8,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=8,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=9,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=9,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=10,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=10,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=11,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=11,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=12,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=12,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=13,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=13,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=14,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=14,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=15,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=15,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=16,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=16,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=17,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=17,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=18,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=18,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=19,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=19,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=20,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=20,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=21,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=21,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=22,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=22,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=23,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=23,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=24,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=24,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=0,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=0,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=1,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=1,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=2,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=2,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=3,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=3,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=4,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=4,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=5,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=5,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=6,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=6,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=7,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=7,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=8,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=8,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=9,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=9,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=10,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=10,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=11,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=11,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=12,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=12,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=13,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=13,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=14,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=14,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=15,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=15,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=16,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=16,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=17,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=17,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=18,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=18,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=19,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=19,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=20,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=20,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=21,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=21,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=22,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=22,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=23,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=23,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=24,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=24,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=0,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=0,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=1,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=1,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=2,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=2,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=3,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=3,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=4,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=4,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=5,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=5,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=6,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=6,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=7,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=7,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=8,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=8,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=9,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=9,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=10,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=10,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=11,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=11,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=12,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=12,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=13,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=13,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=14,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=14,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=15,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=15,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=16,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=16,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=17,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=17,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=18,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=18,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=19,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=19,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=20,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=20,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=21,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=21,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=22,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=22,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=23,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=23,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=24,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=24,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=0,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=0,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=1,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=1,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=2,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=2,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=3,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=3,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=4,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=4,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=5,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=5,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=6,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=6,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=7,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=7,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=8,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=8,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=9,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=9,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=10,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=10,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=11,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=11,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=12,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=12,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=13,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=13,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=14,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=14,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=15,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=15,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=16,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=16,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=17,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=17,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=18,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=18,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=19,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=19,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=20,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=20,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=21,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=21,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=22,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=22,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=23,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=23,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=24,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=24,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=0,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=0,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=1,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=1,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=2,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=2,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=3,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=3,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=4,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=4,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=5,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=5,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=6,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=6,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=7,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=7,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=8,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=8,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=9,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=9,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=10,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=10,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=11,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=11,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=12,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=12,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=13,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=13,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=14,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=14,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=15,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=15,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=16,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=16,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=17,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=17,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=18,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=18,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=19,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=19,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=20,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=20,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=21,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=21,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=22,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=22,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=23,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=23,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=24,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=24,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=0,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=0,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=1,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=1,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=2,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=2,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=3,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=3,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=4,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=4,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=5,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=5,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=6,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=6,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=7,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=7,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=8,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=8,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=9,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=9,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=10,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=10,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=11,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=11,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=12,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=12,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=13,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=13,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=14,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=14,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=15,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=15,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=16,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=16,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=17,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=17,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=18,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=18,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=19,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=19,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=20,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=20,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=21,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=21,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=22,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=22,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=23,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=23,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=24,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=24,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:powered_rail 154 109 74 171 123 87 59 171 77 54 37 171 61 43 29 171 +minecraft:powered_rail[powered=true,shape=north_south,waterlogged=false] 154 109 74 171 123 87 59 171 77 54 37 171 61 43 29 171 +minecraft:powered_rail[powered=true,shape=east_west,waterlogged=true] 154 109 74 171 123 87 59 171 77 54 37 171 61 43 29 171 +minecraft:powered_rail[powered=true,shape=east_west,waterlogged=false] 154 109 74 171 123 87 59 171 77 54 37 171 61 43 29 171 +minecraft:powered_rail[powered=true,shape=ascending_east,waterlogged=true] 154 109 74 171 123 87 59 171 77 54 37 171 61 43 29 171 +minecraft:powered_rail[powered=true,shape=ascending_east,waterlogged=false] 154 109 74 171 123 87 59 171 77 54 37 171 61 43 29 171 +minecraft:powered_rail[powered=true,shape=ascending_west,waterlogged=true] 154 109 74 171 123 87 59 171 77 54 37 171 61 43 29 171 +minecraft:powered_rail[powered=true,shape=ascending_west,waterlogged=false] 154 109 74 171 123 87 59 171 77 54 37 171 61 43 29 171 +minecraft:powered_rail[powered=true,shape=ascending_north,waterlogged=true] 154 109 74 171 123 87 59 171 77 54 37 171 61 43 29 171 +minecraft:powered_rail[powered=true,shape=ascending_north,waterlogged=false] 154 109 74 171 123 87 59 171 77 54 37 171 61 43 29 171 +minecraft:powered_rail[powered=true,shape=ascending_south,waterlogged=true] 154 109 74 171 123 87 59 171 77 54 37 171 61 43 29 171 +minecraft:powered_rail[powered=true,shape=ascending_south,waterlogged=false] 154 109 74 171 123 87 59 171 77 54 37 171 61 43 29 171 +minecraft:powered_rail[powered=false,shape=north_south,waterlogged=true] 137 109 74 171 109 87 59 171 68 54 37 171 54 43 29 171 +minecraft:powered_rail[powered=false,shape=north_south,waterlogged=false] 137 109 74 171 109 87 59 171 68 54 37 171 54 43 29 171 +minecraft:powered_rail[powered=false,shape=east_west,waterlogged=true] 137 109 74 171 109 87 59 171 68 54 37 171 54 43 29 171 +minecraft:powered_rail[powered=false,shape=east_west,waterlogged=false] 137 109 74 171 109 87 59 171 68 54 37 171 54 43 29 171 +minecraft:powered_rail[powered=false,shape=ascending_east,waterlogged=true] 137 109 74 171 109 87 59 171 68 54 37 171 54 43 29 171 +minecraft:powered_rail[powered=false,shape=ascending_east,waterlogged=false] 137 109 74 171 109 87 59 171 68 54 37 171 54 43 29 171 +minecraft:powered_rail[powered=false,shape=ascending_west,waterlogged=true] 137 109 74 171 109 87 59 171 68 54 37 171 54 43 29 171 +minecraft:powered_rail[powered=false,shape=ascending_west,waterlogged=false] 137 109 74 171 109 87 59 171 68 54 37 171 54 43 29 171 +minecraft:powered_rail[powered=false,shape=ascending_north,waterlogged=true] 137 109 74 171 109 87 59 171 68 54 37 171 54 43 29 171 +minecraft:powered_rail[powered=false,shape=ascending_north,waterlogged=false] 137 109 74 171 109 87 59 171 68 54 37 171 54 43 29 171 +minecraft:powered_rail[powered=false,shape=ascending_south,waterlogged=true] 137 109 74 171 109 87 59 171 68 54 37 171 54 43 29 171 +minecraft:powered_rail[powered=false,shape=ascending_south,waterlogged=false] 137 109 74 171 109 87 59 171 68 54 37 171 54 43 29 171 +minecraft:detector_rail 137 103 89 155 109 82 71 155 68 51 44 155 54 41 35 155 +minecraft:detector_rail[powered=true,shape=north_south,waterlogged=false] 137 103 89 155 109 82 71 155 68 51 44 155 54 41 35 155 +minecraft:detector_rail[powered=true,shape=east_west,waterlogged=true] 137 103 89 155 109 82 71 155 68 51 44 155 54 41 35 155 +minecraft:detector_rail[powered=true,shape=east_west,waterlogged=false] 137 103 89 155 109 82 71 155 68 51 44 155 54 41 35 155 +minecraft:detector_rail[powered=true,shape=ascending_east,waterlogged=true] 137 103 89 155 109 82 71 155 68 51 44 155 54 41 35 155 +minecraft:detector_rail[powered=true,shape=ascending_east,waterlogged=false] 137 103 89 155 109 82 71 155 68 51 44 155 54 41 35 155 +minecraft:detector_rail[powered=true,shape=ascending_west,waterlogged=true] 137 103 89 155 109 82 71 155 68 51 44 155 54 41 35 155 +minecraft:detector_rail[powered=true,shape=ascending_west,waterlogged=false] 137 103 89 155 109 82 71 155 68 51 44 155 54 41 35 155 +minecraft:detector_rail[powered=true,shape=ascending_north,waterlogged=true] 137 103 89 155 109 82 71 155 68 51 44 155 54 41 35 155 +minecraft:detector_rail[powered=true,shape=ascending_north,waterlogged=false] 137 103 89 155 109 82 71 155 68 51 44 155 54 41 35 155 +minecraft:detector_rail[powered=true,shape=ascending_south,waterlogged=true] 137 103 89 155 109 82 71 155 68 51 44 155 54 41 35 155 +minecraft:detector_rail[powered=true,shape=ascending_south,waterlogged=false] 137 103 89 155 109 82 71 155 68 51 44 155 54 41 35 155 +minecraft:detector_rail[powered=false,shape=north_south,waterlogged=true] 123 104 90 155 98 83 72 155 61 52 45 155 49 41 36 155 +minecraft:detector_rail[powered=false,shape=north_south,waterlogged=false] 123 104 90 155 98 83 72 155 61 52 45 155 49 41 36 155 +minecraft:detector_rail[powered=false,shape=east_west,waterlogged=true] 123 104 90 155 98 83 72 155 61 52 45 155 49 41 36 155 +minecraft:detector_rail[powered=false,shape=east_west,waterlogged=false] 123 104 90 155 98 83 72 155 61 52 45 155 49 41 36 155 +minecraft:detector_rail[powered=false,shape=ascending_east,waterlogged=true] 123 104 90 155 98 83 72 155 61 52 45 155 49 41 36 155 +minecraft:detector_rail[powered=false,shape=ascending_east,waterlogged=false] 123 104 90 155 98 83 72 155 61 52 45 155 49 41 36 155 +minecraft:detector_rail[powered=false,shape=ascending_west,waterlogged=true] 123 104 90 155 98 83 72 155 61 52 45 155 49 41 36 155 +minecraft:detector_rail[powered=false,shape=ascending_west,waterlogged=false] 123 104 90 155 98 83 72 155 61 52 45 155 49 41 36 155 +minecraft:detector_rail[powered=false,shape=ascending_north,waterlogged=true] 123 104 90 155 98 83 72 155 61 52 45 155 49 41 36 155 +minecraft:detector_rail[powered=false,shape=ascending_north,waterlogged=false] 123 104 90 155 98 83 72 155 61 52 45 155 49 41 36 155 +minecraft:detector_rail[powered=false,shape=ascending_south,waterlogged=true] 123 104 90 155 98 83 72 155 61 52 45 155 49 41 36 155 +minecraft:detector_rail[powered=false,shape=ascending_south,waterlogged=false] 123 104 90 155 98 83 72 155 61 52 45 155 49 41 36 155 +minecraft:sticky_piston 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:sticky_piston[extended=true,facing=east] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:sticky_piston[extended=true,facing=south] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:sticky_piston[extended=true,facing=west] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:sticky_piston[extended=true,facing=up] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:sticky_piston[extended=true,facing=down] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:sticky_piston[extended=false,facing=north] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:sticky_piston[extended=false,facing=east] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:sticky_piston[extended=false,facing=south] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:sticky_piston[extended=false,facing=west] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:sticky_piston[extended=false,facing=up] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:sticky_piston[extended=false,facing=down] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:cobweb 228 233 234 104 182 186 187 104 114 116 117 104 91 93 93 104 +minecraft:grass 68 109 51 139 54 87 40 139 34 54 25 139 27 43 20 139 +minecraft:fern 58 93 43 88 46 74 34 88 29 46 21 88 23 37 17 88 +minecraft:dead_bush 107 78 40 77 85 62 32 77 53 39 20 77 42 31 16 77 +minecraft:seagrass 24 94 2 76 19 75 1 76 12 47 1 76 9 37 0 76 +minecraft:tall_seagrass 27 103 4 72 21 82 3 72 13 51 2 72 10 41 1 72 +minecraft:tall_seagrass[half=lower] 21 88 1 141 16 70 0 141 10 44 0 141 8 35 0 141 +minecraft:piston 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:piston[extended=true,facing=east] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:piston[extended=true,facing=south] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:piston[extended=true,facing=west] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:piston[extended=true,facing=up] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:piston[extended=true,facing=down] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:piston[extended=false,facing=north] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:piston[extended=false,facing=east] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:piston[extended=false,facing=south] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:piston[extended=false,facing=west] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:piston[extended=false,facing=up] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:piston[extended=false,facing=down] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:piston_head 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=north,short=true,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=north,short=false,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=north,short=false,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=east,short=true,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=east,short=true,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=east,short=false,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=east,short=false,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=south,short=true,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=south,short=true,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=south,short=false,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=south,short=false,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=west,short=true,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=west,short=true,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=west,short=false,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=west,short=false,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=up,short=true,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=up,short=true,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=up,short=false,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=up,short=false,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=down,short=true,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=down,short=true,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=down,short=false,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=down,short=false,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:white_wool 233 236 236 255 186 188 188 255 116 118 118 255 93 94 94 255 +minecraft:orange_wool 240 118 19 255 192 94 15 255 120 59 9 255 96 47 7 255 +minecraft:magenta_wool 189 68 179 255 151 54 143 255 94 34 89 255 75 27 71 255 +minecraft:light_blue_wool 58 175 217 255 46 140 173 255 29 87 108 255 23 70 86 255 +minecraft:yellow_wool 248 197 39 255 198 157 31 255 124 98 19 255 99 78 15 255 +minecraft:lime_wool 112 185 25 255 89 148 20 255 56 92 12 255 44 74 10 255 +minecraft:pink_wool 237 141 172 255 189 112 137 255 118 70 86 255 94 56 68 255 +minecraft:gray_wool 62 68 71 255 49 54 56 255 31 34 35 255 24 27 28 255 +minecraft:light_gray_wool 142 142 134 255 113 113 107 255 71 71 67 255 56 56 53 255 +minecraft:cyan_wool 21 137 145 255 16 109 116 255 10 68 72 255 8 54 58 255 +minecraft:purple_wool 121 42 172 255 96 33 137 255 60 21 86 255 48 16 68 255 +minecraft:blue_wool 53 57 157 255 42 45 125 255 26 28 78 255 21 22 62 255 +minecraft:brown_wool 114 71 40 255 91 56 32 255 57 35 20 255 45 28 16 255 +minecraft:green_wool 84 109 27 255 67 87 21 255 42 54 13 255 33 43 10 255 +minecraft:red_wool 160 39 34 255 128 31 27 255 80 19 17 255 64 15 13 255 +minecraft:black_wool 20 21 25 255 16 16 20 255 10 10 12 255 8 8 10 255 +minecraft:dandelion 147 172 43 31 117 137 34 31 73 86 21 31 58 68 17 31 +minecraft:poppy 128 64 37 34 102 51 29 34 64 32 18 34 51 25 14 34 +minecraft:blue_orchid 47 162 168 43 37 129 134 43 23 81 84 43 18 64 67 43 +minecraft:allium 158 137 183 37 126 109 146 37 79 68 91 37 63 54 73 37 +minecraft:azure_bluet 169 204 127 42 135 163 101 42 84 102 63 42 67 81 50 42 +minecraft:red_tulip 89 128 32 48 71 102 25 48 44 64 16 48 35 51 12 48 +minecraft:orange_tulip 93 142 30 40 74 113 24 40 46 71 15 40 37 56 12 40 +minecraft:white_tulip 93 164 71 44 74 131 56 44 46 82 35 44 37 65 28 44 +minecraft:pink_tulip 99 157 78 40 79 125 62 40 49 78 39 40 39 62 31 40 +minecraft:oxeye_daisy 179 202 143 50 143 161 114 50 89 101 71 50 71 80 57 50 +minecraft:cornflower 79 121 146 34 63 96 116 34 39 60 73 34 31 48 58 34 +minecraft:wither_rose 41 44 23 36 32 35 18 36 20 22 11 36 16 17 9 36 +minecraft:lily_of_the_valley 123 174 95 51 98 139 76 51 61 87 47 51 49 69 38 51 +minecraft:brown_mushroom 153 116 92 33 122 92 73 33 76 58 46 33 61 46 36 33 +minecraft:red_mushroom 216 75 67 31 172 60 53 31 108 37 33 31 86 30 26 31 +minecraft:gold_block 246 208 61 255 196 166 48 255 123 104 30 255 98 83 24 255 +minecraft:iron_block 220 220 220 255 176 176 176 255 110 110 110 255 88 88 88 255 +minecraft:bricks 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:tnt 142 62 53 255 113 49 42 255 71 31 26 255 56 24 21 255 +minecraft:tnt[unstable=false] 142 62 53 255 113 49 42 255 71 31 26 255 56 24 21 255 +minecraft:bookshelf 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:mossy_cobblestone 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:obsidian 15 10 24 255 12 8 19 255 7 5 12 255 6 4 9 255 +minecraft:torch 138 113 63 19 110 90 50 19 69 56 31 19 55 45 25 19 +minecraft:wall_torch 138 113 63 19 110 90 50 19 69 56 31 19 55 45 25 19 +minecraft:wall_torch[facing=south] 138 113 63 19 110 90 50 19 69 56 31 19 55 45 25 19 +minecraft:wall_torch[facing=west] 138 113 63 19 110 90 50 19 69 56 31 19 55 45 25 19 +minecraft:wall_torch[facing=east] 138 113 63 19 110 90 50 19 69 56 31 19 55 45 25 19 +minecraft:fire 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=true,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=true,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=true,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=true,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=true,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=true,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=true,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=true,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=true,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=true,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=true,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=true,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=true,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=true,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=true,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=false,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=false,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=false,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=false,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=false,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=false,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=false,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=false,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=false,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=false,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=false,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=false,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=false,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=false,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=false,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=false,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=true,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=true,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=true,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=true,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=true,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=true,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=true,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=true,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=true,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=true,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=true,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=true,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=true,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=true,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=true,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=true,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=false,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=false,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=false,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=false,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=false,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=false,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=false,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=false,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=false,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=false,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=false,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=false,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=false,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=false,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=false,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=false,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=true,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=true,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=true,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=true,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=true,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=true,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=true,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=true,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=true,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=true,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=true,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=true,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=true,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=true,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=true,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=true,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=false,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=false,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=false,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=false,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=false,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=false,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=false,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=false,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=false,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=false,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=false,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=false,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=false,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=false,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=false,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=false,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=true,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=true,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=true,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=true,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=true,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=true,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=true,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=true,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=true,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=true,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=true,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=true,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=true,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=true,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=true,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=true,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=false,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=false,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=false,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=false,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=false,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=false,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=false,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=false,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=false,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=false,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=false,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=false,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=false,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=false,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=false,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=false,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=true,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=true,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=true,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=true,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=true,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=true,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=true,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=true,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=true,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=true,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=true,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=true,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=true,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=true,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=true,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=true,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=false,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=false,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=false,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=false,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=false,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=false,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=false,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=false,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=false,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=false,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=false,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=false,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=false,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=false,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=false,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=false,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=true,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=true,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=true,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=true,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=true,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=true,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=true,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=true,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=true,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=true,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=true,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=true,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=true,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=true,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=true,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=true,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=false,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=false,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=false,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=false,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=false,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=false,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=false,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=false,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=false,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=false,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=false,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=false,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=false,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=false,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=false,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=false,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=true,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=true,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=true,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=true,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=true,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=true,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=true,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=true,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=true,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=true,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=true,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=true,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=true,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=true,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=true,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=true,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=false,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=false,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=false,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=false,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=false,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=false,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=false,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=false,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=false,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=false,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=false,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=false,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=false,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=false,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=false,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=false,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=true,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=true,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=true,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=true,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=true,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=true,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=true,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=true,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=true,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=true,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=true,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=true,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=true,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=true,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=true,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=true,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=false,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=false,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=false,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=false,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=false,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=false,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=false,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=false,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=false,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=false,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=false,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=false,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=false,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=false,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=false,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=false,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=true,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=true,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=true,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=true,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=true,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=true,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=true,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=true,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=true,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=true,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=true,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=true,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=true,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=true,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=true,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=true,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=false,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=false,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=false,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=false,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=false,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=false,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=false,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=false,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=false,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=false,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=false,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=false,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=false,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=false,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=false,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=false,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=true,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=true,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=true,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=true,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=true,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=true,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=true,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=true,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=true,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=true,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=true,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=true,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=true,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=true,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=true,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=true,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=false,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=false,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=false,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=false,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=false,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=false,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=false,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=false,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=false,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=false,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=false,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=false,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=false,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=false,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=false,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=false,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=true,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=true,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=true,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=true,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=true,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=true,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=true,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=true,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=true,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=true,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=true,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=true,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=true,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=true,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=true,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=true,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=false,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=false,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=false,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=false,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=false,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=false,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=false,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=false,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=false,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=false,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=false,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=false,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=false,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=false,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=false,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=false,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=true,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=true,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=true,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=true,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=true,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=true,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=true,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=true,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=true,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=true,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=true,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=true,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=true,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=true,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=true,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=true,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=false,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=false,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=false,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=false,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=false,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=false,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=false,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=false,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=false,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=false,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=false,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=false,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=false,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=false,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=false,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=false,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=true,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=true,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=true,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=true,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=true,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=true,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=true,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=true,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=true,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=true,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=true,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=true,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=true,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=true,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=true,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=true,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=false,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=false,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=false,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=false,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=false,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=false,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=false,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=false,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=false,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=false,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=false,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=false,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=false,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=false,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=false,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=false,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=true,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=true,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=true,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=true,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=true,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=true,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=true,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=true,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=true,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=true,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=true,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=true,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=true,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=true,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=true,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=true,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=false,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=false,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=false,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=false,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=false,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=false,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=false,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=false,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=false,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=false,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=false,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=false,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=false,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=false,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=false,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=false,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=true,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=true,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=true,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=true,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=true,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=true,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=true,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=true,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=true,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=true,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=true,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=true,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=true,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=true,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=true,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=true,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=false,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=false,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=false,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=false,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=false,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=false,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=false,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=false,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=false,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=false,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=false,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=false,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=false,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=false,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=false,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=false,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=true,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=true,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=true,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=true,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=true,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=true,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=true,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=true,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=true,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=true,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=true,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=true,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=true,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=true,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=true,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=true,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=false,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=false,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=false,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=false,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=false,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=false,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=false,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=false,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=false,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=false,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=false,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=false,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=false,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=false,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=false,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=false,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:soul_fire 54 195 200 145 43 156 160 145 27 97 100 145 21 78 80 145 +minecraft:spawner 36 46 62 175 28 36 49 175 18 23 31 175 14 18 24 175 +minecraft:oak_stairs 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=top,shape=straight,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=top,shape=straight,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=top,shape=straight,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=top,shape=straight,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=top,shape=straight,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=top,shape=straight,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=top,shape=straight,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:chest 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=north,type=single,waterlogged=false] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=north,type=left,waterlogged=true] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=north,type=left,waterlogged=false] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=north,type=right,waterlogged=true] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=north,type=right,waterlogged=false] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=south,type=single,waterlogged=true] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=south,type=single,waterlogged=false] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=south,type=left,waterlogged=true] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=south,type=left,waterlogged=false] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=south,type=right,waterlogged=true] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=south,type=right,waterlogged=false] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=west,type=single,waterlogged=true] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=west,type=single,waterlogged=false] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=west,type=left,waterlogged=true] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=west,type=left,waterlogged=false] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=west,type=right,waterlogged=true] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=west,type=right,waterlogged=false] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=east,type=single,waterlogged=true] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=east,type=single,waterlogged=false] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=east,type=left,waterlogged=true] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=east,type=left,waterlogged=false] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=east,type=right,waterlogged=true] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=east,type=right,waterlogged=false] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:redstone_wire 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=0,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=0,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=0,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=0,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=0,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=0,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=0,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=0,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=1,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=1,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=1,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=1,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=1,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=1,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=1,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=1,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=1,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=2,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=2,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=2,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=2,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=2,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=2,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=2,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=2,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=2,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=3,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=3,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=3,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=3,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=3,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=3,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=3,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=3,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=3,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=4,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=4,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=4,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=4,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=4,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=4,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=4,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=4,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=4,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=5,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=5,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=5,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=5,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=5,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=5,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=5,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=5,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=5,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=6,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=6,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=6,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=6,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=6,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=6,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=6,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=6,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=6,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=7,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=7,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=7,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=7,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=7,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=7,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=7,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=7,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=7,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=8,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=8,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=8,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=8,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=8,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=8,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=8,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=8,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=8,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=9,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=9,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=9,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=9,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=9,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=9,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=9,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=9,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=9,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=10,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=10,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=10,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=10,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=10,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=10,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=10,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=10,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=10,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=11,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=11,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=11,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=11,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=11,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=11,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=11,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=11,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=11,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=12,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=12,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=12,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=12,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=12,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=12,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=12,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=12,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=12,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=13,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=13,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=13,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=13,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=13,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=13,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=13,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=13,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=13,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=14,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=14,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=14,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=14,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=14,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=14,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=14,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=14,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=14,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=15,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=15,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=15,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=15,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=15,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=15,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=15,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=15,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=up,power=15,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=0,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=0,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=0,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=0,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=0,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=0,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=0,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=0,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=0,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=1,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=1,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=1,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=1,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=1,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=1,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=1,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=1,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=1,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=2,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=2,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=2,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=2,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=2,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=2,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=2,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=2,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=2,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=3,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=3,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=3,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=3,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=3,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=3,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=3,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=3,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=3,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=4,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=4,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=4,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=4,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=4,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=4,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=4,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=4,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=4,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=5,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=5,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=5,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=5,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=5,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=5,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=5,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=5,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=5,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=6,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=6,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=6,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=6,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=6,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=6,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=6,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=6,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=6,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=7,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=7,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=7,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=7,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=7,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=7,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=7,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=7,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=7,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=8,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=8,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=8,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=8,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=8,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=8,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=8,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=8,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=8,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=9,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=9,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=9,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=9,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=9,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=9,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=9,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=9,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=9,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=10,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=10,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=10,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=10,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=10,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=10,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=10,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=10,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=10,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=11,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=11,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=11,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=11,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=11,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=11,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=11,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=11,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=11,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=12,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=12,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=12,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=12,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=12,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=12,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=12,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=12,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=12,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=13,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=13,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=13,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=13,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=13,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=13,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=13,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=13,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=13,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=14,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=14,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=14,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=14,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=14,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=14,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=14,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=14,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=14,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=15,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=15,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=15,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=15,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=15,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=15,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=15,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=15,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=side,power=15,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=0,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=0,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=0,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=0,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=0,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=0,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=0,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=0,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=0,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=1,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=1,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=1,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=1,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=1,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=1,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=1,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=1,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=1,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=2,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=2,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=2,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=2,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=2,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=2,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=2,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=2,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=2,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=3,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=3,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=3,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=3,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=3,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=3,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=3,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=3,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=3,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=4,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=4,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=4,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=4,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=4,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=4,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=4,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=4,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=4,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=5,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=5,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=5,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=5,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=5,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=5,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=5,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=5,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=5,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=6,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=6,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=6,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=6,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=6,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=6,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=6,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=6,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=6,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=7,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=7,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=7,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=7,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=7,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=7,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=7,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=7,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=7,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=8,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=8,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=8,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=8,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=8,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=8,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=8,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=8,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=8,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=9,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=9,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=9,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=9,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=9,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=9,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=9,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=9,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=9,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=10,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=10,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=10,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=10,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=10,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=10,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=10,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=10,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=10,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=11,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=11,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=11,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=11,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=11,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=11,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=11,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=11,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=11,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=12,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=12,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=12,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=12,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=12,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=12,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=12,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=12,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=12,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=13,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=13,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=13,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=13,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=13,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=13,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=13,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=13,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=13,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=14,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=14,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=14,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=14,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=14,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=14,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=14,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=14,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=14,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=15,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=15,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=15,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=15,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=15,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=15,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=15,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=15,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=up,north=none,power=15,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=0,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=0,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=0,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=0,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=0,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=0,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=0,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=0,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=0,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=1,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=1,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=1,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=1,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=1,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=1,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=1,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=1,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=1,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=2,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=2,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=2,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=2,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=2,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=2,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=2,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=2,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=2,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=3,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=3,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=3,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=3,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=3,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=3,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=3,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=3,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=3,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=4,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=4,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=4,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=4,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=4,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=4,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=4,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=4,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=4,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=5,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=5,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=5,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=5,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=5,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=5,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=5,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=5,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=5,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=6,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=6,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=6,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=6,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=6,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=6,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=6,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=6,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=6,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=7,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=7,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=7,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=7,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=7,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=7,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=7,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=7,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=7,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=8,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=8,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=8,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=8,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=8,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=8,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=8,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=8,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=8,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=9,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=9,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=9,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=9,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=9,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=9,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=9,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=9,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=9,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=10,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=10,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=10,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=10,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=10,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=10,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=10,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=10,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=10,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=11,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=11,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=11,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=11,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=11,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=11,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=11,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=11,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=11,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=12,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=12,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=12,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=12,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=12,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=12,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=12,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=12,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=12,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=13,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=13,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=13,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=13,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=13,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=13,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=13,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=13,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=13,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=14,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=14,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=14,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=14,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=14,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=14,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=14,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=14,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=14,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=15,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=15,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=15,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=15,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=15,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=15,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=15,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=15,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=up,power=15,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=0,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=0,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=0,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=0,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=0,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=0,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=0,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=0,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=0,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=1,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=1,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=1,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=1,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=1,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=1,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=1,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=1,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=1,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=2,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=2,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=2,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=2,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=2,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=2,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=2,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=2,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=2,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=3,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=3,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=3,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=3,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=3,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=3,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=3,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=3,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=3,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=4,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=4,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=4,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=4,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=4,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=4,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=4,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=4,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=4,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=5,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=5,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=5,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=5,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=5,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=5,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=5,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=5,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=5,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=6,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=6,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=6,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=6,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=6,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=6,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=6,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=6,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=6,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=7,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=7,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=7,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=7,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=7,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=7,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=7,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=7,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=7,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=8,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=8,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=8,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=8,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=8,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=8,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=8,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=8,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=8,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=9,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=9,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=9,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=9,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=9,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=9,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=9,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=9,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=9,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=10,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=10,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=10,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=10,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=10,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=10,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=10,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=10,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=10,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=11,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=11,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=11,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=11,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=11,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=11,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=11,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=11,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=11,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=12,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=12,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=12,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=12,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=12,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=12,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=12,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=12,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=12,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=13,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=13,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=13,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=13,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=13,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=13,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=13,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=13,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=13,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=14,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=14,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=14,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=14,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=14,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=14,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=14,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=14,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=14,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=15,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=15,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=15,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=15,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=15,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=15,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=15,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=15,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=side,power=15,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=0,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=0,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=0,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=0,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=0,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=0,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=0,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=0,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=0,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=1,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=1,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=1,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=1,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=1,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=1,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=1,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=1,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=1,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=2,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=2,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=2,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=2,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=2,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=2,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=2,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=2,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=2,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=3,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=3,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=3,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=3,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=3,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=3,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=3,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=3,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=3,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=4,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=4,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=4,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=4,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=4,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=4,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=4,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=4,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=4,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=5,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=5,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=5,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=5,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=5,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=5,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=5,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=5,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=5,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=6,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=6,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=6,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=6,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=6,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=6,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=6,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=6,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=6,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=7,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=7,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=7,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=7,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=7,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=7,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=7,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=7,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=7,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=8,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=8,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=8,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=8,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=8,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=8,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=8,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=8,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=8,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=9,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=9,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=9,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=9,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=9,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=9,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=9,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=9,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=9,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=10,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=10,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=10,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=10,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=10,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=10,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=10,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=10,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=10,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=11,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=11,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=11,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=11,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=11,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=11,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=11,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=11,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=11,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=12,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=12,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=12,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=12,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=12,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=12,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=12,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=12,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=12,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=13,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=13,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=13,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=13,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=13,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=13,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=13,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=13,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=13,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=14,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=14,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=14,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=14,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=14,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=14,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=14,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=14,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=14,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=15,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=15,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=15,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=15,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=15,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=15,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=15,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=15,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=side,north=none,power=15,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=0,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=0,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=0,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=0,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=0,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=0,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=0,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=0,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=0,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=1,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=1,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=1,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=1,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=1,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=1,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=1,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=1,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=1,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=2,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=2,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=2,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=2,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=2,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=2,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=2,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=2,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=2,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=3,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=3,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=3,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=3,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=3,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=3,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=3,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=3,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=3,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=4,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=4,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=4,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=4,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=4,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=4,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=4,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=4,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=4,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=5,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=5,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=5,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=5,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=5,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=5,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=5,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=5,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=5,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=6,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=6,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=6,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=6,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=6,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=6,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=6,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=6,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=6,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=7,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=7,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=7,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=7,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=7,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=7,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=7,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=7,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=7,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=8,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=8,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=8,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=8,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=8,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=8,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=8,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=8,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=8,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=9,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=9,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=9,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=9,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=9,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=9,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=9,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=9,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=9,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=10,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=10,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=10,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=10,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=10,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=10,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=10,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=10,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=10,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=11,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=11,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=11,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=11,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=11,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=11,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=11,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=11,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=11,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=12,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=12,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=12,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=12,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=12,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=12,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=12,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=12,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=12,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=13,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=13,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=13,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=13,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=13,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=13,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=13,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=13,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=13,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=14,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=14,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=14,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=14,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=14,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=14,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=14,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=14,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=14,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=15,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=15,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=15,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=15,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=15,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=15,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=15,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=15,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=up,power=15,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=0,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=0,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=0,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=0,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=0,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=0,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=0,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=0,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=0,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=1,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=1,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=1,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=1,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=1,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=1,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=1,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=1,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=1,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=2,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=2,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=2,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=2,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=2,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=2,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=2,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=2,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=2,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=3,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=3,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=3,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=3,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=3,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=3,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=3,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=3,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=3,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=4,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=4,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=4,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=4,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=4,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=4,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=4,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=4,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=4,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=5,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=5,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=5,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=5,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=5,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=5,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=5,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=5,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=5,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=6,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=6,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=6,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=6,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=6,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=6,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=6,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=6,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=6,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=7,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=7,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=7,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=7,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=7,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=7,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=7,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=7,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=7,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=8,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=8,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=8,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=8,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=8,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=8,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=8,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=8,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=8,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=9,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=9,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=9,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=9,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=9,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=9,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=9,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=9,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=9,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=10,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=10,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=10,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=10,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=10,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=10,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=10,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=10,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=10,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=11,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=11,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=11,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=11,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=11,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=11,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=11,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=11,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=11,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=12,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=12,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=12,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=12,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=12,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=12,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=12,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=12,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=12,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=13,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=13,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=13,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=13,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=13,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=13,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=13,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=13,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=13,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=14,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=14,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=14,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=14,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=14,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=14,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=14,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=14,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=14,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=15,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=15,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=15,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=15,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=15,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=15,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=15,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=15,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=side,power=15,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=0,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=0,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=0,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=0,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=0,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=0,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=0,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=0,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=0,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=1,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=1,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=1,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=1,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=1,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=1,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=1,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=1,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=1,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=2,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=2,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=2,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=2,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=2,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=2,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=2,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=2,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=2,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=3,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=3,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=3,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=3,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=3,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=3,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=3,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=3,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=3,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=4,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=4,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=4,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=4,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=4,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=4,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=4,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=4,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=4,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=5,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=5,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=5,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=5,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=5,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=5,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=5,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=5,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=5,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=6,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=6,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=6,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=6,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=6,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=6,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=6,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=6,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=6,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=7,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=7,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=7,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=7,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=7,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=7,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=7,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=7,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=7,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=8,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=8,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=8,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=8,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=8,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=8,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=8,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=8,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=8,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=9,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=9,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=9,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=9,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=9,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=9,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=9,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=9,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=9,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=10,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=10,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=10,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=10,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=10,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=10,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=10,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=10,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=10,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=11,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=11,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=11,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=11,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=11,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=11,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=11,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=11,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=11,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=12,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=12,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=12,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=12,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=12,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=12,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=12,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=12,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=12,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=13,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=13,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=13,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=13,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=13,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=13,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=13,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=13,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=13,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=14,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=14,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=14,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=14,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=14,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=14,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=14,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=14,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=14,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=15,south=up,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=15,south=up,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=15,south=up,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=15,south=side,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=15,south=side,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=15,south=side,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=15,south=none,west=up] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=15,south=none,west=side] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:redstone_wire[east=none,north=none,power=15,south=none,west=none] 233 233 233 19 186 186 186 19 116 116 116 19 93 93 93 19 +minecraft:diamond_ore 121 141 140 255 96 112 112 255 60 70 70 255 48 56 56 255 +minecraft:deepslate_diamond_ore 83 106 106 255 66 84 84 255 41 53 53 255 33 42 42 255 +minecraft:diamond_block 98 237 228 255 78 189 182 255 49 118 114 255 39 94 91 255 +minecraft:crafting_table 119 73 42 255 95 58 33 255 59 36 21 255 47 29 16 255 +minecraft:wheat 8 127 15 6 6 101 12 6 4 63 7 6 3 50 6 6 +minecraft:wheat[age=1] 5 127 7 15 4 101 5 15 2 63 3 15 2 50 2 15 +minecraft:wheat[age=2] 6 133 12 32 4 106 9 32 3 66 6 32 2 53 4 32 +minecraft:wheat[age=3] 10 130 13 57 8 104 10 57 5 65 6 57 4 52 5 57 +minecraft:wheat[age=4] 37 132 18 78 29 105 14 78 18 66 9 78 14 52 7 78 +minecraft:wheat[age=5] 63 129 18 103 50 103 14 103 31 64 9 103 25 51 7 103 +minecraft:wheat[age=6] 141 133 37 125 112 106 29 125 70 66 18 125 56 53 14 125 +minecraft:wheat[age=7] 166 151 73 138 132 120 58 138 83 75 36 138 66 60 29 138 +minecraft:farmland 143 102 70 255 114 81 56 255 71 51 35 255 57 40 28 255 +minecraft:farmland[moisture=1] 81 44 15 255 64 35 12 255 40 22 7 255 32 17 6 255 +minecraft:farmland[moisture=2] 81 44 15 255 64 35 12 255 40 22 7 255 32 17 6 255 +minecraft:farmland[moisture=3] 81 44 15 255 64 35 12 255 40 22 7 255 32 17 6 255 +minecraft:farmland[moisture=4] 81 44 15 255 64 35 12 255 40 22 7 255 32 17 6 255 +minecraft:farmland[moisture=5] 81 44 15 255 64 35 12 255 40 22 7 255 32 17 6 255 +minecraft:farmland[moisture=6] 81 44 15 255 64 35 12 255 40 22 7 255 32 17 6 255 +minecraft:farmland[moisture=7] 81 44 15 255 64 35 12 255 40 22 7 255 32 17 6 255 +minecraft:furnace 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:furnace[facing=north,lit=false] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:furnace[facing=south,lit=true] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:furnace[facing=south,lit=false] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:furnace[facing=west,lit=true] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:furnace[facing=west,lit=false] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:furnace[facing=east,lit=true] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:furnace[facing=east,lit=false] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:oak_sign 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=0,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=1,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=1,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=2,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=2,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=3,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=3,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=4,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=4,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=5,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=5,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=6,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=6,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=7,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=7,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=8,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=8,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=9,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=9,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=10,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=10,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=11,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=11,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=12,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=12,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=13,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=13,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=14,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=14,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=15,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=15,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:spruce_sign 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=0,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=1,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=1,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=2,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=2,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=3,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=3,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=4,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=4,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=5,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=5,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=6,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=6,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=7,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=7,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=8,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=8,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=9,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=9,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=10,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=10,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=11,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=11,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=12,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=12,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=13,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=13,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=14,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=14,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=15,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=15,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:birch_sign 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=0,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=1,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=1,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=2,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=2,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=3,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=3,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=4,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=4,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=5,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=5,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=6,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=6,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=7,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=7,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=8,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=8,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=9,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=9,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=10,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=10,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=11,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=11,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=12,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=12,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=13,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=13,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=14,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=14,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=15,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=15,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:acacia_sign 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=0,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=1,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=1,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=2,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=2,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=3,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=3,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=4,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=4,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=5,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=5,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=6,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=6,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=7,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=7,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=8,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=8,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=9,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=9,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=10,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=10,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=11,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=11,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=12,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=12,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=13,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=13,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=14,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=14,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=15,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=15,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:jungle_sign 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=0,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=1,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=1,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=2,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=2,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=3,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=3,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=4,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=4,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=5,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=5,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=6,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=6,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=7,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=7,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=8,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=8,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=9,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=9,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=10,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=10,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=11,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=11,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=12,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=12,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=13,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=13,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=14,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=14,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=15,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=15,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:dark_oak_sign 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=0,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=1,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=1,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=2,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=2,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=3,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=3,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=4,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=4,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=5,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=5,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=6,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=6,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=7,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=7,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=8,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=8,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=9,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=9,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=10,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=10,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=11,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=11,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=12,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=12,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=13,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=13,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=14,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=14,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=15,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=15,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:oak_door 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=upper,hinge=left,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=upper,hinge=left,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=upper,hinge=left,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=upper,hinge=right,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=upper,hinge=right,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=upper,hinge=right,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=upper,hinge=right,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=lower,hinge=left,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=lower,hinge=left,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=lower,hinge=left,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=lower,hinge=left,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=lower,hinge=right,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=lower,hinge=right,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=lower,hinge=right,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=lower,hinge=right,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=upper,hinge=left,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=upper,hinge=left,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=upper,hinge=left,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=upper,hinge=left,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=upper,hinge=right,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=upper,hinge=right,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=upper,hinge=right,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=upper,hinge=right,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=lower,hinge=left,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=lower,hinge=left,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=lower,hinge=left,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=lower,hinge=left,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=lower,hinge=right,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=lower,hinge=right,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=lower,hinge=right,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=lower,hinge=right,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=upper,hinge=left,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=upper,hinge=left,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=upper,hinge=left,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=upper,hinge=left,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=upper,hinge=right,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=upper,hinge=right,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=upper,hinge=right,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=upper,hinge=right,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=lower,hinge=left,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=lower,hinge=left,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=lower,hinge=left,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=lower,hinge=left,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=lower,hinge=right,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=lower,hinge=right,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=lower,hinge=right,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=lower,hinge=right,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=upper,hinge=left,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=upper,hinge=left,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=upper,hinge=left,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=upper,hinge=left,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=upper,hinge=right,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=upper,hinge=right,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=upper,hinge=right,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=upper,hinge=right,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=lower,hinge=left,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=lower,hinge=left,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=lower,hinge=left,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=lower,hinge=left,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=lower,hinge=right,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=lower,hinge=right,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=lower,hinge=right,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=lower,hinge=right,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:ladder 124 96 54 143 99 76 43 143 62 48 27 143 49 38 21 143 +minecraft:ladder[facing=north,waterlogged=false] 124 96 54 143 99 76 43 143 62 48 27 143 49 38 21 143 +minecraft:ladder[facing=south,waterlogged=true] 124 96 54 143 99 76 43 143 62 48 27 143 49 38 21 143 +minecraft:ladder[facing=south,waterlogged=false] 124 96 54 143 99 76 43 143 62 48 27 143 49 38 21 143 +minecraft:ladder[facing=west,waterlogged=true] 124 96 54 143 99 76 43 143 62 48 27 143 49 38 21 143 +minecraft:ladder[facing=west,waterlogged=false] 124 96 54 143 99 76 43 143 62 48 27 143 49 38 21 143 +minecraft:ladder[facing=east,waterlogged=true] 124 96 54 143 99 76 43 143 62 48 27 143 49 38 21 143 +minecraft:ladder[facing=east,waterlogged=false] 124 96 54 143 99 76 43 143 62 48 27 143 49 38 21 143 +minecraft:rail 125 111 88 143 100 88 70 143 62 55 44 143 50 44 35 143 +minecraft:rail[shape=north_south,waterlogged=false] 125 111 88 143 100 88 70 143 62 55 44 143 50 44 35 143 +minecraft:rail[shape=east_west,waterlogged=true] 125 111 88 143 100 88 70 143 62 55 44 143 50 44 35 143 +minecraft:rail[shape=east_west,waterlogged=false] 125 111 88 143 100 88 70 143 62 55 44 143 50 44 35 143 +minecraft:rail[shape=ascending_east,waterlogged=true] 125 111 88 143 100 88 70 143 62 55 44 143 50 44 35 143 +minecraft:rail[shape=ascending_east,waterlogged=false] 125 111 88 143 100 88 70 143 62 55 44 143 50 44 35 143 +minecraft:rail[shape=ascending_west,waterlogged=true] 125 111 88 143 100 88 70 143 62 55 44 143 50 44 35 143 +minecraft:rail[shape=ascending_west,waterlogged=false] 125 111 88 143 100 88 70 143 62 55 44 143 50 44 35 143 +minecraft:rail[shape=ascending_north,waterlogged=true] 125 111 88 143 100 88 70 143 62 55 44 143 50 44 35 143 +minecraft:rail[shape=ascending_north,waterlogged=false] 125 111 88 143 100 88 70 143 62 55 44 143 50 44 35 143 +minecraft:rail[shape=ascending_south,waterlogged=true] 125 111 88 143 100 88 70 143 62 55 44 143 50 44 35 143 +minecraft:rail[shape=ascending_south,waterlogged=false] 125 111 88 143 100 88 70 143 62 55 44 143 50 44 35 143 +minecraft:rail[shape=south_east,waterlogged=true] 130 115 89 107 104 92 71 107 65 57 44 107 52 46 35 107 +minecraft:rail[shape=south_east,waterlogged=false] 130 115 89 107 104 92 71 107 65 57 44 107 52 46 35 107 +minecraft:rail[shape=south_west,waterlogged=true] 130 115 89 107 104 92 71 107 65 57 44 107 52 46 35 107 +minecraft:rail[shape=south_west,waterlogged=false] 130 115 89 107 104 92 71 107 65 57 44 107 52 46 35 107 +minecraft:rail[shape=north_west,waterlogged=true] 130 115 89 107 104 92 71 107 65 57 44 107 52 46 35 107 +minecraft:rail[shape=north_west,waterlogged=false] 130 115 89 107 104 92 71 107 65 57 44 107 52 46 35 107 +minecraft:rail[shape=north_east,waterlogged=true] 130 115 89 107 104 92 71 107 65 57 44 107 52 46 35 107 +minecraft:rail[shape=north_east,waterlogged=false] 130 115 89 107 104 92 71 107 65 57 44 107 52 46 35 107 +minecraft:cobblestone_stairs 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=top,shape=straight,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=top,shape=straight,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=top,shape=straight,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=top,shape=straight,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=top,shape=straight,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=top,shape=straight,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=top,shape=straight,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:oak_wall_sign 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_wall_sign[facing=north,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_wall_sign[facing=south,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_wall_sign[facing=south,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_wall_sign[facing=west,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_wall_sign[facing=west,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_wall_sign[facing=east,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_wall_sign[facing=east,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:spruce_wall_sign 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_wall_sign[facing=north,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_wall_sign[facing=south,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_wall_sign[facing=south,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_wall_sign[facing=west,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_wall_sign[facing=west,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_wall_sign[facing=east,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_wall_sign[facing=east,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:birch_wall_sign 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_wall_sign[facing=north,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_wall_sign[facing=south,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_wall_sign[facing=south,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_wall_sign[facing=west,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_wall_sign[facing=west,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_wall_sign[facing=east,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_wall_sign[facing=east,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:acacia_wall_sign 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_wall_sign[facing=north,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_wall_sign[facing=south,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_wall_sign[facing=south,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_wall_sign[facing=west,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_wall_sign[facing=west,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_wall_sign[facing=east,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_wall_sign[facing=east,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:jungle_wall_sign 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_wall_sign[facing=north,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_wall_sign[facing=south,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_wall_sign[facing=south,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_wall_sign[facing=west,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_wall_sign[facing=west,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_wall_sign[facing=east,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_wall_sign[facing=east,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:dark_oak_wall_sign 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_wall_sign[facing=north,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_wall_sign[facing=south,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_wall_sign[facing=south,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_wall_sign[facing=west,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_wall_sign[facing=west,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_wall_sign[facing=east,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_wall_sign[facing=east,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:lever 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=floor,facing=north,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=floor,facing=south,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=floor,facing=south,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=floor,facing=west,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=floor,facing=west,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=floor,facing=east,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=floor,facing=east,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=wall,facing=north,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=wall,facing=north,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=wall,facing=south,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=wall,facing=south,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=wall,facing=west,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=wall,facing=west,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=wall,facing=east,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=wall,facing=east,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=ceiling,facing=north,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=ceiling,facing=north,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=ceiling,facing=south,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=ceiling,facing=south,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=ceiling,facing=west,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=ceiling,facing=west,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=ceiling,facing=east,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=ceiling,facing=east,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:stone_pressure_plate 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_pressure_plate[powered=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:iron_door 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=upper,hinge=left,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=upper,hinge=left,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=upper,hinge=left,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=upper,hinge=right,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=upper,hinge=right,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=upper,hinge=right,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=upper,hinge=right,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=lower,hinge=left,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=lower,hinge=left,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=lower,hinge=left,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=lower,hinge=left,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=lower,hinge=right,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=lower,hinge=right,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=lower,hinge=right,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=lower,hinge=right,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=upper,hinge=left,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=upper,hinge=left,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=upper,hinge=left,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=upper,hinge=left,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=upper,hinge=right,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=upper,hinge=right,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=upper,hinge=right,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=upper,hinge=right,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=lower,hinge=left,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=lower,hinge=left,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=lower,hinge=left,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=lower,hinge=left,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=lower,hinge=right,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=lower,hinge=right,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=lower,hinge=right,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=lower,hinge=right,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=upper,hinge=left,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=upper,hinge=left,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=upper,hinge=left,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=upper,hinge=left,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=upper,hinge=right,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=upper,hinge=right,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=upper,hinge=right,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=upper,hinge=right,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=lower,hinge=left,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=lower,hinge=left,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=lower,hinge=left,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=lower,hinge=left,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=lower,hinge=right,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=lower,hinge=right,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=lower,hinge=right,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=lower,hinge=right,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=upper,hinge=left,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=upper,hinge=left,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=upper,hinge=left,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=upper,hinge=left,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=upper,hinge=right,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=upper,hinge=right,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=upper,hinge=right,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=upper,hinge=right,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=lower,hinge=left,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=lower,hinge=left,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=lower,hinge=left,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=lower,hinge=left,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=lower,hinge=right,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=lower,hinge=right,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=lower,hinge=right,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=lower,hinge=right,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:oak_pressure_plate 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_pressure_plate[powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:spruce_pressure_plate 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_pressure_plate[powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:birch_pressure_plate 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_pressure_plate[powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:jungle_pressure_plate 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_pressure_plate[powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:acacia_pressure_plate 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_pressure_plate[powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:dark_oak_pressure_plate 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_pressure_plate[powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:redstone_ore 140 109 109 255 112 87 87 255 70 54 54 255 56 43 43 255 +minecraft:redstone_ore[lit=false] 140 109 109 255 112 87 87 255 70 54 54 255 56 43 43 255 +minecraft:deepslate_redstone_ore 104 73 74 255 83 58 59 255 52 36 37 255 41 29 29 255 +minecraft:deepslate_redstone_ore[lit=false] 104 73 74 255 83 58 59 255 52 36 37 255 41 29 29 255 +minecraft:redstone_torch 171 79 44 25 136 63 35 25 85 39 22 25 68 31 17 25 +minecraft:redstone_torch[lit=false] 101 69 43 19 80 55 34 19 50 34 21 19 40 27 17 19 +minecraft:redstone_wall_torch 171 79 44 25 136 63 35 25 85 39 22 25 68 31 17 25 +minecraft:redstone_wall_torch[facing=north,lit=false] 101 69 43 19 80 55 34 19 50 34 21 19 40 27 17 19 +minecraft:redstone_wall_torch[facing=south,lit=true] 171 79 44 25 136 63 35 25 85 39 22 25 68 31 17 25 +minecraft:redstone_wall_torch[facing=south,lit=false] 101 69 43 19 80 55 34 19 50 34 21 19 40 27 17 19 +minecraft:redstone_wall_torch[facing=west,lit=true] 171 79 44 25 136 63 35 25 85 39 22 25 68 31 17 25 +minecraft:redstone_wall_torch[facing=west,lit=false] 101 69 43 19 80 55 34 19 50 34 21 19 40 27 17 19 +minecraft:redstone_wall_torch[facing=east,lit=true] 171 79 44 25 136 63 35 25 85 39 22 25 68 31 17 25 +minecraft:redstone_wall_torch[facing=east,lit=false] 101 69 43 19 80 55 34 19 50 34 21 19 40 27 17 19 +minecraft:stone_button 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=floor,facing=north,powered=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=floor,facing=south,powered=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=floor,facing=south,powered=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=floor,facing=west,powered=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=floor,facing=west,powered=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=floor,facing=east,powered=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=floor,facing=east,powered=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=wall,facing=north,powered=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=wall,facing=north,powered=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=wall,facing=south,powered=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=wall,facing=south,powered=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=wall,facing=west,powered=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=wall,facing=west,powered=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=wall,facing=east,powered=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=wall,facing=east,powered=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=ceiling,facing=north,powered=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=ceiling,facing=north,powered=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=ceiling,facing=south,powered=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=ceiling,facing=south,powered=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=ceiling,facing=west,powered=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=ceiling,facing=west,powered=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=ceiling,facing=east,powered=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=ceiling,facing=east,powered=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:snow 249 254 254 255 199 203 203 255 124 127 127 255 99 101 101 255 +minecraft:snow[layers=2] 249 254 254 255 199 203 203 255 124 127 127 255 99 101 101 255 +minecraft:snow[layers=3] 249 254 254 255 199 203 203 255 124 127 127 255 99 101 101 255 +minecraft:snow[layers=4] 249 254 254 255 199 203 203 255 124 127 127 255 99 101 101 255 +minecraft:snow[layers=5] 249 254 254 255 199 203 203 255 124 127 127 255 99 101 101 255 +minecraft:snow[layers=6] 249 254 254 255 199 203 203 255 124 127 127 255 99 101 101 255 +minecraft:snow[layers=7] 249 254 254 255 199 203 203 255 124 127 127 255 99 101 101 255 +minecraft:snow[layers=8] 249 254 254 255 199 203 203 255 124 127 127 255 99 101 101 255 +minecraft:ice 145 183 253 190 116 146 202 190 72 91 126 190 58 73 101 190 +minecraft:snow_block 249 254 254 255 199 203 203 255 124 127 127 255 99 101 101 255 +minecraft:cactus 85 127 43 195 68 101 34 195 42 63 21 195 34 50 17 195 +minecraft:cactus[age=1] 85 127 43 195 68 101 34 195 42 63 21 195 34 50 17 195 +minecraft:cactus[age=2] 85 127 43 195 68 101 34 195 42 63 21 195 34 50 17 195 +minecraft:cactus[age=3] 85 127 43 195 68 101 34 195 42 63 21 195 34 50 17 195 +minecraft:cactus[age=4] 85 127 43 195 68 101 34 195 42 63 21 195 34 50 17 195 +minecraft:cactus[age=5] 85 127 43 195 68 101 34 195 42 63 21 195 34 50 17 195 +minecraft:cactus[age=6] 85 127 43 195 68 101 34 195 42 63 21 195 34 50 17 195 +minecraft:cactus[age=7] 85 127 43 195 68 101 34 195 42 63 21 195 34 50 17 195 +minecraft:cactus[age=8] 85 127 43 195 68 101 34 195 42 63 21 195 34 50 17 195 +minecraft:cactus[age=9] 85 127 43 195 68 101 34 195 42 63 21 195 34 50 17 195 +minecraft:cactus[age=10] 85 127 43 195 68 101 34 195 42 63 21 195 34 50 17 195 +minecraft:cactus[age=11] 85 127 43 195 68 101 34 195 42 63 21 195 34 50 17 195 +minecraft:cactus[age=12] 85 127 43 195 68 101 34 195 42 63 21 195 34 50 17 195 +minecraft:cactus[age=13] 85 127 43 195 68 101 34 195 42 63 21 195 34 50 17 195 +minecraft:cactus[age=14] 85 127 43 195 68 101 34 195 42 63 21 195 34 50 17 195 +minecraft:cactus[age=15] 85 127 43 195 68 101 34 195 42 63 21 195 34 50 17 195 +minecraft:clay 160 166 179 255 128 132 143 255 80 83 89 255 64 66 71 255 +minecraft:sugar_cane 148 192 101 140 118 153 80 140 74 96 50 140 59 76 40 140 +minecraft:sugar_cane[age=1] 148 192 101 140 118 153 80 140 74 96 50 140 59 76 40 140 +minecraft:sugar_cane[age=2] 148 192 101 140 118 153 80 140 74 96 50 140 59 76 40 140 +minecraft:sugar_cane[age=3] 148 192 101 140 118 153 80 140 74 96 50 140 59 76 40 140 +minecraft:sugar_cane[age=4] 148 192 101 140 118 153 80 140 74 96 50 140 59 76 40 140 +minecraft:sugar_cane[age=5] 148 192 101 140 118 153 80 140 74 96 50 140 59 76 40 140 +minecraft:sugar_cane[age=6] 148 192 101 140 118 153 80 140 74 96 50 140 59 76 40 140 +minecraft:sugar_cane[age=7] 148 192 101 140 118 153 80 140 74 96 50 140 59 76 40 140 +minecraft:sugar_cane[age=8] 148 192 101 140 118 153 80 140 74 96 50 140 59 76 40 140 +minecraft:sugar_cane[age=9] 148 192 101 140 118 153 80 140 74 96 50 140 59 76 40 140 +minecraft:sugar_cane[age=10] 148 192 101 140 118 153 80 140 74 96 50 140 59 76 40 140 +minecraft:sugar_cane[age=11] 148 192 101 140 118 153 80 140 74 96 50 140 59 76 40 140 +minecraft:sugar_cane[age=12] 148 192 101 140 118 153 80 140 74 96 50 140 59 76 40 140 +minecraft:sugar_cane[age=13] 148 192 101 140 118 153 80 140 74 96 50 140 59 76 40 140 +minecraft:sugar_cane[age=14] 148 192 101 140 118 153 80 140 74 96 50 140 59 76 40 140 +minecraft:sugar_cane[age=15] 148 192 101 140 118 153 80 140 74 96 50 140 59 76 40 140 +minecraft:jukebox 93 64 47 255 74 51 37 255 46 32 23 255 37 25 18 255 +minecraft:jukebox[has_record=false] 93 64 47 255 74 51 37 255 46 32 23 255 37 25 18 255 +minecraft:oak_fence 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=true,north=true,south=true,waterlogged=true,west=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=true,north=true,south=true,waterlogged=false,west=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=true,north=true,south=true,waterlogged=false,west=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=true,north=true,south=false,waterlogged=true,west=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=true,north=true,south=false,waterlogged=true,west=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=true,north=true,south=false,waterlogged=false,west=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=true,north=true,south=false,waterlogged=false,west=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=true,north=false,south=true,waterlogged=true,west=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=true,north=false,south=true,waterlogged=true,west=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=true,north=false,south=true,waterlogged=false,west=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=true,north=false,south=true,waterlogged=false,west=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=true,north=false,south=false,waterlogged=true,west=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=true,north=false,south=false,waterlogged=true,west=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=true,north=false,south=false,waterlogged=false,west=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=true,north=false,south=false,waterlogged=false,west=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=false,north=true,south=true,waterlogged=true,west=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=false,north=true,south=true,waterlogged=true,west=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=false,north=true,south=true,waterlogged=false,west=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=false,north=true,south=true,waterlogged=false,west=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=false,north=true,south=false,waterlogged=true,west=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=false,north=true,south=false,waterlogged=true,west=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=false,north=true,south=false,waterlogged=false,west=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=false,north=true,south=false,waterlogged=false,west=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=false,north=false,south=true,waterlogged=true,west=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=false,north=false,south=true,waterlogged=true,west=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=false,north=false,south=true,waterlogged=false,west=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=false,north=false,south=true,waterlogged=false,west=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=false,north=false,south=false,waterlogged=true,west=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=false,north=false,south=false,waterlogged=true,west=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=false,north=false,south=false,waterlogged=false,west=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=false,north=false,south=false,waterlogged=false,west=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pumpkin 198 118 24 255 158 94 19 255 99 59 12 255 79 47 9 255 +minecraft:netherrack 97 38 38 255 77 30 30 255 48 19 19 255 38 15 15 255 +minecraft:soul_sand 81 62 50 255 64 49 40 255 40 31 25 255 32 24 20 255 +minecraft:soul_soil 75 57 46 255 60 45 36 255 37 28 23 255 30 22 18 255 +minecraft:basalt 73 72 77 255 58 57 61 255 36 36 38 255 29 28 30 255 +minecraft:basalt[axis=y] 80 81 86 255 64 64 68 255 40 40 43 255 32 32 34 255 +minecraft:basalt[axis=z] 73 72 77 255 58 57 61 255 36 36 38 255 29 28 30 255 +minecraft:polished_basalt 88 88 91 255 70 70 72 255 44 44 45 255 35 35 36 255 +minecraft:polished_basalt[axis=y] 99 98 100 255 79 78 80 255 49 49 50 255 39 39 40 255 +minecraft:polished_basalt[axis=z] 88 88 91 255 70 70 72 255 44 44 45 255 35 35 36 255 +minecraft:soul_torch 109 115 89 19 87 92 71 19 54 57 44 19 43 46 35 19 +minecraft:soul_wall_torch 109 115 89 19 87 92 71 19 54 57 44 19 43 46 35 19 +minecraft:soul_wall_torch[facing=south] 109 115 89 19 87 92 71 19 54 57 44 19 43 46 35 19 +minecraft:soul_wall_torch[facing=west] 109 115 89 19 87 92 71 19 54 57 44 19 43 46 35 19 +minecraft:soul_wall_torch[facing=east] 109 115 89 19 87 92 71 19 54 57 44 19 43 46 35 19 +minecraft:glowstone 171 131 84 255 136 104 67 255 85 65 42 255 68 52 33 255 +minecraft:nether_portal 91 13 193 192 72 10 154 192 45 6 96 192 36 5 77 192 +minecraft:nether_portal[axis=z] 91 13 193 192 72 10 154 192 45 6 96 192 36 5 77 192 +minecraft:carved_pumpkin 198 118 24 255 158 94 19 255 99 59 12 255 79 47 9 255 +minecraft:carved_pumpkin[facing=south] 198 118 24 255 158 94 19 255 99 59 12 255 79 47 9 255 +minecraft:carved_pumpkin[facing=west] 198 118 24 255 158 94 19 255 99 59 12 255 79 47 9 255 +minecraft:carved_pumpkin[facing=east] 198 118 24 255 158 94 19 255 99 59 12 255 79 47 9 255 +minecraft:jack_o_lantern 198 118 24 255 158 94 19 255 99 59 12 255 79 47 9 255 +minecraft:jack_o_lantern[facing=south] 198 118 24 255 158 94 19 255 99 59 12 255 79 47 9 255 +minecraft:jack_o_lantern[facing=west] 198 118 24 255 158 94 19 255 99 59 12 255 79 47 9 255 +minecraft:jack_o_lantern[facing=east] 198 118 24 255 158 94 19 255 99 59 12 255 79 47 9 255 +minecraft:cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:cake[bites=1] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:cake[bites=2] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:cake[bites=3] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:cake[bites=4] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:cake[bites=5] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:cake[bites=6] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:repeater 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=1,facing=north,locked=true,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=1,facing=north,locked=false,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=1,facing=north,locked=false,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=1,facing=south,locked=true,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=1,facing=south,locked=true,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=1,facing=south,locked=false,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=1,facing=south,locked=false,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=1,facing=west,locked=true,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=1,facing=west,locked=true,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=1,facing=west,locked=false,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=1,facing=west,locked=false,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=1,facing=east,locked=true,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=1,facing=east,locked=true,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=1,facing=east,locked=false,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=1,facing=east,locked=false,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=2,facing=north,locked=true,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=2,facing=north,locked=true,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=2,facing=north,locked=false,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=2,facing=north,locked=false,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=2,facing=south,locked=true,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=2,facing=south,locked=true,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=2,facing=south,locked=false,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=2,facing=south,locked=false,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=2,facing=west,locked=true,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=2,facing=west,locked=true,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=2,facing=west,locked=false,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=2,facing=west,locked=false,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=2,facing=east,locked=true,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=2,facing=east,locked=true,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=2,facing=east,locked=false,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=2,facing=east,locked=false,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=3,facing=north,locked=true,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=3,facing=north,locked=true,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=3,facing=north,locked=false,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=3,facing=north,locked=false,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=3,facing=south,locked=true,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=3,facing=south,locked=true,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=3,facing=south,locked=false,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=3,facing=south,locked=false,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=3,facing=west,locked=true,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=3,facing=west,locked=true,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=3,facing=west,locked=false,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=3,facing=west,locked=false,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=3,facing=east,locked=true,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=3,facing=east,locked=true,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=3,facing=east,locked=false,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=3,facing=east,locked=false,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=4,facing=north,locked=true,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=4,facing=north,locked=true,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=4,facing=north,locked=false,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=4,facing=north,locked=false,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=4,facing=south,locked=true,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=4,facing=south,locked=true,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=4,facing=south,locked=false,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=4,facing=south,locked=false,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=4,facing=west,locked=true,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=4,facing=west,locked=true,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=4,facing=west,locked=false,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=4,facing=west,locked=false,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=4,facing=east,locked=true,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=4,facing=east,locked=true,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=4,facing=east,locked=false,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=4,facing=east,locked=false,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:white_stained_glass 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:orange_stained_glass 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:magenta_stained_glass 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:light_blue_stained_glass 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:yellow_stained_glass 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:lime_stained_glass 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:pink_stained_glass 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:gray_stained_glass 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:light_gray_stained_glass 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:cyan_stained_glass 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:purple_stained_glass 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:blue_stained_glass 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:brown_stained_glass 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:green_stained_glass 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:red_stained_glass 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:black_stained_glass 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:oak_trapdoor 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:spruce_trapdoor 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:birch_trapdoor 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:jungle_trapdoor 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:acacia_trapdoor 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:dark_oak_trapdoor 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:stone_bricks 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:mossy_stone_bricks 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:cracked_stone_bricks 118 117 118 255 94 93 94 255 59 58 59 255 47 46 47 255 +minecraft:chiseled_stone_bricks 119 118 119 255 95 94 95 255 59 59 59 255 47 47 47 255 +minecraft:infested_stone 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:infested_cobblestone 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:infested_stone_bricks 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:infested_mossy_stone_bricks 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:infested_cracked_stone_bricks 118 117 118 255 94 93 94 255 59 58 59 255 47 46 47 255 +minecraft:infested_chiseled_stone_bricks 119 118 119 255 95 94 95 255 59 59 59 255 47 47 47 255 +minecraft:brown_mushroom_block 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=true,north=true,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=true,north=true,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=true,north=true,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=true,north=true,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=true,north=true,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=true,north=true,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=true,north=true,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=true,north=false,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=true,north=false,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=true,north=false,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=true,north=false,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=true,north=false,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=true,north=false,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=true,north=false,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=true,north=false,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=false,north=true,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=false,north=true,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=false,north=true,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=false,north=true,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=false,north=true,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=false,north=true,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=false,north=true,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=false,north=true,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=false,north=false,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=false,north=false,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=false,north=false,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=false,north=false,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=false,north=false,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=false,north=false,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=false,north=false,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=false,north=false,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=true,north=true,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=true,north=true,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=true,north=true,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=true,north=true,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=true,north=true,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=true,north=true,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=true,north=true,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=true,north=true,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=true,north=false,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=true,north=false,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=true,north=false,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=true,north=false,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=true,north=false,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=true,north=false,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=true,north=false,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=true,north=false,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=false,north=true,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=false,north=true,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=false,north=true,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=false,north=true,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=false,north=true,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=false,north=true,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=false,north=true,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=false,north=true,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=false,north=false,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=false,north=false,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=false,north=false,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=false,north=false,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=false,north=false,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=false,north=false,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=false,north=false,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=false,north=false,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=true,north=true,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=true,north=true,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=true,north=true,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=true,north=true,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=true,north=true,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=true,north=true,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=true,north=true,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=true,north=false,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=true,north=false,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=true,north=false,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=true,north=false,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=true,north=false,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=true,north=false,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=true,north=false,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=true,north=false,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=false,north=true,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=false,north=true,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=false,north=true,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=false,north=true,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=false,north=true,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=false,north=true,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=false,north=true,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=false,north=true,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=false,north=false,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=false,north=false,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=false,north=false,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=false,north=false,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=false,north=false,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=false,north=false,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=false,north=false,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=false,north=false,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=true,north=true,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=true,north=true,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=true,north=true,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=true,north=true,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=true,north=true,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=true,north=true,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=true,north=true,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=true,north=true,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=true,north=false,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=true,north=false,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=true,north=false,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=true,north=false,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=true,north=false,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=true,north=false,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=true,north=false,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=true,north=false,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=false,north=true,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=false,north=true,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=false,north=true,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=false,north=true,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=false,north=true,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=false,north=true,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=false,north=true,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=false,north=true,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=false,north=false,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=false,north=false,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=false,north=false,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=false,north=false,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=false,north=false,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=false,north=false,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=false,north=false,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=false,north=false,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=true,north=true,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=true,north=true,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=true,north=true,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=true,north=true,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=true,north=true,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=true,north=true,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=true,north=true,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=true,north=false,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=true,north=false,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=true,north=false,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=true,north=false,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=true,north=false,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=true,north=false,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=true,north=false,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=true,north=false,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=false,north=true,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=false,north=true,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=false,north=true,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=false,north=true,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=false,north=true,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=false,north=true,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=false,north=true,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=false,north=true,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=false,north=false,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=false,north=false,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=false,north=false,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=false,north=false,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=false,north=false,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=false,north=false,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=false,north=false,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=false,north=false,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=true,north=true,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=true,north=true,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=true,north=true,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=true,north=true,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=true,north=true,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=true,north=true,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=true,north=true,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=true,north=true,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=true,north=false,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=true,north=false,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=true,north=false,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=true,north=false,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=true,north=false,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=true,north=false,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=true,north=false,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=true,north=false,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=false,north=true,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=false,north=true,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=false,north=true,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=false,north=true,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=false,north=true,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=false,north=true,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=false,north=true,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=false,north=true,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=false,north=false,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=false,north=false,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=false,north=false,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=false,north=false,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=false,north=false,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=false,north=false,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=false,north=false,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=false,north=false,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:iron_bars 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=true,north=true,south=true,waterlogged=true,west=false] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=true,north=true,south=true,waterlogged=false,west=true] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=true,north=true,south=true,waterlogged=false,west=false] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=true,north=true,south=false,waterlogged=true,west=true] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=true,north=true,south=false,waterlogged=true,west=false] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=true,north=true,south=false,waterlogged=false,west=true] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=true,north=true,south=false,waterlogged=false,west=false] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=true,north=false,south=true,waterlogged=true,west=true] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=true,north=false,south=true,waterlogged=true,west=false] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=true,north=false,south=true,waterlogged=false,west=true] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=true,north=false,south=true,waterlogged=false,west=false] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=true,north=false,south=false,waterlogged=true,west=true] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=true,north=false,south=false,waterlogged=true,west=false] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=true,north=false,south=false,waterlogged=false,west=true] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=true,north=false,south=false,waterlogged=false,west=false] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=false,north=true,south=true,waterlogged=true,west=true] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=false,north=true,south=true,waterlogged=true,west=false] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=false,north=true,south=true,waterlogged=false,west=true] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=false,north=true,south=true,waterlogged=false,west=false] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=false,north=true,south=false,waterlogged=true,west=true] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=false,north=true,south=false,waterlogged=true,west=false] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=false,north=true,south=false,waterlogged=false,west=true] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=false,north=true,south=false,waterlogged=false,west=false] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=false,north=false,south=true,waterlogged=true,west=true] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=false,north=false,south=true,waterlogged=true,west=false] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=false,north=false,south=true,waterlogged=false,west=true] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=false,north=false,south=true,waterlogged=false,west=false] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=false,north=false,south=false,waterlogged=true,west=true] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=false,north=false,south=false,waterlogged=true,west=false] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=false,north=false,south=false,waterlogged=false,west=true] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=false,north=false,south=false,waterlogged=false,west=false] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:chain 52 59 75 25 41 47 60 25 26 29 37 25 20 23 30 25 +minecraft:chain[axis=x,waterlogged=false] 52 59 75 25 41 47 60 25 26 29 37 25 20 23 30 25 +minecraft:chain[axis=y,waterlogged=true] 52 59 75 25 41 47 60 25 26 29 37 25 20 23 30 25 +minecraft:chain[axis=y,waterlogged=false] 52 59 75 25 41 47 60 25 26 29 37 25 20 23 30 25 +minecraft:chain[axis=z,waterlogged=true] 52 59 75 25 41 47 60 25 26 29 37 25 20 23 30 25 +minecraft:chain[axis=z,waterlogged=false] 52 59 75 25 41 47 60 25 26 29 37 25 20 23 30 25 +minecraft:glass_pane 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=true,north=true,south=true,waterlogged=false,west=false] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=true,north=true,south=false,waterlogged=true,west=true] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=true,north=true,south=false,waterlogged=true,west=false] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=true,north=true,south=false,waterlogged=false,west=true] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=true,north=true,south=false,waterlogged=false,west=false] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=true,north=false,south=true,waterlogged=true,west=true] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=true,north=false,south=true,waterlogged=true,west=false] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=true,north=false,south=true,waterlogged=false,west=true] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=true,north=false,south=true,waterlogged=false,west=false] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=true,north=false,south=false,waterlogged=true,west=true] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=true,north=false,south=false,waterlogged=true,west=false] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=true,north=false,south=false,waterlogged=false,west=true] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=true,north=false,south=false,waterlogged=false,west=false] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=false,north=true,south=true,waterlogged=true,west=true] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=false,north=true,south=true,waterlogged=true,west=false] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=false,north=true,south=true,waterlogged=false,west=true] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=false,north=true,south=true,waterlogged=false,west=false] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=false,north=true,south=false,waterlogged=true,west=true] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=false,north=true,south=false,waterlogged=true,west=false] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=false,north=true,south=false,waterlogged=false,west=true] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=false,north=true,south=false,waterlogged=false,west=false] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=false,north=false,south=true,waterlogged=true,west=true] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=false,north=false,south=true,waterlogged=true,west=false] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=false,north=false,south=true,waterlogged=false,west=true] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=false,north=false,south=true,waterlogged=false,west=false] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=false,north=false,south=false,waterlogged=true,west=true] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=false,north=false,south=false,waterlogged=true,west=false] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:melon 111 144 30 255 88 115 24 255 55 72 15 255 44 57 12 255 +minecraft:attached_pumpkin_stem 65 104 49 32 52 83 39 32 32 52 24 32 26 41 19 32 +minecraft:attached_pumpkin_stem[facing=south] 65 104 49 32 52 83 39 32 32 52 24 32 26 41 19 32 +minecraft:attached_pumpkin_stem[facing=west] 65 104 49 32 52 83 39 32 32 52 24 32 26 41 19 32 +minecraft:attached_pumpkin_stem[facing=east] 65 104 49 32 52 83 39 32 32 52 24 32 26 41 19 32 +minecraft:attached_melon_stem 66 106 49 32 52 84 39 32 33 53 24 32 26 42 19 32 +minecraft:attached_melon_stem[facing=south] 66 106 49 32 52 84 39 32 33 53 24 32 26 42 19 32 +minecraft:attached_melon_stem[facing=west] 66 106 49 32 52 84 39 32 33 53 24 32 26 42 19 32 +minecraft:attached_melon_stem[facing=east] 66 106 49 32 52 84 39 32 33 53 24 32 26 42 19 32 +minecraft:pumpkin_stem 73 115 54 34 58 92 43 34 36 57 27 34 29 46 21 34 +minecraft:pumpkin_stem[age=1] 73 115 54 34 58 92 43 34 36 57 27 34 29 46 21 34 +minecraft:pumpkin_stem[age=2] 73 115 54 34 58 92 43 34 36 57 27 34 29 46 21 34 +minecraft:pumpkin_stem[age=3] 73 115 54 34 58 92 43 34 36 57 27 34 29 46 21 34 +minecraft:pumpkin_stem[age=4] 73 115 54 34 58 92 43 34 36 57 27 34 29 46 21 34 +minecraft:pumpkin_stem[age=5] 73 115 54 34 58 92 43 34 36 57 27 34 29 46 21 34 +minecraft:pumpkin_stem[age=6] 73 115 54 34 58 92 43 34 36 57 27 34 29 46 21 34 +minecraft:pumpkin_stem[age=7] 73 115 54 34 58 92 43 34 36 57 27 34 29 46 21 34 +minecraft:melon_stem 72 115 54 34 57 92 43 34 36 57 27 34 28 46 21 34 +minecraft:melon_stem[age=1] 72 115 54 34 57 92 43 34 36 57 27 34 28 46 21 34 +minecraft:melon_stem[age=2] 72 115 54 34 57 92 43 34 36 57 27 34 28 46 21 34 +minecraft:melon_stem[age=3] 72 115 54 34 57 92 43 34 36 57 27 34 28 46 21 34 +minecraft:melon_stem[age=4] 72 115 54 34 57 92 43 34 36 57 27 34 28 46 21 34 +minecraft:melon_stem[age=5] 72 115 54 34 57 92 43 34 36 57 27 34 28 46 21 34 +minecraft:melon_stem[age=6] 72 115 54 34 57 92 43 34 36 57 27 34 28 46 21 34 +minecraft:melon_stem[age=7] 72 115 54 34 57 92 43 34 36 57 27 34 28 46 21 34 +minecraft:vine 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=true,north=true,south=true,up=true,west=false] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=true,north=true,south=true,up=false,west=true] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=true,north=true,south=true,up=false,west=false] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=true,north=true,south=false,up=true,west=true] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=true,north=true,south=false,up=true,west=false] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=true,north=true,south=false,up=false,west=true] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=true,north=true,south=false,up=false,west=false] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=true,north=false,south=true,up=true,west=true] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=true,north=false,south=true,up=true,west=false] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=true,north=false,south=true,up=false,west=true] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=true,north=false,south=true,up=false,west=false] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=true,north=false,south=false,up=true,west=true] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=true,north=false,south=false,up=true,west=false] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=true,north=false,south=false,up=false,west=true] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=true,north=false,south=false,up=false,west=false] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=false,north=true,south=true,up=true,west=true] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=false,north=true,south=true,up=true,west=false] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=false,north=true,south=true,up=false,west=true] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=false,north=true,south=true,up=false,west=false] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=false,north=true,south=false,up=true,west=true] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=false,north=true,south=false,up=true,west=false] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=false,north=true,south=false,up=false,west=true] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=false,north=true,south=false,up=false,west=false] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=false,north=false,south=true,up=true,west=true] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=false,north=false,south=true,up=true,west=false] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=false,north=false,south=true,up=false,west=true] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=false,north=false,south=true,up=false,west=false] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=false,north=false,south=false,up=true,west=true] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=false,north=false,south=false,up=true,west=false] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=false,north=false,south=false,up=false,west=true] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=false,north=false,south=false,up=false,west=false] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:glow_lichen 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:oak_fence_gate 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=north,in_wall=true,open=true,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=north,in_wall=true,open=false,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=north,in_wall=true,open=false,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=north,in_wall=false,open=true,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=north,in_wall=false,open=true,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=north,in_wall=false,open=false,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=north,in_wall=false,open=false,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=south,in_wall=true,open=true,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=south,in_wall=true,open=true,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=south,in_wall=true,open=false,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=south,in_wall=true,open=false,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=south,in_wall=false,open=true,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=south,in_wall=false,open=true,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=south,in_wall=false,open=false,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=south,in_wall=false,open=false,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=west,in_wall=true,open=true,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=west,in_wall=true,open=true,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=west,in_wall=true,open=false,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=west,in_wall=true,open=false,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=west,in_wall=false,open=true,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=west,in_wall=false,open=true,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=west,in_wall=false,open=false,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=west,in_wall=false,open=false,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=east,in_wall=true,open=true,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=east,in_wall=true,open=true,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=east,in_wall=true,open=false,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=east,in_wall=true,open=false,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=east,in_wall=false,open=true,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=east,in_wall=false,open=true,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=east,in_wall=false,open=false,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=east,in_wall=false,open=false,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brick_stairs 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=top,shape=straight,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=top,shape=straight,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=top,shape=straight,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=top,shape=straight,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=top,shape=straight,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=top,shape=straight,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=top,shape=straight,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:stone_brick_stairs 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:mycelium 69 110 51 255 55 88 40 255 34 55 25 255 27 44 20 255 +minecraft:mycelium[snowy=false] 111 98 101 255 88 78 80 255 55 49 50 255 44 39 40 255 +minecraft:lily_pad 16 66 25 149 12 52 20 149 8 33 12 149 6 26 10 149 +minecraft:nether_bricks 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=true,north=true,south=true,waterlogged=true,west=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=true,north=true,south=true,waterlogged=false,west=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=true,north=true,south=true,waterlogged=false,west=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=true,north=true,south=false,waterlogged=true,west=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=true,north=true,south=false,waterlogged=true,west=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=true,north=true,south=false,waterlogged=false,west=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=true,north=true,south=false,waterlogged=false,west=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=true,north=false,south=true,waterlogged=true,west=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=true,north=false,south=true,waterlogged=true,west=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=true,north=false,south=true,waterlogged=false,west=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=true,north=false,south=true,waterlogged=false,west=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=true,north=false,south=false,waterlogged=true,west=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=true,north=false,south=false,waterlogged=true,west=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=true,north=false,south=false,waterlogged=false,west=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=true,north=false,south=false,waterlogged=false,west=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=false,north=true,south=true,waterlogged=true,west=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=false,north=true,south=true,waterlogged=true,west=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=false,north=true,south=true,waterlogged=false,west=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=false,north=true,south=true,waterlogged=false,west=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=false,north=true,south=false,waterlogged=true,west=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=false,north=true,south=false,waterlogged=true,west=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=false,north=true,south=false,waterlogged=false,west=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=false,north=true,south=false,waterlogged=false,west=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=false,north=false,south=true,waterlogged=true,west=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=false,north=false,south=true,waterlogged=true,west=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=false,north=false,south=true,waterlogged=false,west=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=false,north=false,south=true,waterlogged=false,west=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=false,north=false,south=false,waterlogged=true,west=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=false,north=false,south=false,waterlogged=true,west=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=false,north=false,south=false,waterlogged=false,west=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=false,north=false,south=false,waterlogged=false,west=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_wart 117 18 21 43 93 14 16 43 58 9 10 43 46 7 8 43 +minecraft:nether_wart[age=1] 115 17 18 118 92 13 14 118 57 8 9 118 46 6 7 118 +minecraft:nether_wart[age=2] 115 17 18 118 92 13 14 118 57 8 9 118 46 6 7 118 +minecraft:nether_wart[age=3] 111 18 19 159 88 14 15 159 55 9 9 159 44 7 7 159 +minecraft:enchanting_table 128 75 85 255 102 60 68 255 64 37 42 255 51 30 34 255 +minecraft:brewing_stand 123 101 81 125 98 80 64 125 61 50 40 125 49 40 32 125 +minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=true,has_bottle_2=false] 123 101 81 125 98 80 64 125 61 50 40 125 49 40 32 125 +minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=false,has_bottle_2=true] 123 101 81 125 98 80 64 125 61 50 40 125 49 40 32 125 +minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=false,has_bottle_2=false] 123 101 81 125 98 80 64 125 61 50 40 125 49 40 32 125 +minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=true,has_bottle_2=true] 123 101 81 125 98 80 64 125 61 50 40 125 49 40 32 125 +minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=true,has_bottle_2=false] 123 101 81 125 98 80 64 125 61 50 40 125 49 40 32 125 +minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=false,has_bottle_2=true] 123 101 81 125 98 80 64 125 61 50 40 125 49 40 32 125 +minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=false,has_bottle_2=false] 123 101 81 125 98 80 64 125 61 50 40 125 49 40 32 125 +minecraft:cauldron 73 72 74 155 58 57 59 155 36 36 37 155 29 28 29 155 +minecraft:water_cauldron 73 72 74 155 58 57 59 155 36 36 37 155 29 28 29 155 +minecraft:water_cauldron[level=2] 73 72 74 155 58 57 59 155 36 36 37 155 29 28 29 155 +minecraft:water_cauldron[level=3] 73 72 74 155 58 57 59 155 36 36 37 155 29 28 29 155 +minecraft:lava_cauldron 73 72 74 155 58 57 59 155 36 36 37 155 29 28 29 155 +minecraft:powder_snow_cauldron 73 72 74 155 58 57 59 155 36 36 37 155 29 28 29 155 +minecraft:powder_snow_cauldron[level=2] 73 72 74 155 58 57 59 155 36 36 37 155 29 28 29 155 +minecraft:powder_snow_cauldron[level=3] 73 72 74 155 58 57 59 155 36 36 37 155 29 28 29 155 +minecraft:end_portal 117 90 156 255 93 72 124 255 58 45 78 255 46 36 62 255 +minecraft:end_portal_frame 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255 +minecraft:end_portal_frame[eye=true,facing=south] 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255 +minecraft:end_portal_frame[eye=true,facing=west] 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255 +minecraft:end_portal_frame[eye=true,facing=east] 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255 +minecraft:end_portal_frame[eye=false,facing=north] 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255 +minecraft:end_portal_frame[eye=false,facing=south] 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255 +minecraft:end_portal_frame[eye=false,facing=west] 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255 +minecraft:end_portal_frame[eye=false,facing=east] 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255 +minecraft:end_stone 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255 +minecraft:dragon_egg 12 9 15 255 9 7 12 255 6 4 7 255 4 3 6 255 +minecraft:redstone_lamp 142 101 60 255 113 80 48 255 71 50 30 255 56 40 24 255 +minecraft:redstone_lamp[lit=false] 95 54 30 255 76 43 24 255 47 27 15 255 38 21 12 255 +minecraft:cocoa 156 94 43 131 124 75 34 131 78 47 21 131 62 37 17 131 +minecraft:cocoa[age=0,facing=south] 156 94 43 131 124 75 34 131 78 47 21 131 62 37 17 131 +minecraft:cocoa[age=0,facing=west] 156 94 43 131 124 75 34 131 78 47 21 131 62 37 17 131 +minecraft:cocoa[age=0,facing=east] 156 94 43 131 124 75 34 131 78 47 21 131 62 37 17 131 +minecraft:cocoa[age=1,facing=north] 156 94 43 131 124 75 34 131 78 47 21 131 62 37 17 131 +minecraft:cocoa[age=1,facing=south] 156 94 43 131 124 75 34 131 78 47 21 131 62 37 17 131 +minecraft:cocoa[age=1,facing=west] 156 94 43 131 124 75 34 131 78 47 21 131 62 37 17 131 +minecraft:cocoa[age=1,facing=east] 156 94 43 131 124 75 34 131 78 47 21 131 62 37 17 131 +minecraft:cocoa[age=2,facing=north] 156 94 43 131 124 75 34 131 78 47 21 131 62 37 17 131 +minecraft:cocoa[age=2,facing=south] 156 94 43 131 124 75 34 131 78 47 21 131 62 37 17 131 +minecraft:cocoa[age=2,facing=west] 156 94 43 131 124 75 34 131 78 47 21 131 62 37 17 131 +minecraft:cocoa[age=2,facing=east] 156 94 43 131 124 75 34 131 78 47 21 131 62 37 17 131 +minecraft:sandstone_stairs 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=top,shape=straight,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:emerald_ore 108 136 115 255 86 108 92 255 54 68 57 255 43 54 46 255 +minecraft:deepslate_emerald_ore 78 104 87 255 62 83 69 255 39 52 43 255 31 41 34 255 +minecraft:ender_chest 25 45 45 195 20 36 36 195 12 22 22 195 10 18 18 195 +minecraft:ender_chest[facing=north,waterlogged=false] 25 45 45 195 20 36 36 195 12 22 22 195 10 18 18 195 +minecraft:ender_chest[facing=south,waterlogged=true] 25 45 45 195 20 36 36 195 12 22 22 195 10 18 18 195 +minecraft:ender_chest[facing=south,waterlogged=false] 25 45 45 195 20 36 36 195 12 22 22 195 10 18 18 195 +minecraft:ender_chest[facing=west,waterlogged=true] 25 45 45 195 20 36 36 195 12 22 22 195 10 18 18 195 +minecraft:ender_chest[facing=west,waterlogged=false] 25 45 45 195 20 36 36 195 12 22 22 195 10 18 18 195 +minecraft:ender_chest[facing=east,waterlogged=true] 25 45 45 195 20 36 36 195 12 22 22 195 10 18 18 195 +minecraft:ender_chest[facing=east,waterlogged=false] 25 45 45 195 20 36 36 195 12 22 22 195 10 18 18 195 +minecraft:tripwire_hook 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:tripwire_hook[attached=true,facing=north,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:tripwire_hook[attached=true,facing=south,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:tripwire_hook[attached=true,facing=south,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:tripwire_hook[attached=true,facing=west,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:tripwire_hook[attached=true,facing=west,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:tripwire_hook[attached=true,facing=east,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:tripwire_hook[attached=true,facing=east,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:tripwire_hook[attached=false,facing=north,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:tripwire_hook[attached=false,facing=north,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:tripwire_hook[attached=false,facing=south,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:tripwire_hook[attached=false,facing=south,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:tripwire_hook[attached=false,facing=west,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:tripwire_hook[attached=false,facing=west,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:tripwire_hook[attached=false,facing=east,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:tripwire_hook[attached=false,facing=east,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:emerald_block 42 203 87 255 33 162 69 255 21 101 43 255 16 81 34 255 +minecraft:spruce_stairs 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=top,shape=straight,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=top,shape=straight,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=top,shape=straight,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=top,shape=straight,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=top,shape=straight,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=top,shape=straight,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=top,shape=straight,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:birch_stairs 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=top,shape=straight,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=top,shape=straight,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=top,shape=straight,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=top,shape=straight,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=top,shape=straight,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=top,shape=straight,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=top,shape=straight,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:jungle_stairs 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=top,shape=straight,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=top,shape=straight,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=top,shape=straight,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=top,shape=straight,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=top,shape=straight,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=top,shape=straight,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=top,shape=straight,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:command_block 173 131 106 255 138 104 84 255 86 65 53 255 69 52 42 255 +minecraft:command_block[conditional=true,facing=east] 180 135 108 255 144 108 86 255 90 67 54 255 72 54 43 255 +minecraft:command_block[conditional=true,facing=south] 178 133 105 255 142 106 84 255 89 66 52 255 71 53 42 255 +minecraft:command_block[conditional=true,facing=west] 178 133 105 255 142 106 84 255 89 66 52 255 71 53 42 255 +minecraft:command_block[conditional=true,facing=up] 178 133 105 255 142 106 84 255 89 66 52 255 71 53 42 255 +minecraft:command_block[conditional=true,facing=down] 178 133 105 255 142 106 84 255 89 66 52 255 71 53 42 255 +minecraft:command_block[conditional=false,facing=north] 173 131 106 255 138 104 84 255 86 65 53 255 69 52 42 255 +minecraft:command_block[conditional=false,facing=east] 180 135 108 255 144 108 86 255 90 67 54 255 72 54 43 255 +minecraft:command_block[conditional=false,facing=south] 177 133 107 255 141 106 85 255 88 66 53 255 70 53 42 255 +minecraft:command_block[conditional=false,facing=west] 177 133 107 255 141 106 85 255 88 66 53 255 70 53 42 255 +minecraft:command_block[conditional=false,facing=up] 177 133 107 255 141 106 85 255 88 66 53 255 70 53 42 255 +minecraft:command_block[conditional=false,facing=down] 177 133 107 255 141 106 85 255 88 66 53 255 70 53 42 255 +minecraft:beacon 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:cobblestone_wall 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:mossy_cobblestone_wall 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:flower_pot 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_oak_sapling 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_spruce_sapling 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_birch_sapling 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_jungle_sapling 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_acacia_sapling 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_dark_oak_sapling 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_fern 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_dandelion 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_poppy 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_blue_orchid 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_allium 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_azure_bluet 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_red_tulip 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_orange_tulip 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_white_tulip 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_pink_tulip 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_oxeye_daisy 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_cornflower 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_lily_of_the_valley 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_wither_rose 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_red_mushroom 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_brown_mushroom 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_dead_bush 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_cactus 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:carrots 44 110 39 16 35 88 31 16 22 55 19 16 17 44 15 16 +minecraft:carrots[age=1] 44 110 39 16 35 88 31 16 22 55 19 16 17 44 15 16 +minecraft:carrots[age=2] 52 120 40 41 41 96 32 41 26 60 20 41 20 48 16 41 +minecraft:carrots[age=3] 52 120 40 41 41 96 32 41 26 60 20 41 20 48 16 41 +minecraft:carrots[age=4] 56 113 37 81 44 90 29 81 28 56 18 81 22 45 14 81 +minecraft:carrots[age=5] 56 113 37 81 44 90 29 81 28 56 18 81 22 45 14 81 +minecraft:carrots[age=6] 56 113 37 81 44 90 29 81 28 56 18 81 22 45 14 81 +minecraft:carrots[age=7] 81 123 37 110 64 98 29 110 40 61 18 110 32 49 14 110 +minecraft:potatoes 58 129 40 14 46 103 32 14 29 64 20 14 23 51 16 14 +minecraft:potatoes[age=1] 58 129 40 14 46 103 32 14 29 64 20 14 23 51 16 14 +minecraft:potatoes[age=2] 68 131 42 25 54 104 33 25 34 65 21 25 27 52 16 25 +minecraft:potatoes[age=3] 68 131 42 25 54 104 33 25 34 65 21 25 27 52 16 25 +minecraft:potatoes[age=4] 85 129 47 44 68 103 37 44 42 64 23 44 34 51 18 44 +minecraft:potatoes[age=5] 85 129 47 44 68 103 37 44 42 64 23 44 34 51 18 44 +minecraft:potatoes[age=6] 85 129 47 44 68 103 37 44 42 64 23 44 34 51 18 44 +minecraft:potatoes[age=7] 84 135 47 80 67 108 37 80 42 67 23 80 33 54 18 80 +minecraft:oak_button 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=floor,facing=north,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=floor,facing=south,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=floor,facing=south,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=floor,facing=west,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=floor,facing=west,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=floor,facing=east,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=floor,facing=east,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=wall,facing=north,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=wall,facing=north,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=wall,facing=south,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=wall,facing=south,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=wall,facing=west,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=wall,facing=west,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=wall,facing=east,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=wall,facing=east,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=ceiling,facing=north,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=ceiling,facing=north,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=ceiling,facing=south,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=ceiling,facing=south,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=ceiling,facing=west,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=ceiling,facing=west,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=ceiling,facing=east,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=ceiling,facing=east,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:spruce_button 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=floor,facing=north,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=floor,facing=south,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=floor,facing=south,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=floor,facing=west,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=floor,facing=west,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=floor,facing=east,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=floor,facing=east,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=wall,facing=north,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=wall,facing=north,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=wall,facing=south,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=wall,facing=south,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=wall,facing=west,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=wall,facing=west,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=wall,facing=east,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=wall,facing=east,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=ceiling,facing=north,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=ceiling,facing=north,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=ceiling,facing=south,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=ceiling,facing=south,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=ceiling,facing=west,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=ceiling,facing=west,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=ceiling,facing=east,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=ceiling,facing=east,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:birch_button 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=floor,facing=north,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=floor,facing=south,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=floor,facing=south,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=floor,facing=west,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=floor,facing=west,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=floor,facing=east,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=floor,facing=east,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=wall,facing=north,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=wall,facing=north,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=wall,facing=south,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=wall,facing=south,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=wall,facing=west,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=wall,facing=west,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=wall,facing=east,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=wall,facing=east,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=ceiling,facing=north,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=ceiling,facing=north,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=ceiling,facing=south,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=ceiling,facing=south,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=ceiling,facing=west,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=ceiling,facing=west,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=ceiling,facing=east,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=ceiling,facing=east,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:jungle_button 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=floor,facing=north,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=floor,facing=south,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=floor,facing=south,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=floor,facing=west,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=floor,facing=west,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=floor,facing=east,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=floor,facing=east,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=wall,facing=north,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=wall,facing=north,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=wall,facing=south,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=wall,facing=south,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=wall,facing=west,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=wall,facing=west,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=wall,facing=east,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=wall,facing=east,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=ceiling,facing=north,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=ceiling,facing=north,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=ceiling,facing=south,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=ceiling,facing=south,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=ceiling,facing=west,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=ceiling,facing=west,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=ceiling,facing=east,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=ceiling,facing=east,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:acacia_button 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=floor,facing=north,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=floor,facing=south,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=floor,facing=south,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=floor,facing=west,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=floor,facing=west,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=floor,facing=east,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=floor,facing=east,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=wall,facing=north,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=wall,facing=north,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=wall,facing=south,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=wall,facing=south,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=wall,facing=west,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=wall,facing=west,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=wall,facing=east,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=wall,facing=east,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=ceiling,facing=north,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=ceiling,facing=north,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=ceiling,facing=south,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=ceiling,facing=south,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=ceiling,facing=west,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=ceiling,facing=west,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=ceiling,facing=east,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=ceiling,facing=east,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:dark_oak_button 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=floor,facing=north,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=floor,facing=south,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=floor,facing=south,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=floor,facing=west,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=floor,facing=west,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=floor,facing=east,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=floor,facing=east,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=wall,facing=north,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=wall,facing=north,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=wall,facing=south,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=wall,facing=south,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=wall,facing=west,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=wall,facing=west,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=wall,facing=east,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=wall,facing=east,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=ceiling,facing=north,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=ceiling,facing=north,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=ceiling,facing=south,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=ceiling,facing=south,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=ceiling,facing=west,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=ceiling,facing=west,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=ceiling,facing=east,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=ceiling,facing=east,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:skeleton_skull 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_skull[rotation=1] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_skull[rotation=2] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_skull[rotation=3] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_skull[rotation=4] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_skull[rotation=5] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_skull[rotation=6] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_skull[rotation=7] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_skull[rotation=8] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_skull[rotation=9] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_skull[rotation=10] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_skull[rotation=11] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_skull[rotation=12] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_skull[rotation=13] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_skull[rotation=14] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_skull[rotation=15] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_wall_skull 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_wall_skull[facing=south] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_wall_skull[facing=west] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_wall_skull[facing=east] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:wither_skeleton_skull 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_skull[rotation=1] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_skull[rotation=2] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_skull[rotation=3] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_skull[rotation=4] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_skull[rotation=5] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_skull[rotation=6] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_skull[rotation=7] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_skull[rotation=8] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_skull[rotation=9] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_skull[rotation=10] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_skull[rotation=11] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_skull[rotation=12] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_skull[rotation=13] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_skull[rotation=14] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_skull[rotation=15] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_wall_skull 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_wall_skull[facing=south] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_wall_skull[facing=west] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_wall_skull[facing=east] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:zombie_head 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_head[rotation=1] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_head[rotation=2] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_head[rotation=3] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_head[rotation=4] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_head[rotation=5] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_head[rotation=6] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_head[rotation=7] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_head[rotation=8] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_head[rotation=9] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_head[rotation=10] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_head[rotation=11] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_head[rotation=12] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_head[rotation=13] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_head[rotation=14] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_head[rotation=15] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_wall_head 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_wall_head[facing=south] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_wall_head[facing=west] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_wall_head[facing=east] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:player_head 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_head[rotation=1] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_head[rotation=2] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_head[rotation=3] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_head[rotation=4] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_head[rotation=5] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_head[rotation=6] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_head[rotation=7] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_head[rotation=8] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_head[rotation=9] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_head[rotation=10] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_head[rotation=11] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_head[rotation=12] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_head[rotation=13] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_head[rotation=14] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_head[rotation=15] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_wall_head 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_wall_head[facing=south] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_wall_head[facing=west] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_wall_head[facing=east] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:creeper_head 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_head[rotation=1] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_head[rotation=2] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_head[rotation=3] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_head[rotation=4] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_head[rotation=5] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_head[rotation=6] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_head[rotation=7] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_head[rotation=8] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_head[rotation=9] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_head[rotation=10] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_head[rotation=11] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_head[rotation=12] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_head[rotation=13] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_head[rotation=14] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_head[rotation=15] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_wall_head 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_wall_head[facing=south] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_wall_head[facing=west] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_wall_head[facing=east] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_head 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_head[rotation=1] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_head[rotation=2] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_head[rotation=3] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_head[rotation=4] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_head[rotation=5] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_head[rotation=6] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_head[rotation=7] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_head[rotation=8] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_head[rotation=9] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_head[rotation=10] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_head[rotation=11] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_head[rotation=12] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_head[rotation=13] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_head[rotation=14] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_head[rotation=15] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_wall_head 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_wall_head[facing=south] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_wall_head[facing=west] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_wall_head[facing=east] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:anvil 68 68 68 255 54 54 54 255 34 34 34 255 27 27 27 255 +minecraft:anvil[facing=south] 68 68 68 255 54 54 54 255 34 34 34 255 27 27 27 255 +minecraft:anvil[facing=west] 68 68 68 255 54 54 54 255 34 34 34 255 27 27 27 255 +minecraft:anvil[facing=east] 68 68 68 255 54 54 54 255 34 34 34 255 27 27 27 255 +minecraft:chipped_anvil 68 68 68 255 54 54 54 255 34 34 34 255 27 27 27 255 +minecraft:chipped_anvil[facing=south] 68 68 68 255 54 54 54 255 34 34 34 255 27 27 27 255 +minecraft:chipped_anvil[facing=west] 68 68 68 255 54 54 54 255 34 34 34 255 27 27 27 255 +minecraft:chipped_anvil[facing=east] 68 68 68 255 54 54 54 255 34 34 34 255 27 27 27 255 +minecraft:damaged_anvil 68 68 68 255 54 54 54 255 34 34 34 255 27 27 27 255 +minecraft:damaged_anvil[facing=south] 68 68 68 255 54 54 54 255 34 34 34 255 27 27 27 255 +minecraft:damaged_anvil[facing=west] 68 68 68 255 54 54 54 255 34 34 34 255 27 27 27 255 +minecraft:damaged_anvil[facing=east] 68 68 68 255 54 54 54 255 34 34 34 255 27 27 27 255 +minecraft:trapped_chest 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=north,type=single,waterlogged=false] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=north,type=left,waterlogged=true] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=north,type=left,waterlogged=false] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=north,type=right,waterlogged=true] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=north,type=right,waterlogged=false] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=south,type=single,waterlogged=true] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=south,type=single,waterlogged=false] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=south,type=left,waterlogged=true] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=south,type=left,waterlogged=false] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=south,type=right,waterlogged=true] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=south,type=right,waterlogged=false] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=west,type=single,waterlogged=true] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=west,type=single,waterlogged=false] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=west,type=left,waterlogged=true] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=west,type=left,waterlogged=false] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=west,type=right,waterlogged=true] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=west,type=right,waterlogged=false] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=east,type=single,waterlogged=true] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=east,type=single,waterlogged=false] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=east,type=left,waterlogged=true] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=east,type=left,waterlogged=false] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=east,type=right,waterlogged=true] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=east,type=right,waterlogged=false] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:light_weighted_pressure_plate 246 208 61 255 196 166 48 255 123 104 30 255 98 83 24 255 +minecraft:light_weighted_pressure_plate[power=1] 246 208 61 255 196 166 48 255 123 104 30 255 98 83 24 255 +minecraft:light_weighted_pressure_plate[power=2] 246 208 61 255 196 166 48 255 123 104 30 255 98 83 24 255 +minecraft:light_weighted_pressure_plate[power=3] 246 208 61 255 196 166 48 255 123 104 30 255 98 83 24 255 +minecraft:light_weighted_pressure_plate[power=4] 246 208 61 255 196 166 48 255 123 104 30 255 98 83 24 255 +minecraft:light_weighted_pressure_plate[power=5] 246 208 61 255 196 166 48 255 123 104 30 255 98 83 24 255 +minecraft:light_weighted_pressure_plate[power=6] 246 208 61 255 196 166 48 255 123 104 30 255 98 83 24 255 +minecraft:light_weighted_pressure_plate[power=7] 246 208 61 255 196 166 48 255 123 104 30 255 98 83 24 255 +minecraft:light_weighted_pressure_plate[power=8] 246 208 61 255 196 166 48 255 123 104 30 255 98 83 24 255 +minecraft:light_weighted_pressure_plate[power=9] 246 208 61 255 196 166 48 255 123 104 30 255 98 83 24 255 +minecraft:light_weighted_pressure_plate[power=10] 246 208 61 255 196 166 48 255 123 104 30 255 98 83 24 255 +minecraft:light_weighted_pressure_plate[power=11] 246 208 61 255 196 166 48 255 123 104 30 255 98 83 24 255 +minecraft:light_weighted_pressure_plate[power=12] 246 208 61 255 196 166 48 255 123 104 30 255 98 83 24 255 +minecraft:light_weighted_pressure_plate[power=13] 246 208 61 255 196 166 48 255 123 104 30 255 98 83 24 255 +minecraft:light_weighted_pressure_plate[power=14] 246 208 61 255 196 166 48 255 123 104 30 255 98 83 24 255 +minecraft:light_weighted_pressure_plate[power=15] 246 208 61 255 196 166 48 255 123 104 30 255 98 83 24 255 +minecraft:heavy_weighted_pressure_plate 220 220 220 255 176 176 176 255 110 110 110 255 88 88 88 255 +minecraft:heavy_weighted_pressure_plate[power=1] 220 220 220 255 176 176 176 255 110 110 110 255 88 88 88 255 +minecraft:heavy_weighted_pressure_plate[power=2] 220 220 220 255 176 176 176 255 110 110 110 255 88 88 88 255 +minecraft:heavy_weighted_pressure_plate[power=3] 220 220 220 255 176 176 176 255 110 110 110 255 88 88 88 255 +minecraft:heavy_weighted_pressure_plate[power=4] 220 220 220 255 176 176 176 255 110 110 110 255 88 88 88 255 +minecraft:heavy_weighted_pressure_plate[power=5] 220 220 220 255 176 176 176 255 110 110 110 255 88 88 88 255 +minecraft:heavy_weighted_pressure_plate[power=6] 220 220 220 255 176 176 176 255 110 110 110 255 88 88 88 255 +minecraft:heavy_weighted_pressure_plate[power=7] 220 220 220 255 176 176 176 255 110 110 110 255 88 88 88 255 +minecraft:heavy_weighted_pressure_plate[power=8] 220 220 220 255 176 176 176 255 110 110 110 255 88 88 88 255 +minecraft:heavy_weighted_pressure_plate[power=9] 220 220 220 255 176 176 176 255 110 110 110 255 88 88 88 255 +minecraft:heavy_weighted_pressure_plate[power=10] 220 220 220 255 176 176 176 255 110 110 110 255 88 88 88 255 +minecraft:heavy_weighted_pressure_plate[power=11] 220 220 220 255 176 176 176 255 110 110 110 255 88 88 88 255 +minecraft:heavy_weighted_pressure_plate[power=12] 220 220 220 255 176 176 176 255 110 110 110 255 88 88 88 255 +minecraft:heavy_weighted_pressure_plate[power=13] 220 220 220 255 176 176 176 255 110 110 110 255 88 88 88 255 +minecraft:heavy_weighted_pressure_plate[power=14] 220 220 220 255 176 176 176 255 110 110 110 255 88 88 88 255 +minecraft:heavy_weighted_pressure_plate[power=15] 220 220 220 255 176 176 176 255 110 110 110 255 88 88 88 255 +minecraft:comparator 175 161 159 255 140 128 127 255 87 80 79 255 70 64 63 255 +minecraft:comparator[facing=north,mode=compare,powered=false] 166 161 159 255 132 128 127 255 83 80 79 255 66 64 63 255 +minecraft:comparator[facing=north,mode=subtract,powered=true] 175 161 159 255 140 128 127 255 87 80 79 255 70 64 63 255 +minecraft:comparator[facing=north,mode=subtract,powered=false] 166 161 159 255 132 128 127 255 83 80 79 255 66 64 63 255 +minecraft:comparator[facing=south,mode=compare,powered=true] 175 161 159 255 140 128 127 255 87 80 79 255 70 64 63 255 +minecraft:comparator[facing=south,mode=compare,powered=false] 166 161 159 255 132 128 127 255 83 80 79 255 66 64 63 255 +minecraft:comparator[facing=south,mode=subtract,powered=true] 175 161 159 255 140 128 127 255 87 80 79 255 70 64 63 255 +minecraft:comparator[facing=south,mode=subtract,powered=false] 166 161 159 255 132 128 127 255 83 80 79 255 66 64 63 255 +minecraft:comparator[facing=west,mode=compare,powered=true] 175 161 159 255 140 128 127 255 87 80 79 255 70 64 63 255 +minecraft:comparator[facing=west,mode=compare,powered=false] 166 161 159 255 132 128 127 255 83 80 79 255 66 64 63 255 +minecraft:comparator[facing=west,mode=subtract,powered=true] 175 161 159 255 140 128 127 255 87 80 79 255 70 64 63 255 +minecraft:comparator[facing=west,mode=subtract,powered=false] 166 161 159 255 132 128 127 255 83 80 79 255 66 64 63 255 +minecraft:comparator[facing=east,mode=compare,powered=true] 175 161 159 255 140 128 127 255 87 80 79 255 70 64 63 255 +minecraft:comparator[facing=east,mode=compare,powered=false] 166 161 159 255 132 128 127 255 83 80 79 255 66 64 63 255 +minecraft:comparator[facing=east,mode=subtract,powered=true] 175 161 159 255 140 128 127 255 87 80 79 255 70 64 63 255 +minecraft:comparator[facing=east,mode=subtract,powered=false] 166 161 159 255 132 128 127 255 83 80 79 255 66 64 63 255 +minecraft:daylight_detector 106 109 112 255 84 87 89 255 53 54 56 255 42 43 44 255 +minecraft:daylight_detector[inverted=true,power=1] 106 109 112 255 84 87 89 255 53 54 56 255 42 43 44 255 +minecraft:daylight_detector[inverted=true,power=2] 106 109 112 255 84 87 89 255 53 54 56 255 42 43 44 255 +minecraft:daylight_detector[inverted=true,power=3] 106 109 112 255 84 87 89 255 53 54 56 255 42 43 44 255 +minecraft:daylight_detector[inverted=true,power=4] 106 109 112 255 84 87 89 255 53 54 56 255 42 43 44 255 +minecraft:daylight_detector[inverted=true,power=5] 106 109 112 255 84 87 89 255 53 54 56 255 42 43 44 255 +minecraft:daylight_detector[inverted=true,power=6] 106 109 112 255 84 87 89 255 53 54 56 255 42 43 44 255 +minecraft:daylight_detector[inverted=true,power=7] 106 109 112 255 84 87 89 255 53 54 56 255 42 43 44 255 +minecraft:daylight_detector[inverted=true,power=8] 106 109 112 255 84 87 89 255 53 54 56 255 42 43 44 255 +minecraft:daylight_detector[inverted=true,power=9] 106 109 112 255 84 87 89 255 53 54 56 255 42 43 44 255 +minecraft:daylight_detector[inverted=true,power=10] 106 109 112 255 84 87 89 255 53 54 56 255 42 43 44 255 +minecraft:daylight_detector[inverted=true,power=11] 106 109 112 255 84 87 89 255 53 54 56 255 42 43 44 255 +minecraft:daylight_detector[inverted=true,power=12] 106 109 112 255 84 87 89 255 53 54 56 255 42 43 44 255 +minecraft:daylight_detector[inverted=true,power=13] 106 109 112 255 84 87 89 255 53 54 56 255 42 43 44 255 +minecraft:daylight_detector[inverted=true,power=14] 106 109 112 255 84 87 89 255 53 54 56 255 42 43 44 255 +minecraft:daylight_detector[inverted=true,power=15] 106 109 112 255 84 87 89 255 53 54 56 255 42 43 44 255 +minecraft:daylight_detector[inverted=false,power=0] 130 116 94 255 104 92 75 255 65 58 47 255 52 46 37 255 +minecraft:daylight_detector[inverted=false,power=1] 130 116 94 255 104 92 75 255 65 58 47 255 52 46 37 255 +minecraft:daylight_detector[inverted=false,power=2] 130 116 94 255 104 92 75 255 65 58 47 255 52 46 37 255 +minecraft:daylight_detector[inverted=false,power=3] 130 116 94 255 104 92 75 255 65 58 47 255 52 46 37 255 +minecraft:daylight_detector[inverted=false,power=4] 130 116 94 255 104 92 75 255 65 58 47 255 52 46 37 255 +minecraft:daylight_detector[inverted=false,power=5] 130 116 94 255 104 92 75 255 65 58 47 255 52 46 37 255 +minecraft:daylight_detector[inverted=false,power=6] 130 116 94 255 104 92 75 255 65 58 47 255 52 46 37 255 +minecraft:daylight_detector[inverted=false,power=7] 130 116 94 255 104 92 75 255 65 58 47 255 52 46 37 255 +minecraft:daylight_detector[inverted=false,power=8] 130 116 94 255 104 92 75 255 65 58 47 255 52 46 37 255 +minecraft:daylight_detector[inverted=false,power=9] 130 116 94 255 104 92 75 255 65 58 47 255 52 46 37 255 +minecraft:daylight_detector[inverted=false,power=10] 130 116 94 255 104 92 75 255 65 58 47 255 52 46 37 255 +minecraft:daylight_detector[inverted=false,power=11] 130 116 94 255 104 92 75 255 65 58 47 255 52 46 37 255 +minecraft:daylight_detector[inverted=false,power=12] 130 116 94 255 104 92 75 255 65 58 47 255 52 46 37 255 +minecraft:daylight_detector[inverted=false,power=13] 130 116 94 255 104 92 75 255 65 58 47 255 52 46 37 255 +minecraft:daylight_detector[inverted=false,power=14] 130 116 94 255 104 92 75 255 65 58 47 255 52 46 37 255 +minecraft:daylight_detector[inverted=false,power=15] 130 116 94 255 104 92 75 255 65 58 47 255 52 46 37 255 +minecraft:redstone_block 175 24 5 255 140 19 4 255 87 12 2 255 70 9 2 255 +minecraft:nether_quartz_ore 117 65 62 255 93 52 49 255 58 32 31 255 46 26 24 255 +minecraft:hopper 49 49 53 255 39 39 42 255 24 24 26 255 19 19 21 255 +minecraft:hopper[enabled=true,facing=north] 49 49 53 255 39 39 42 255 24 24 26 255 19 19 21 255 +minecraft:hopper[enabled=true,facing=south] 49 49 53 255 39 39 42 255 24 24 26 255 19 19 21 255 +minecraft:hopper[enabled=true,facing=west] 49 49 53 255 39 39 42 255 24 24 26 255 19 19 21 255 +minecraft:hopper[enabled=true,facing=east] 49 49 53 255 39 39 42 255 24 24 26 255 19 19 21 255 +minecraft:hopper[enabled=false,facing=down] 49 49 53 255 39 39 42 255 24 24 26 255 19 19 21 255 +minecraft:hopper[enabled=false,facing=north] 49 49 53 255 39 39 42 255 24 24 26 255 19 19 21 255 +minecraft:hopper[enabled=false,facing=south] 49 49 53 255 39 39 42 255 24 24 26 255 19 19 21 255 +minecraft:hopper[enabled=false,facing=west] 49 49 53 255 39 39 42 255 24 24 26 255 19 19 21 255 +minecraft:hopper[enabled=false,facing=east] 49 49 53 255 39 39 42 255 24 24 26 255 19 19 21 255 +minecraft:quartz_block 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:chiseled_quartz_block 231 226 217 255 184 180 173 255 115 113 108 255 92 90 86 255 +minecraft:quartz_pillar 235 230 224 255 188 184 179 255 117 115 112 255 94 92 89 255 +minecraft:quartz_pillar[axis=y] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_pillar[axis=z] 235 230 224 255 188 184 179 255 117 115 112 255 94 92 89 255 +minecraft:quartz_stairs 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=top,shape=straight,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=top,shape=straight,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=top,shape=straight,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=top,shape=straight,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=top,shape=straight,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=top,shape=straight,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=top,shape=straight,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:activator_rail 143 87 74 155 114 69 59 155 71 43 37 155 57 34 29 155 +minecraft:activator_rail[powered=true,shape=north_south,waterlogged=false] 143 87 74 155 114 69 59 155 71 43 37 155 57 34 29 155 +minecraft:activator_rail[powered=true,shape=east_west,waterlogged=true] 143 87 74 155 114 69 59 155 71 43 37 155 57 34 29 155 +minecraft:activator_rail[powered=true,shape=east_west,waterlogged=false] 143 87 74 155 114 69 59 155 71 43 37 155 57 34 29 155 +minecraft:activator_rail[powered=true,shape=ascending_east,waterlogged=true] 143 87 74 155 114 69 59 155 71 43 37 155 57 34 29 155 +minecraft:activator_rail[powered=true,shape=ascending_east,waterlogged=false] 143 87 74 155 114 69 59 155 71 43 37 155 57 34 29 155 +minecraft:activator_rail[powered=true,shape=ascending_west,waterlogged=true] 143 87 74 155 114 69 59 155 71 43 37 155 57 34 29 155 +minecraft:activator_rail[powered=true,shape=ascending_west,waterlogged=false] 143 87 74 155 114 69 59 155 71 43 37 155 57 34 29 155 +minecraft:activator_rail[powered=true,shape=ascending_north,waterlogged=true] 143 87 74 155 114 69 59 155 71 43 37 155 57 34 29 155 +minecraft:activator_rail[powered=true,shape=ascending_north,waterlogged=false] 143 87 74 155 114 69 59 155 71 43 37 155 57 34 29 155 +minecraft:activator_rail[powered=true,shape=ascending_south,waterlogged=true] 143 87 74 155 114 69 59 155 71 43 37 155 57 34 29 155 +minecraft:activator_rail[powered=true,shape=ascending_south,waterlogged=false] 143 87 74 155 114 69 59 155 71 43 37 155 57 34 29 155 +minecraft:activator_rail[powered=false,shape=north_south,waterlogged=true] 115 87 74 155 92 69 59 155 57 43 37 155 46 34 29 155 +minecraft:activator_rail[powered=false,shape=north_south,waterlogged=false] 115 87 74 155 92 69 59 155 57 43 37 155 46 34 29 155 +minecraft:activator_rail[powered=false,shape=east_west,waterlogged=true] 115 87 74 155 92 69 59 155 57 43 37 155 46 34 29 155 +minecraft:activator_rail[powered=false,shape=east_west,waterlogged=false] 115 87 74 155 92 69 59 155 57 43 37 155 46 34 29 155 +minecraft:activator_rail[powered=false,shape=ascending_east,waterlogged=true] 115 87 74 155 92 69 59 155 57 43 37 155 46 34 29 155 +minecraft:activator_rail[powered=false,shape=ascending_east,waterlogged=false] 115 87 74 155 92 69 59 155 57 43 37 155 46 34 29 155 +minecraft:activator_rail[powered=false,shape=ascending_west,waterlogged=true] 115 87 74 155 92 69 59 155 57 43 37 155 46 34 29 155 +minecraft:activator_rail[powered=false,shape=ascending_west,waterlogged=false] 115 87 74 155 92 69 59 155 57 43 37 155 46 34 29 155 +minecraft:activator_rail[powered=false,shape=ascending_north,waterlogged=true] 115 87 74 155 92 69 59 155 57 43 37 155 46 34 29 155 +minecraft:activator_rail[powered=false,shape=ascending_north,waterlogged=false] 115 87 74 155 92 69 59 155 57 43 37 155 46 34 29 155 +minecraft:activator_rail[powered=false,shape=ascending_south,waterlogged=true] 115 87 74 155 92 69 59 155 57 43 37 155 46 34 29 155 +minecraft:activator_rail[powered=false,shape=ascending_south,waterlogged=false] 115 87 74 155 92 69 59 155 57 43 37 155 46 34 29 155 +minecraft:dropper 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dropper[facing=north,triggered=false] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dropper[facing=east,triggered=true] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 +minecraft:dropper[facing=east,triggered=false] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 +minecraft:dropper[facing=south,triggered=true] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dropper[facing=south,triggered=false] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dropper[facing=west,triggered=true] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dropper[facing=west,triggered=false] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dropper[facing=up,triggered=true] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dropper[facing=up,triggered=false] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dropper[facing=down,triggered=true] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dropper[facing=down,triggered=false] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:white_terracotta 209 178 161 255 167 142 128 255 104 89 80 255 83 71 64 255 +minecraft:orange_terracotta 161 83 37 255 128 66 29 255 80 41 18 255 64 33 14 255 +minecraft:magenta_terracotta 149 88 108 255 119 70 86 255 74 44 54 255 59 35 43 255 +minecraft:light_blue_terracotta 113 108 137 255 90 86 109 255 56 54 68 255 45 43 54 255 +minecraft:yellow_terracotta 186 133 35 255 148 106 28 255 93 66 17 255 74 53 14 255 +minecraft:lime_terracotta 103 117 52 255 82 93 41 255 51 58 26 255 41 46 20 255 +minecraft:pink_terracotta 161 78 78 255 128 62 62 255 80 39 39 255 64 31 31 255 +minecraft:gray_terracotta 57 42 35 255 45 33 28 255 28 21 17 255 22 16 14 255 +minecraft:light_gray_terracotta 135 106 97 255 108 84 77 255 67 53 48 255 54 42 38 255 +minecraft:cyan_terracotta 86 91 91 255 68 72 72 255 43 45 45 255 34 36 36 255 +minecraft:purple_terracotta 118 70 86 255 94 56 68 255 59 35 43 255 47 28 34 255 +minecraft:blue_terracotta 74 59 91 255 59 47 72 255 37 29 45 255 29 23 36 255 +minecraft:brown_terracotta 77 51 35 255 61 40 28 255 38 25 17 255 30 20 14 255 +minecraft:green_terracotta 76 83 42 255 60 66 33 255 38 41 21 255 30 33 16 255 +minecraft:red_terracotta 143 61 46 255 114 48 36 255 71 30 23 255 57 24 18 255 +minecraft:black_terracotta 37 22 16 255 29 17 12 255 18 11 8 255 14 8 6 255 +minecraft:white_stained_glass_pane 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:orange_stained_glass_pane 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:magenta_stained_glass_pane 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:light_blue_stained_glass_pane 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:yellow_stained_glass_pane 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:lime_stained_glass_pane 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:pink_stained_glass_pane 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:gray_stained_glass_pane 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:light_gray_stained_glass_pane 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:cyan_stained_glass_pane 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:purple_stained_glass_pane 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:blue_stained_glass_pane 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:brown_stained_glass_pane 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:green_stained_glass_pane 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:red_stained_glass_pane 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:black_stained_glass_pane 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:acacia_stairs 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=top,shape=straight,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=top,shape=straight,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=top,shape=straight,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=top,shape=straight,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=top,shape=straight,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=top,shape=straight,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=top,shape=straight,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:dark_oak_stairs 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=top,shape=straight,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=top,shape=straight,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=top,shape=straight,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=top,shape=straight,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=top,shape=straight,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=top,shape=straight,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=top,shape=straight,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:slime_block 111 192 91 180 88 153 72 180 55 96 45 180 44 76 36 180 +minecraft:iron_trapdoor 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:prismarine 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_bricks 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:dark_prismarine 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:prismarine_stairs 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=top,shape=straight,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=top,shape=straight,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=top,shape=straight,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=top,shape=straight,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=top,shape=straight,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=top,shape=straight,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=top,shape=straight,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_brick_stairs 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:dark_prismarine_stairs 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=top,shape=straight,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=top,shape=straight,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=top,shape=straight,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=top,shape=straight,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=top,shape=straight,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=top,shape=straight,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=top,shape=straight,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:prismarine_slab 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_slab[type=top,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_slab[type=bottom,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_slab[type=bottom,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_slab[type=double,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_slab[type=double,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_brick_slab 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_slab[type=top,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_slab[type=bottom,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_slab[type=bottom,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_slab[type=double,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_slab[type=double,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:dark_prismarine_slab 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_slab[type=top,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_slab[type=bottom,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_slab[type=bottom,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_slab[type=double,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_slab[type=double,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:sea_lantern 172 200 190 255 137 160 152 255 86 100 95 255 68 80 76 255 +minecraft:hay_block 166 136 38 255 132 108 30 255 83 68 19 255 66 54 15 255 +minecraft:hay_block[axis=y] 165 139 12 255 132 111 9 255 82 69 6 255 66 55 4 255 +minecraft:hay_block[axis=z] 166 136 38 255 132 108 30 255 83 68 19 255 66 54 15 255 +minecraft:white_carpet 233 236 236 255 186 188 188 255 116 118 118 255 93 94 94 255 +minecraft:orange_carpet 240 118 19 255 192 94 15 255 120 59 9 255 96 47 7 255 +minecraft:magenta_carpet 189 68 179 255 151 54 143 255 94 34 89 255 75 27 71 255 +minecraft:light_blue_carpet 58 175 217 255 46 140 173 255 29 87 108 255 23 70 86 255 +minecraft:yellow_carpet 248 197 39 255 198 157 31 255 124 98 19 255 99 78 15 255 +minecraft:lime_carpet 112 185 25 255 89 148 20 255 56 92 12 255 44 74 10 255 +minecraft:pink_carpet 237 141 172 255 189 112 137 255 118 70 86 255 94 56 68 255 +minecraft:gray_carpet 62 68 71 255 49 54 56 255 31 34 35 255 24 27 28 255 +minecraft:light_gray_carpet 142 142 134 255 113 113 107 255 71 71 67 255 56 56 53 255 +minecraft:cyan_carpet 21 137 145 255 16 109 116 255 10 68 72 255 8 54 58 255 +minecraft:purple_carpet 121 42 172 255 96 33 137 255 60 21 86 255 48 16 68 255 +minecraft:blue_carpet 53 57 157 255 42 45 125 255 26 28 78 255 21 22 62 255 +minecraft:brown_carpet 114 71 40 255 91 56 32 255 57 35 20 255 45 28 16 255 +minecraft:green_carpet 84 109 27 255 67 87 21 255 42 54 13 255 33 43 10 255 +minecraft:red_carpet 160 39 34 255 128 31 27 255 80 19 17 255 64 15 13 255 +minecraft:black_carpet 20 21 25 255 16 16 20 255 10 10 12 255 8 8 10 255 +minecraft:terracotta 152 94 67 255 121 75 53 255 76 47 33 255 60 37 26 255 +minecraft:coal_block 16 15 15 255 12 12 12 255 8 7 7 255 6 6 6 255 +minecraft:packed_ice 141 180 250 255 112 144 200 255 70 90 125 255 56 72 100 255 +minecraft:sunflower 49 129 27 30 39 103 21 30 24 64 13 30 19 51 10 30 +minecraft:sunflower[half=lower] 56 135 30 56 44 108 24 56 28 67 15 56 22 54 12 56 +minecraft:lilac 154 125 147 74 123 100 117 74 77 62 73 74 61 50 58 74 +minecraft:lilac[half=lower] 137 124 126 89 109 99 100 89 68 62 63 89 54 49 50 89 +minecraft:rose_bush 131 66 37 92 104 52 29 92 65 33 18 92 52 26 14 92 +minecraft:rose_bush[half=lower] 97 83 37 178 77 66 29 178 48 41 18 178 38 33 14 178 +minecraft:peony 129 126 139 109 103 100 111 109 64 63 69 109 51 50 55 109 +minecraft:peony[half=lower] 86 101 93 140 68 80 74 140 43 50 46 140 34 40 37 140 +minecraft:tall_grass 71 112 53 89 56 89 42 89 35 56 26 89 28 44 21 89 +minecraft:tall_grass[half=lower] 60 96 45 186 48 76 36 186 30 48 22 186 24 38 18 186 +minecraft:large_fern 59 94 44 103 47 75 35 103 29 47 22 103 23 37 17 103 +minecraft:large_fern[half=lower] 62 98 46 175 49 78 36 175 31 49 23 175 24 39 18 175 +minecraft:white_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_banner[rotation=1] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_banner[rotation=2] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_banner[rotation=3] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_banner[rotation=4] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_banner[rotation=5] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_banner[rotation=6] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_banner[rotation=7] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_banner[rotation=8] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_banner[rotation=9] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_banner[rotation=10] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_banner[rotation=11] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_banner[rotation=12] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_banner[rotation=13] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_banner[rotation=14] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_banner[rotation=15] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_banner[rotation=1] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_banner[rotation=2] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_banner[rotation=3] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_banner[rotation=4] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_banner[rotation=5] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_banner[rotation=6] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_banner[rotation=7] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_banner[rotation=8] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_banner[rotation=9] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_banner[rotation=10] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_banner[rotation=11] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_banner[rotation=12] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_banner[rotation=13] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_banner[rotation=14] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_banner[rotation=15] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_banner[rotation=1] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_banner[rotation=2] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_banner[rotation=3] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_banner[rotation=4] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_banner[rotation=5] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_banner[rotation=6] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_banner[rotation=7] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_banner[rotation=8] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_banner[rotation=9] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_banner[rotation=10] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_banner[rotation=11] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_banner[rotation=12] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_banner[rotation=13] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_banner[rotation=14] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_banner[rotation=15] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_banner[rotation=1] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_banner[rotation=2] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_banner[rotation=3] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_banner[rotation=4] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_banner[rotation=5] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_banner[rotation=6] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_banner[rotation=7] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_banner[rotation=8] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_banner[rotation=9] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_banner[rotation=10] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_banner[rotation=11] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_banner[rotation=12] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_banner[rotation=13] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_banner[rotation=14] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_banner[rotation=15] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_banner[rotation=1] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_banner[rotation=2] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_banner[rotation=3] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_banner[rotation=4] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_banner[rotation=5] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_banner[rotation=6] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_banner[rotation=7] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_banner[rotation=8] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_banner[rotation=9] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_banner[rotation=10] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_banner[rotation=11] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_banner[rotation=12] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_banner[rotation=13] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_banner[rotation=14] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_banner[rotation=15] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_banner[rotation=1] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_banner[rotation=2] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_banner[rotation=3] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_banner[rotation=4] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_banner[rotation=5] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_banner[rotation=6] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_banner[rotation=7] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_banner[rotation=8] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_banner[rotation=9] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_banner[rotation=10] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_banner[rotation=11] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_banner[rotation=12] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_banner[rotation=13] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_banner[rotation=14] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_banner[rotation=15] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_banner[rotation=1] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_banner[rotation=2] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_banner[rotation=3] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_banner[rotation=4] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_banner[rotation=5] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_banner[rotation=6] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_banner[rotation=7] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_banner[rotation=8] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_banner[rotation=9] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_banner[rotation=10] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_banner[rotation=11] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_banner[rotation=12] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_banner[rotation=13] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_banner[rotation=14] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_banner[rotation=15] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_banner[rotation=1] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_banner[rotation=2] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_banner[rotation=3] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_banner[rotation=4] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_banner[rotation=5] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_banner[rotation=6] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_banner[rotation=7] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_banner[rotation=8] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_banner[rotation=9] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_banner[rotation=10] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_banner[rotation=11] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_banner[rotation=12] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_banner[rotation=13] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_banner[rotation=14] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_banner[rotation=15] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_banner[rotation=1] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_banner[rotation=2] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_banner[rotation=3] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_banner[rotation=4] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_banner[rotation=5] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_banner[rotation=6] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_banner[rotation=7] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_banner[rotation=8] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_banner[rotation=9] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_banner[rotation=10] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_banner[rotation=11] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_banner[rotation=12] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_banner[rotation=13] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_banner[rotation=14] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_banner[rotation=15] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_banner[rotation=1] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_banner[rotation=2] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_banner[rotation=3] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_banner[rotation=4] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_banner[rotation=5] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_banner[rotation=6] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_banner[rotation=7] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_banner[rotation=8] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_banner[rotation=9] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_banner[rotation=10] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_banner[rotation=11] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_banner[rotation=12] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_banner[rotation=13] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_banner[rotation=14] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_banner[rotation=15] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_banner[rotation=1] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_banner[rotation=2] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_banner[rotation=3] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_banner[rotation=4] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_banner[rotation=5] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_banner[rotation=6] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_banner[rotation=7] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_banner[rotation=8] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_banner[rotation=9] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_banner[rotation=10] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_banner[rotation=11] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_banner[rotation=12] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_banner[rotation=13] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_banner[rotation=14] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_banner[rotation=15] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_banner[rotation=1] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_banner[rotation=2] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_banner[rotation=3] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_banner[rotation=4] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_banner[rotation=5] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_banner[rotation=6] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_banner[rotation=7] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_banner[rotation=8] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_banner[rotation=9] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_banner[rotation=10] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_banner[rotation=11] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_banner[rotation=12] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_banner[rotation=13] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_banner[rotation=14] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_banner[rotation=15] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_banner[rotation=1] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_banner[rotation=2] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_banner[rotation=3] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_banner[rotation=4] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_banner[rotation=5] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_banner[rotation=6] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_banner[rotation=7] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_banner[rotation=8] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_banner[rotation=9] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_banner[rotation=10] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_banner[rotation=11] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_banner[rotation=12] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_banner[rotation=13] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_banner[rotation=14] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_banner[rotation=15] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_banner[rotation=1] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_banner[rotation=2] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_banner[rotation=3] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_banner[rotation=4] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_banner[rotation=5] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_banner[rotation=6] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_banner[rotation=7] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_banner[rotation=8] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_banner[rotation=9] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_banner[rotation=10] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_banner[rotation=11] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_banner[rotation=12] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_banner[rotation=13] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_banner[rotation=14] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_banner[rotation=15] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_banner[rotation=1] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_banner[rotation=2] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_banner[rotation=3] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_banner[rotation=4] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_banner[rotation=5] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_banner[rotation=6] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_banner[rotation=7] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_banner[rotation=8] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_banner[rotation=9] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_banner[rotation=10] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_banner[rotation=11] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_banner[rotation=12] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_banner[rotation=13] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_banner[rotation=14] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_banner[rotation=15] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_banner[rotation=1] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_banner[rotation=2] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_banner[rotation=3] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_banner[rotation=4] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_banner[rotation=5] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_banner[rotation=6] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_banner[rotation=7] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_banner[rotation=8] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_banner[rotation=9] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_banner[rotation=10] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_banner[rotation=11] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_banner[rotation=12] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_banner[rotation=13] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_banner[rotation=14] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_banner[rotation=15] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_wall_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_wall_banner[facing=south] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_wall_banner[facing=west] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_wall_banner[facing=east] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_wall_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_wall_banner[facing=south] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_wall_banner[facing=west] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_wall_banner[facing=east] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_wall_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_wall_banner[facing=south] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_wall_banner[facing=west] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_wall_banner[facing=east] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_wall_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_wall_banner[facing=south] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_wall_banner[facing=west] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_wall_banner[facing=east] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_wall_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_wall_banner[facing=south] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_wall_banner[facing=west] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_wall_banner[facing=east] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_wall_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_wall_banner[facing=south] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_wall_banner[facing=west] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_wall_banner[facing=east] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_wall_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_wall_banner[facing=south] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_wall_banner[facing=west] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_wall_banner[facing=east] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_wall_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_wall_banner[facing=south] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_wall_banner[facing=west] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_wall_banner[facing=east] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_wall_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_wall_banner[facing=south] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_wall_banner[facing=west] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_wall_banner[facing=east] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_wall_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_wall_banner[facing=south] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_wall_banner[facing=west] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_wall_banner[facing=east] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_wall_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_wall_banner[facing=south] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_wall_banner[facing=west] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_wall_banner[facing=east] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_wall_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_wall_banner[facing=south] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_wall_banner[facing=west] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_wall_banner[facing=east] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_wall_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_wall_banner[facing=south] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_wall_banner[facing=west] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_wall_banner[facing=east] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_wall_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_wall_banner[facing=south] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_wall_banner[facing=west] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_wall_banner[facing=east] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_wall_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_wall_banner[facing=south] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_wall_banner[facing=west] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_wall_banner[facing=east] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_wall_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_wall_banner[facing=south] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_wall_banner[facing=west] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_wall_banner[facing=east] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_sandstone 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:chiseled_red_sandstone 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:cut_red_sandstone 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:red_sandstone_stairs 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=top,shape=straight,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:oak_slab 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_slab[type=top,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_slab[type=bottom,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_slab[type=bottom,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_slab[type=double,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_slab[type=double,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:spruce_slab 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_slab[type=top,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_slab[type=bottom,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_slab[type=bottom,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_slab[type=double,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_slab[type=double,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:birch_slab 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_slab[type=top,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_slab[type=bottom,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_slab[type=bottom,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_slab[type=double,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_slab[type=double,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:jungle_slab 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_slab[type=top,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_slab[type=bottom,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_slab[type=bottom,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_slab[type=double,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_slab[type=double,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:acacia_slab 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_slab[type=top,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_slab[type=bottom,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_slab[type=bottom,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_slab[type=double,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_slab[type=double,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:dark_oak_slab 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_slab[type=top,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_slab[type=bottom,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_slab[type=bottom,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_slab[type=double,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_slab[type=double,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:stone_slab 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_slab[type=top,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_slab[type=bottom,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_slab[type=bottom,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_slab[type=double,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_slab[type=double,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:smooth_stone_slab 158 158 158 255 126 126 126 255 79 79 79 255 63 63 63 255 +minecraft:smooth_stone_slab[type=top,waterlogged=false] 158 158 158 255 126 126 126 255 79 79 79 255 63 63 63 255 +minecraft:smooth_stone_slab[type=bottom,waterlogged=true] 158 158 158 255 126 126 126 255 79 79 79 255 63 63 63 255 +minecraft:smooth_stone_slab[type=bottom,waterlogged=false] 158 158 158 255 126 126 126 255 79 79 79 255 63 63 63 255 +minecraft:smooth_stone_slab[type=double,waterlogged=true] 158 158 158 255 126 126 126 255 79 79 79 255 63 63 63 255 +minecraft:smooth_stone_slab[type=double,waterlogged=false] 158 158 158 255 126 126 126 255 79 79 79 255 63 63 63 255 +minecraft:sandstone_slab 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:sandstone_slab[type=top,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:sandstone_slab[type=bottom,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:sandstone_slab[type=bottom,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:sandstone_slab[type=double,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:sandstone_slab[type=double,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:cut_sandstone_slab 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:cut_sandstone_slab[type=top,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:cut_sandstone_slab[type=bottom,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:cut_sandstone_slab[type=bottom,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:cut_sandstone_slab[type=double,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:cut_sandstone_slab[type=double,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:petrified_oak_slab 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:petrified_oak_slab[type=top,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:petrified_oak_slab[type=bottom,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:petrified_oak_slab[type=bottom,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:petrified_oak_slab[type=double,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:petrified_oak_slab[type=double,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cobblestone_slab 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_slab[type=top,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_slab[type=bottom,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_slab[type=bottom,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_slab[type=double,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_slab[type=double,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:brick_slab 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_slab[type=top,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_slab[type=bottom,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_slab[type=bottom,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_slab[type=double,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_slab[type=double,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:stone_brick_slab 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_slab[type=top,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_slab[type=bottom,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_slab[type=bottom,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_slab[type=double,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_slab[type=double,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:nether_brick_slab 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_slab[type=top,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_slab[type=bottom,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_slab[type=bottom,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_slab[type=double,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_slab[type=double,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:quartz_slab 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_slab[type=top,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_slab[type=bottom,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_slab[type=bottom,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_slab[type=double,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_slab[type=double,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:red_sandstone_slab 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:red_sandstone_slab[type=top,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:red_sandstone_slab[type=bottom,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:red_sandstone_slab[type=bottom,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:red_sandstone_slab[type=double,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:red_sandstone_slab[type=double,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:cut_red_sandstone_slab 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:cut_red_sandstone_slab[type=top,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:cut_red_sandstone_slab[type=bottom,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:cut_red_sandstone_slab[type=bottom,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:cut_red_sandstone_slab[type=double,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:cut_red_sandstone_slab[type=double,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:purpur_slab 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_slab[type=top,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_slab[type=bottom,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_slab[type=bottom,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_slab[type=double,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_slab[type=double,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:smooth_stone 159 159 159 255 127 127 127 255 79 79 79 255 63 63 63 255 +minecraft:smooth_sandstone 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_quartz 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:smooth_red_sandstone 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:spruce_fence_gate 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=north,in_wall=true,open=true,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=north,in_wall=true,open=false,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=north,in_wall=true,open=false,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=north,in_wall=false,open=true,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=north,in_wall=false,open=true,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=north,in_wall=false,open=false,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=north,in_wall=false,open=false,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=south,in_wall=true,open=true,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=south,in_wall=true,open=true,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=south,in_wall=true,open=false,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=south,in_wall=true,open=false,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=south,in_wall=false,open=true,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=south,in_wall=false,open=true,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=south,in_wall=false,open=false,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=south,in_wall=false,open=false,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=west,in_wall=true,open=true,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=west,in_wall=true,open=true,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=west,in_wall=true,open=false,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=west,in_wall=true,open=false,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=west,in_wall=false,open=true,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=west,in_wall=false,open=true,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=west,in_wall=false,open=false,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=west,in_wall=false,open=false,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=east,in_wall=true,open=true,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=east,in_wall=true,open=true,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=east,in_wall=true,open=false,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=east,in_wall=true,open=false,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=east,in_wall=false,open=true,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=east,in_wall=false,open=true,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=east,in_wall=false,open=false,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=east,in_wall=false,open=false,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:birch_fence_gate 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=north,in_wall=true,open=true,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=north,in_wall=true,open=false,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=north,in_wall=true,open=false,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=north,in_wall=false,open=true,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=north,in_wall=false,open=true,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=north,in_wall=false,open=false,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=north,in_wall=false,open=false,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=south,in_wall=true,open=true,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=south,in_wall=true,open=true,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=south,in_wall=true,open=false,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=south,in_wall=true,open=false,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=south,in_wall=false,open=true,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=south,in_wall=false,open=true,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=south,in_wall=false,open=false,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=south,in_wall=false,open=false,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=west,in_wall=true,open=true,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=west,in_wall=true,open=true,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=west,in_wall=true,open=false,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=west,in_wall=true,open=false,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=west,in_wall=false,open=true,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=west,in_wall=false,open=true,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=west,in_wall=false,open=false,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=west,in_wall=false,open=false,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=east,in_wall=true,open=true,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=east,in_wall=true,open=true,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=east,in_wall=true,open=false,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=east,in_wall=true,open=false,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=east,in_wall=false,open=true,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=east,in_wall=false,open=true,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=east,in_wall=false,open=false,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=east,in_wall=false,open=false,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:jungle_fence_gate 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=north,in_wall=true,open=true,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=north,in_wall=true,open=false,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=north,in_wall=true,open=false,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=north,in_wall=false,open=true,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=north,in_wall=false,open=true,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=north,in_wall=false,open=false,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=north,in_wall=false,open=false,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=south,in_wall=true,open=true,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=south,in_wall=true,open=true,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=south,in_wall=true,open=false,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=south,in_wall=true,open=false,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=south,in_wall=false,open=true,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=south,in_wall=false,open=true,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=south,in_wall=false,open=false,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=south,in_wall=false,open=false,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=west,in_wall=true,open=true,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=west,in_wall=true,open=true,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=west,in_wall=true,open=false,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=west,in_wall=true,open=false,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=west,in_wall=false,open=true,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=west,in_wall=false,open=true,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=west,in_wall=false,open=false,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=west,in_wall=false,open=false,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=east,in_wall=true,open=true,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=east,in_wall=true,open=true,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=east,in_wall=true,open=false,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=east,in_wall=true,open=false,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=east,in_wall=false,open=true,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=east,in_wall=false,open=true,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=east,in_wall=false,open=false,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=east,in_wall=false,open=false,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:acacia_fence_gate 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=north,in_wall=true,open=true,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=north,in_wall=true,open=false,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=north,in_wall=true,open=false,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=north,in_wall=false,open=true,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=north,in_wall=false,open=true,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=north,in_wall=false,open=false,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=north,in_wall=false,open=false,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=south,in_wall=true,open=true,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=south,in_wall=true,open=true,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=south,in_wall=true,open=false,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=south,in_wall=true,open=false,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=south,in_wall=false,open=true,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=south,in_wall=false,open=true,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=south,in_wall=false,open=false,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=south,in_wall=false,open=false,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=west,in_wall=true,open=true,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=west,in_wall=true,open=true,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=west,in_wall=true,open=false,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=west,in_wall=true,open=false,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=west,in_wall=false,open=true,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=west,in_wall=false,open=true,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=west,in_wall=false,open=false,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=west,in_wall=false,open=false,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=east,in_wall=true,open=true,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=east,in_wall=true,open=true,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=east,in_wall=true,open=false,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=east,in_wall=true,open=false,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=east,in_wall=false,open=true,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=east,in_wall=false,open=true,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=east,in_wall=false,open=false,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=east,in_wall=false,open=false,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:dark_oak_fence_gate 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=north,in_wall=true,open=true,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=north,in_wall=true,open=false,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=north,in_wall=true,open=false,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=north,in_wall=false,open=true,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=north,in_wall=false,open=true,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=north,in_wall=false,open=false,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=north,in_wall=false,open=false,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=south,in_wall=true,open=true,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=south,in_wall=true,open=true,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=south,in_wall=true,open=false,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=south,in_wall=true,open=false,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=south,in_wall=false,open=true,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=south,in_wall=false,open=true,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=south,in_wall=false,open=false,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=south,in_wall=false,open=false,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=west,in_wall=true,open=true,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=west,in_wall=true,open=true,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=west,in_wall=true,open=false,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=west,in_wall=true,open=false,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=west,in_wall=false,open=true,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=west,in_wall=false,open=true,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=west,in_wall=false,open=false,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=west,in_wall=false,open=false,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=east,in_wall=true,open=true,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=east,in_wall=true,open=true,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=east,in_wall=true,open=false,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=east,in_wall=true,open=false,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=east,in_wall=false,open=true,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=east,in_wall=false,open=true,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=east,in_wall=false,open=false,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=east,in_wall=false,open=false,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:spruce_fence 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=true,north=true,south=true,waterlogged=true,west=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=true,north=true,south=true,waterlogged=false,west=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=true,north=true,south=true,waterlogged=false,west=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=true,north=true,south=false,waterlogged=true,west=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=true,north=true,south=false,waterlogged=true,west=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=true,north=true,south=false,waterlogged=false,west=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=true,north=true,south=false,waterlogged=false,west=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=true,north=false,south=true,waterlogged=true,west=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=true,north=false,south=true,waterlogged=true,west=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=true,north=false,south=true,waterlogged=false,west=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=true,north=false,south=true,waterlogged=false,west=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=true,north=false,south=false,waterlogged=true,west=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=true,north=false,south=false,waterlogged=true,west=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=true,north=false,south=false,waterlogged=false,west=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=true,north=false,south=false,waterlogged=false,west=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=false,north=true,south=true,waterlogged=true,west=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=false,north=true,south=true,waterlogged=true,west=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=false,north=true,south=true,waterlogged=false,west=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=false,north=true,south=true,waterlogged=false,west=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=false,north=true,south=false,waterlogged=true,west=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=false,north=true,south=false,waterlogged=true,west=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=false,north=true,south=false,waterlogged=false,west=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=false,north=true,south=false,waterlogged=false,west=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=false,north=false,south=true,waterlogged=true,west=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=false,north=false,south=true,waterlogged=true,west=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=false,north=false,south=true,waterlogged=false,west=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=false,north=false,south=true,waterlogged=false,west=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=false,north=false,south=false,waterlogged=true,west=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=false,north=false,south=false,waterlogged=true,west=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=false,north=false,south=false,waterlogged=false,west=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=false,north=false,south=false,waterlogged=false,west=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:birch_fence 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=true,north=true,south=true,waterlogged=true,west=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=true,north=true,south=true,waterlogged=false,west=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=true,north=true,south=true,waterlogged=false,west=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=true,north=true,south=false,waterlogged=true,west=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=true,north=true,south=false,waterlogged=true,west=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=true,north=true,south=false,waterlogged=false,west=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=true,north=true,south=false,waterlogged=false,west=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=true,north=false,south=true,waterlogged=true,west=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=true,north=false,south=true,waterlogged=true,west=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=true,north=false,south=true,waterlogged=false,west=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=true,north=false,south=true,waterlogged=false,west=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=true,north=false,south=false,waterlogged=true,west=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=true,north=false,south=false,waterlogged=true,west=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=true,north=false,south=false,waterlogged=false,west=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=true,north=false,south=false,waterlogged=false,west=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=false,north=true,south=true,waterlogged=true,west=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=false,north=true,south=true,waterlogged=true,west=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=false,north=true,south=true,waterlogged=false,west=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=false,north=true,south=true,waterlogged=false,west=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=false,north=true,south=false,waterlogged=true,west=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=false,north=true,south=false,waterlogged=true,west=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=false,north=true,south=false,waterlogged=false,west=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=false,north=true,south=false,waterlogged=false,west=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=false,north=false,south=true,waterlogged=true,west=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=false,north=false,south=true,waterlogged=true,west=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=false,north=false,south=true,waterlogged=false,west=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=false,north=false,south=true,waterlogged=false,west=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=false,north=false,south=false,waterlogged=true,west=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=false,north=false,south=false,waterlogged=true,west=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=false,north=false,south=false,waterlogged=false,west=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=false,north=false,south=false,waterlogged=false,west=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:jungle_fence 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=true,north=true,south=true,waterlogged=true,west=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=true,north=true,south=true,waterlogged=false,west=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=true,north=true,south=true,waterlogged=false,west=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=true,north=true,south=false,waterlogged=true,west=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=true,north=true,south=false,waterlogged=true,west=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=true,north=true,south=false,waterlogged=false,west=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=true,north=true,south=false,waterlogged=false,west=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=true,north=false,south=true,waterlogged=true,west=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=true,north=false,south=true,waterlogged=true,west=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=true,north=false,south=true,waterlogged=false,west=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=true,north=false,south=true,waterlogged=false,west=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=true,north=false,south=false,waterlogged=true,west=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=true,north=false,south=false,waterlogged=true,west=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=true,north=false,south=false,waterlogged=false,west=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=true,north=false,south=false,waterlogged=false,west=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=false,north=true,south=true,waterlogged=true,west=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=false,north=true,south=true,waterlogged=true,west=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=false,north=true,south=true,waterlogged=false,west=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=false,north=true,south=true,waterlogged=false,west=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=false,north=true,south=false,waterlogged=true,west=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=false,north=true,south=false,waterlogged=true,west=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=false,north=true,south=false,waterlogged=false,west=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=false,north=true,south=false,waterlogged=false,west=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=false,north=false,south=true,waterlogged=true,west=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=false,north=false,south=true,waterlogged=true,west=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=false,north=false,south=true,waterlogged=false,west=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=false,north=false,south=true,waterlogged=false,west=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=false,north=false,south=false,waterlogged=true,west=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=false,north=false,south=false,waterlogged=true,west=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=false,north=false,south=false,waterlogged=false,west=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=false,north=false,south=false,waterlogged=false,west=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:acacia_fence 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=true,north=true,south=true,waterlogged=true,west=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=true,north=true,south=true,waterlogged=false,west=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=true,north=true,south=true,waterlogged=false,west=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=true,north=true,south=false,waterlogged=true,west=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=true,north=true,south=false,waterlogged=true,west=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=true,north=true,south=false,waterlogged=false,west=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=true,north=true,south=false,waterlogged=false,west=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=true,north=false,south=true,waterlogged=true,west=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=true,north=false,south=true,waterlogged=true,west=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=true,north=false,south=true,waterlogged=false,west=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=true,north=false,south=true,waterlogged=false,west=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=true,north=false,south=false,waterlogged=true,west=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=true,north=false,south=false,waterlogged=true,west=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=true,north=false,south=false,waterlogged=false,west=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=true,north=false,south=false,waterlogged=false,west=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=false,north=true,south=true,waterlogged=true,west=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=false,north=true,south=true,waterlogged=true,west=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=false,north=true,south=true,waterlogged=false,west=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=false,north=true,south=true,waterlogged=false,west=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=false,north=true,south=false,waterlogged=true,west=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=false,north=true,south=false,waterlogged=true,west=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=false,north=true,south=false,waterlogged=false,west=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=false,north=true,south=false,waterlogged=false,west=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=false,north=false,south=true,waterlogged=true,west=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=false,north=false,south=true,waterlogged=true,west=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=false,north=false,south=true,waterlogged=false,west=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=false,north=false,south=true,waterlogged=false,west=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=false,north=false,south=false,waterlogged=true,west=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=false,north=false,south=false,waterlogged=true,west=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=false,north=false,south=false,waterlogged=false,west=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=false,north=false,south=false,waterlogged=false,west=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:dark_oak_fence 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=true,north=true,south=true,waterlogged=true,west=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=true,north=true,south=true,waterlogged=false,west=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=true,north=true,south=true,waterlogged=false,west=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=true,north=true,south=false,waterlogged=true,west=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=true,north=true,south=false,waterlogged=true,west=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=true,north=true,south=false,waterlogged=false,west=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=true,north=true,south=false,waterlogged=false,west=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=true,north=false,south=true,waterlogged=true,west=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=true,north=false,south=true,waterlogged=true,west=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=true,north=false,south=true,waterlogged=false,west=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=true,north=false,south=true,waterlogged=false,west=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=true,north=false,south=false,waterlogged=true,west=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=true,north=false,south=false,waterlogged=true,west=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=true,north=false,south=false,waterlogged=false,west=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=true,north=false,south=false,waterlogged=false,west=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=false,north=true,south=true,waterlogged=true,west=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=false,north=true,south=true,waterlogged=true,west=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=false,north=true,south=true,waterlogged=false,west=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=false,north=true,south=true,waterlogged=false,west=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=false,north=true,south=false,waterlogged=true,west=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=false,north=true,south=false,waterlogged=true,west=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=false,north=true,south=false,waterlogged=false,west=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=false,north=true,south=false,waterlogged=false,west=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=false,north=false,south=true,waterlogged=true,west=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=false,north=false,south=true,waterlogged=true,west=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=false,north=false,south=true,waterlogged=false,west=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=false,north=false,south=true,waterlogged=false,west=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=false,north=false,south=false,waterlogged=true,west=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=false,north=false,south=false,waterlogged=true,west=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=false,north=false,south=false,waterlogged=false,west=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=false,north=false,south=false,waterlogged=false,west=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:spruce_door 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=upper,hinge=left,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=upper,hinge=left,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=upper,hinge=left,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=upper,hinge=right,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=upper,hinge=right,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=upper,hinge=right,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=upper,hinge=right,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=lower,hinge=left,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=lower,hinge=left,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=lower,hinge=left,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=lower,hinge=left,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=lower,hinge=right,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=lower,hinge=right,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=lower,hinge=right,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=lower,hinge=right,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=upper,hinge=left,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=upper,hinge=left,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=upper,hinge=left,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=upper,hinge=left,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=upper,hinge=right,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=upper,hinge=right,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=upper,hinge=right,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=upper,hinge=right,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=lower,hinge=left,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=lower,hinge=left,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=lower,hinge=left,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=lower,hinge=left,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=lower,hinge=right,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=lower,hinge=right,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=lower,hinge=right,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=lower,hinge=right,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=upper,hinge=left,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=upper,hinge=left,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=upper,hinge=left,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=upper,hinge=left,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=upper,hinge=right,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=upper,hinge=right,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=upper,hinge=right,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=upper,hinge=right,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=lower,hinge=left,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=lower,hinge=left,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=lower,hinge=left,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=lower,hinge=left,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=lower,hinge=right,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=lower,hinge=right,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=lower,hinge=right,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=lower,hinge=right,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=upper,hinge=left,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=upper,hinge=left,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=upper,hinge=left,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=upper,hinge=left,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=upper,hinge=right,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=upper,hinge=right,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=upper,hinge=right,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=upper,hinge=right,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=lower,hinge=left,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=lower,hinge=left,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=lower,hinge=left,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=lower,hinge=left,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=lower,hinge=right,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=lower,hinge=right,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=lower,hinge=right,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=lower,hinge=right,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:birch_door 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=upper,hinge=left,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=upper,hinge=left,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=upper,hinge=left,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=upper,hinge=right,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=upper,hinge=right,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=upper,hinge=right,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=upper,hinge=right,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=lower,hinge=left,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=lower,hinge=left,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=lower,hinge=left,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=lower,hinge=left,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=lower,hinge=right,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=lower,hinge=right,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=lower,hinge=right,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=lower,hinge=right,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=upper,hinge=left,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=upper,hinge=left,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=upper,hinge=left,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=upper,hinge=left,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=upper,hinge=right,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=upper,hinge=right,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=upper,hinge=right,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=upper,hinge=right,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=lower,hinge=left,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=lower,hinge=left,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=lower,hinge=left,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=lower,hinge=left,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=lower,hinge=right,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=lower,hinge=right,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=lower,hinge=right,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=lower,hinge=right,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=upper,hinge=left,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=upper,hinge=left,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=upper,hinge=left,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=upper,hinge=left,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=upper,hinge=right,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=upper,hinge=right,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=upper,hinge=right,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=upper,hinge=right,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=lower,hinge=left,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=lower,hinge=left,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=lower,hinge=left,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=lower,hinge=left,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=lower,hinge=right,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=lower,hinge=right,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=lower,hinge=right,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=lower,hinge=right,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=upper,hinge=left,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=upper,hinge=left,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=upper,hinge=left,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=upper,hinge=left,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=upper,hinge=right,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=upper,hinge=right,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=upper,hinge=right,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=upper,hinge=right,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=lower,hinge=left,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=lower,hinge=left,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=lower,hinge=left,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=lower,hinge=left,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=lower,hinge=right,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=lower,hinge=right,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=lower,hinge=right,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=lower,hinge=right,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:jungle_door 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=upper,hinge=left,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=upper,hinge=left,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=upper,hinge=left,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=upper,hinge=right,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=upper,hinge=right,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=upper,hinge=right,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=upper,hinge=right,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=lower,hinge=left,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=lower,hinge=left,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=lower,hinge=left,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=lower,hinge=left,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=lower,hinge=right,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=lower,hinge=right,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=lower,hinge=right,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=lower,hinge=right,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=upper,hinge=left,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=upper,hinge=left,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=upper,hinge=left,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=upper,hinge=left,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=upper,hinge=right,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=upper,hinge=right,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=upper,hinge=right,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=upper,hinge=right,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=lower,hinge=left,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=lower,hinge=left,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=lower,hinge=left,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=lower,hinge=left,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=lower,hinge=right,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=lower,hinge=right,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=lower,hinge=right,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=lower,hinge=right,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=upper,hinge=left,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=upper,hinge=left,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=upper,hinge=left,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=upper,hinge=left,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=upper,hinge=right,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=upper,hinge=right,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=upper,hinge=right,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=upper,hinge=right,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=lower,hinge=left,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=lower,hinge=left,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=lower,hinge=left,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=lower,hinge=left,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=lower,hinge=right,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=lower,hinge=right,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=lower,hinge=right,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=lower,hinge=right,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=upper,hinge=left,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=upper,hinge=left,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=upper,hinge=left,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=upper,hinge=left,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=upper,hinge=right,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=upper,hinge=right,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=upper,hinge=right,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=upper,hinge=right,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=lower,hinge=left,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=lower,hinge=left,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=lower,hinge=left,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=lower,hinge=left,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=lower,hinge=right,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=lower,hinge=right,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=lower,hinge=right,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=lower,hinge=right,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:acacia_door 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=upper,hinge=left,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=upper,hinge=left,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=upper,hinge=left,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=upper,hinge=right,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=upper,hinge=right,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=upper,hinge=right,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=upper,hinge=right,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=lower,hinge=left,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=lower,hinge=left,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=lower,hinge=left,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=lower,hinge=left,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=lower,hinge=right,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=lower,hinge=right,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=lower,hinge=right,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=lower,hinge=right,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=upper,hinge=left,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=upper,hinge=left,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=upper,hinge=left,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=upper,hinge=left,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=upper,hinge=right,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=upper,hinge=right,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=upper,hinge=right,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=upper,hinge=right,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=lower,hinge=left,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=lower,hinge=left,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=lower,hinge=left,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=lower,hinge=left,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=lower,hinge=right,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=lower,hinge=right,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=lower,hinge=right,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=lower,hinge=right,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=upper,hinge=left,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=upper,hinge=left,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=upper,hinge=left,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=upper,hinge=left,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=upper,hinge=right,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=upper,hinge=right,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=upper,hinge=right,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=upper,hinge=right,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=lower,hinge=left,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=lower,hinge=left,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=lower,hinge=left,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=lower,hinge=left,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=lower,hinge=right,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=lower,hinge=right,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=lower,hinge=right,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=lower,hinge=right,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=upper,hinge=left,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=upper,hinge=left,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=upper,hinge=left,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=upper,hinge=left,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=upper,hinge=right,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=upper,hinge=right,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=upper,hinge=right,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=upper,hinge=right,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=lower,hinge=left,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=lower,hinge=left,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=lower,hinge=left,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=lower,hinge=left,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=lower,hinge=right,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=lower,hinge=right,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=lower,hinge=right,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=lower,hinge=right,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:dark_oak_door 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=upper,hinge=left,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=upper,hinge=left,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=upper,hinge=left,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=upper,hinge=right,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=upper,hinge=right,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=upper,hinge=right,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=upper,hinge=right,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=lower,hinge=left,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=lower,hinge=left,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=lower,hinge=left,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=lower,hinge=left,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=lower,hinge=right,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=lower,hinge=right,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=lower,hinge=right,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=lower,hinge=right,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=upper,hinge=left,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=upper,hinge=left,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=upper,hinge=left,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=upper,hinge=left,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=upper,hinge=right,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=upper,hinge=right,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=upper,hinge=right,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=upper,hinge=right,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=lower,hinge=left,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=lower,hinge=left,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=lower,hinge=left,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=lower,hinge=left,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=lower,hinge=right,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=lower,hinge=right,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=lower,hinge=right,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=lower,hinge=right,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=upper,hinge=left,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=upper,hinge=left,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=upper,hinge=left,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=upper,hinge=left,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=upper,hinge=right,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=upper,hinge=right,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=upper,hinge=right,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=upper,hinge=right,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=lower,hinge=left,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=lower,hinge=left,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=lower,hinge=left,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=lower,hinge=left,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=lower,hinge=right,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=lower,hinge=right,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=lower,hinge=right,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=lower,hinge=right,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=upper,hinge=left,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=upper,hinge=left,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=upper,hinge=left,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=upper,hinge=left,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=upper,hinge=right,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=upper,hinge=right,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=upper,hinge=right,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=upper,hinge=right,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=lower,hinge=left,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=lower,hinge=left,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=lower,hinge=left,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=lower,hinge=left,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=lower,hinge=right,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=lower,hinge=right,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=lower,hinge=right,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=lower,hinge=right,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:end_rod 205 196 185 65 164 156 148 65 102 98 92 65 82 78 74 65 +minecraft:end_rod[facing=east] 205 196 185 65 164 156 148 65 102 98 92 65 82 78 74 65 +minecraft:end_rod[facing=south] 205 196 185 65 164 156 148 65 102 98 92 65 82 78 74 65 +minecraft:end_rod[facing=west] 205 196 185 65 164 156 148 65 102 98 92 65 82 78 74 65 +minecraft:end_rod[facing=up] 205 196 185 65 164 156 148 65 102 98 92 65 82 78 74 65 +minecraft:end_rod[facing=down] 205 196 185 65 164 156 148 65 102 98 92 65 82 78 74 65 +minecraft:chorus_plant 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=true,north=true,south=true,up=true,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=true,north=true,south=true,up=false,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=true,north=true,south=true,up=false,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=true,north=true,south=false,up=true,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=true,north=true,south=false,up=true,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=true,north=true,south=false,up=false,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=true,north=true,south=false,up=false,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=true,north=false,south=true,up=true,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=true,north=false,south=true,up=true,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=true,north=false,south=true,up=false,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=true,north=false,south=true,up=false,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=true,north=false,south=false,up=true,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=true,north=false,south=false,up=true,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=true,north=false,south=false,up=false,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=true,north=false,south=false,up=false,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=false,north=true,south=true,up=true,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=false,north=true,south=true,up=true,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=false,north=true,south=true,up=false,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=false,north=true,south=true,up=false,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=false,north=true,south=false,up=true,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=false,north=true,south=false,up=true,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=false,north=true,south=false,up=false,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=false,north=true,south=false,up=false,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=false,north=false,south=true,up=true,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=false,north=false,south=true,up=true,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=false,north=false,south=true,up=false,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=false,north=false,south=true,up=false,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=false,north=false,south=false,up=true,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=false,north=false,south=false,up=true,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=false,north=false,south=false,up=false,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=false,north=false,south=false,up=false,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=true,north=true,south=true,up=true,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=true,north=true,south=true,up=true,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=true,north=true,south=true,up=false,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=true,north=true,south=true,up=false,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=true,north=true,south=false,up=true,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=true,north=true,south=false,up=true,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=true,north=true,south=false,up=false,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=true,north=true,south=false,up=false,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=true,north=false,south=true,up=true,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=true,north=false,south=true,up=true,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=true,north=false,south=true,up=false,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=true,north=false,south=true,up=false,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=true,north=false,south=false,up=true,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=true,north=false,south=false,up=true,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=true,north=false,south=false,up=false,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=true,north=false,south=false,up=false,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=false,north=true,south=true,up=true,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=false,north=true,south=true,up=true,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=false,north=true,south=true,up=false,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=false,north=true,south=true,up=false,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=false,north=true,south=false,up=true,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=false,north=true,south=false,up=true,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=false,north=true,south=false,up=false,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=false,north=true,south=false,up=false,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=false,north=false,south=true,up=true,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=false,north=false,south=true,up=true,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=false,north=false,south=true,up=false,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=false,north=false,south=true,up=false,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=false,north=false,south=false,up=true,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=false,north=false,south=false,up=true,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=false,north=false,south=false,up=false,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=false,north=false,south=false,up=false,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_flower 151 120 151 255 120 96 120 255 75 60 75 255 60 48 60 255 +minecraft:chorus_flower[age=1] 151 120 151 255 120 96 120 255 75 60 75 255 60 48 60 255 +minecraft:chorus_flower[age=2] 151 120 151 255 120 96 120 255 75 60 75 255 60 48 60 255 +minecraft:chorus_flower[age=3] 151 120 151 255 120 96 120 255 75 60 75 255 60 48 60 255 +minecraft:chorus_flower[age=4] 151 120 151 255 120 96 120 255 75 60 75 255 60 48 60 255 +minecraft:chorus_flower[age=5] 96 61 94 255 76 48 75 255 48 30 47 255 38 24 37 255 +minecraft:purpur_block 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_pillar 171 129 171 255 136 103 136 255 85 64 85 255 68 51 68 255 +minecraft:purpur_pillar[axis=y] 171 128 171 255 136 102 136 255 85 64 85 255 68 51 68 255 +minecraft:purpur_pillar[axis=z] 171 129 171 255 136 103 136 255 85 64 85 255 68 51 68 255 +minecraft:purpur_stairs 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=top,shape=straight,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=top,shape=straight,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=top,shape=straight,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=top,shape=straight,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=top,shape=straight,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=top,shape=straight,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=top,shape=straight,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:end_stone_bricks 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:beetroots 65 137 41 14 52 109 32 14 32 68 20 14 26 54 16 14 +minecraft:beetroots[age=1] 66 138 41 29 52 110 32 29 33 69 20 29 26 55 16 29 +minecraft:beetroots[age=2] 69 130 39 87 55 104 31 87 34 65 19 87 27 52 15 87 +minecraft:beetroots[age=3] 93 91 30 115 74 72 24 115 46 45 15 115 37 36 12 115 +minecraft:dirt_path 148 121 65 255 118 96 52 255 74 60 32 255 59 48 26 255 +minecraft:end_gateway 117 90 156 255 93 72 124 255 58 45 78 255 46 36 62 255 +minecraft:repeating_command_block 127 109 166 255 101 87 132 255 63 54 83 255 50 43 66 255 +minecraft:repeating_command_block[conditional=true,facing=east] 129 111 176 255 103 88 140 255 64 55 88 255 51 44 70 255 +minecraft:repeating_command_block[conditional=true,facing=south] 128 110 170 255 102 88 136 255 64 55 85 255 51 44 68 255 +minecraft:repeating_command_block[conditional=true,facing=west] 128 110 170 255 102 88 136 255 64 55 85 255 51 44 68 255 +minecraft:repeating_command_block[conditional=true,facing=up] 128 110 170 255 102 88 136 255 64 55 85 255 51 44 68 255 +minecraft:repeating_command_block[conditional=true,facing=down] 128 110 170 255 102 88 136 255 64 55 85 255 51 44 68 255 +minecraft:repeating_command_block[conditional=false,facing=north] 127 109 166 255 101 87 132 255 63 54 83 255 50 43 66 255 +minecraft:repeating_command_block[conditional=false,facing=east] 129 111 176 255 103 88 140 255 64 55 88 255 51 44 70 255 +minecraft:repeating_command_block[conditional=false,facing=south] 127 109 171 255 101 87 136 255 63 54 85 255 50 43 68 255 +minecraft:repeating_command_block[conditional=false,facing=west] 127 109 171 255 101 87 136 255 63 54 85 255 50 43 68 255 +minecraft:repeating_command_block[conditional=false,facing=up] 127 109 171 255 101 87 136 255 63 54 85 255 50 43 68 255 +minecraft:repeating_command_block[conditional=false,facing=down] 127 109 171 255 101 87 136 255 63 54 85 255 50 43 68 255 +minecraft:chain_command_block 129 156 144 255 103 124 115 255 64 78 72 255 51 62 57 255 +minecraft:chain_command_block[conditional=true,facing=east] 132 165 150 255 105 132 120 255 66 82 75 255 52 66 60 255 +minecraft:chain_command_block[conditional=true,facing=south] 131 161 147 255 104 128 117 255 65 80 73 255 52 64 58 255 +minecraft:chain_command_block[conditional=true,facing=west] 131 161 147 255 104 128 117 255 65 80 73 255 52 64 58 255 +minecraft:chain_command_block[conditional=true,facing=up] 131 161 147 255 104 128 117 255 65 80 73 255 52 64 58 255 +minecraft:chain_command_block[conditional=true,facing=down] 131 161 147 255 104 128 117 255 65 80 73 255 52 64 58 255 +minecraft:chain_command_block[conditional=false,facing=north] 129 156 144 255 103 124 115 255 64 78 72 255 51 62 57 255 +minecraft:chain_command_block[conditional=false,facing=east] 132 165 150 255 105 132 120 255 66 82 75 255 52 66 60 255 +minecraft:chain_command_block[conditional=false,facing=south] 129 161 147 255 103 128 117 255 64 80 73 255 51 64 58 255 +minecraft:chain_command_block[conditional=false,facing=west] 129 161 147 255 103 128 117 255 64 80 73 255 51 64 58 255 +minecraft:chain_command_block[conditional=false,facing=up] 129 161 147 255 103 128 117 255 64 80 73 255 51 64 58 255 +minecraft:chain_command_block[conditional=false,facing=down] 129 161 147 255 103 128 117 255 64 80 73 255 51 64 58 255 +minecraft:frosted_ice 140 181 252 190 112 144 201 190 70 90 126 190 56 72 100 190 +minecraft:frosted_ice[age=1] 139 180 252 193 111 144 201 193 69 90 126 193 55 72 100 193 +minecraft:frosted_ice[age=2] 137 179 252 199 109 143 201 199 68 89 126 199 54 71 100 199 +minecraft:frosted_ice[age=3] 134 177 252 212 107 141 201 212 67 88 126 212 53 70 100 212 +minecraft:magma_block 141 62 30 255 112 49 24 255 70 31 15 255 56 24 12 255 +minecraft:nether_wart_block 114 2 2 255 91 1 1 255 57 1 1 255 45 0 0 255 +minecraft:red_nether_bricks 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:bone_block 229 225 207 255 183 180 165 255 114 112 103 255 91 90 82 255 +minecraft:bone_block[axis=y] 209 206 179 255 167 164 143 255 104 103 89 255 83 82 71 255 +minecraft:bone_block[axis=z] 229 225 207 255 183 180 165 255 114 112 103 255 91 90 82 255 +minecraft:observer 71 69 69 255 56 55 55 255 35 34 34 255 28 27 27 255 +minecraft:observer[facing=north,powered=false] 71 69 69 255 56 55 55 255 35 34 34 255 28 27 27 255 +minecraft:observer[facing=east,powered=true] 103 103 103 255 82 82 82 255 51 51 51 255 41 41 41 255 +minecraft:observer[facing=east,powered=false] 103 103 103 255 82 82 82 255 51 51 51 255 41 41 41 255 +minecraft:observer[facing=south,powered=true] 98 98 98 255 78 78 78 255 49 49 49 255 39 39 39 255 +minecraft:observer[facing=south,powered=false] 98 98 98 255 78 78 78 255 49 49 49 255 39 39 39 255 +minecraft:observer[facing=west,powered=true] 98 98 98 255 78 78 78 255 49 49 49 255 39 39 39 255 +minecraft:observer[facing=west,powered=false] 98 98 98 255 78 78 78 255 49 49 49 255 39 39 39 255 +minecraft:observer[facing=up,powered=true] 98 98 98 255 78 78 78 255 49 49 49 255 39 39 39 255 +minecraft:observer[facing=up,powered=false] 98 98 98 255 78 78 78 255 49 49 49 255 39 39 39 255 +minecraft:observer[facing=down,powered=true] 98 98 98 255 78 78 78 255 49 49 49 255 39 39 39 255 +minecraft:observer[facing=down,powered=false] 98 98 98 255 78 78 78 255 49 49 49 255 39 39 39 255 +minecraft:shulker_box 121 83 121 255 96 66 96 255 60 41 60 255 48 33 48 255 +minecraft:shulker_box[facing=east] 139 96 139 255 111 76 111 255 69 48 69 255 55 38 55 255 +minecraft:shulker_box[facing=south] 139 97 139 255 111 77 111 255 69 48 69 255 55 38 55 255 +minecraft:shulker_box[facing=west] 139 97 139 255 111 77 111 255 69 48 69 255 55 38 55 255 +minecraft:shulker_box[facing=up] 139 97 139 255 111 77 111 255 69 48 69 255 55 38 55 255 +minecraft:shulker_box[facing=down] 139 97 139 255 111 77 111 255 69 48 69 255 55 38 55 255 +minecraft:white_shulker_box 168 173 174 255 134 138 139 255 84 86 87 255 67 69 69 255 +minecraft:white_shulker_box[facing=east] 215 220 221 255 172 176 176 255 107 110 110 255 86 88 88 255 +minecraft:white_shulker_box[facing=south] 202 207 208 255 161 165 166 255 101 103 104 255 80 82 83 255 +minecraft:white_shulker_box[facing=west] 202 207 208 255 161 165 166 255 101 103 104 255 80 82 83 255 +minecraft:white_shulker_box[facing=up] 202 207 208 255 161 165 166 255 101 103 104 255 80 82 83 255 +minecraft:white_shulker_box[facing=down] 202 207 208 255 161 165 166 255 101 103 104 255 80 82 83 255 +minecraft:orange_shulker_box 165 70 0 255 132 56 0 255 82 35 0 255 66 28 0 255 +minecraft:orange_shulker_box[facing=east] 234 106 8 255 187 84 6 255 117 53 4 255 93 42 3 255 +minecraft:orange_shulker_box[facing=south] 218 97 5 255 174 77 4 255 109 48 2 255 87 38 2 255 +minecraft:orange_shulker_box[facing=west] 218 97 5 255 174 77 4 255 109 48 2 255 87 38 2 255 +minecraft:orange_shulker_box[facing=up] 218 97 5 255 174 77 4 255 109 48 2 255 87 38 2 255 +minecraft:orange_shulker_box[facing=down] 218 97 5 255 174 77 4 255 109 48 2 255 87 38 2 255 +minecraft:magenta_shulker_box 138 38 129 255 110 30 103 255 69 19 64 255 55 15 51 255 +minecraft:magenta_shulker_box[facing=east] 173 54 163 255 138 43 130 255 86 27 81 255 69 21 65 255 +minecraft:magenta_shulker_box[facing=south] 163 48 153 255 130 38 122 255 81 24 76 255 65 19 61 255 +minecraft:magenta_shulker_box[facing=west] 163 48 153 255 130 38 122 255 81 24 76 255 65 19 61 255 +minecraft:magenta_shulker_box[facing=up] 163 48 153 255 130 38 122 255 81 24 76 255 65 19 61 255 +minecraft:magenta_shulker_box[facing=down] 163 48 153 255 130 38 122 255 81 24 76 255 65 19 61 255 +minecraft:light_blue_shulker_box 27 113 166 255 21 90 132 255 13 56 83 255 10 45 66 255 +minecraft:light_blue_shulker_box[facing=east] 49 163 212 255 39 130 169 255 24 81 106 255 19 65 84 255 +minecraft:light_blue_shulker_box[facing=south] 42 150 202 255 33 120 161 255 21 75 101 255 16 60 80 255 +minecraft:light_blue_shulker_box[facing=west] 42 150 202 255 33 120 161 255 21 75 101 255 16 60 80 255 +minecraft:light_blue_shulker_box[facing=up] 42 150 202 255 33 120 161 255 21 75 101 255 16 60 80 255 +minecraft:light_blue_shulker_box[facing=down] 42 150 202 255 33 120 161 255 21 75 101 255 16 60 80 255 +minecraft:yellow_shulker_box 209 149 14 255 167 119 11 255 104 74 7 255 83 59 5 255 +minecraft:yellow_shulker_box[facing=east] 248 188 29 255 198 150 23 255 124 94 14 255 99 75 11 255 +minecraft:yellow_shulker_box[facing=south] 240 179 24 255 192 143 19 255 120 89 12 255 96 71 9 255 +minecraft:yellow_shulker_box[facing=west] 240 179 24 255 192 143 19 255 120 89 12 255 96 71 9 255 +minecraft:yellow_shulker_box[facing=up] 240 179 24 255 192 143 19 255 120 89 12 255 96 71 9 255 +minecraft:yellow_shulker_box[facing=down] 240 179 24 255 192 143 19 255 120 89 12 255 96 71 9 255 +minecraft:lime_shulker_box 61 112 14 255 48 89 11 255 30 56 7 255 24 44 5 255 +minecraft:lime_shulker_box[facing=east] 99 172 23 255 79 137 18 255 49 86 11 255 39 68 9 255 +minecraft:lime_shulker_box[facing=south] 88 156 21 255 70 124 16 255 44 78 10 255 35 62 8 255 +minecraft:lime_shulker_box[facing=west] 88 156 21 255 70 124 16 255 44 78 10 255 35 62 8 255 +minecraft:lime_shulker_box[facing=up] 88 156 21 255 70 124 16 255 44 78 10 255 35 62 8 255 +minecraft:lime_shulker_box[facing=down] 88 156 21 255 70 124 16 255 44 78 10 255 35 62 8 255 +minecraft:pink_shulker_box 177 78 116 255 141 62 92 255 88 39 58 255 70 31 46 255 +minecraft:pink_shulker_box[facing=east] 230 121 157 255 184 96 125 255 115 60 78 255 92 48 62 255 +minecraft:pink_shulker_box[facing=south] 217 109 146 255 173 87 116 255 108 54 73 255 86 43 58 255 +minecraft:pink_shulker_box[facing=west] 217 109 146 255 173 87 116 255 108 54 73 255 86 43 58 255 +minecraft:pink_shulker_box[facing=up] 217 109 146 255 173 87 116 255 108 54 73 255 86 43 58 255 +minecraft:pink_shulker_box[facing=down] 217 109 146 255 173 87 116 255 108 54 73 255 86 43 58 255 +minecraft:gray_shulker_box 36 38 41 255 28 30 32 255 18 19 20 255 14 15 16 255 +minecraft:gray_shulker_box[facing=east] 55 58 62 255 44 46 49 255 27 29 31 255 22 23 24 255 +minecraft:gray_shulker_box[facing=south] 49 52 56 255 39 41 44 255 24 26 28 255 19 20 22 255 +minecraft:gray_shulker_box[facing=west] 49 52 56 255 39 41 44 255 24 26 28 255 19 20 22 255 +minecraft:gray_shulker_box[facing=up] 49 52 56 255 39 41 44 255 24 26 28 255 19 20 22 255 +minecraft:gray_shulker_box[facing=down] 49 52 56 255 39 41 44 255 24 26 28 255 19 20 22 255 +minecraft:light_gray_shulker_box 78 78 71 255 62 62 56 255 39 39 35 255 31 31 28 255 +minecraft:light_gray_shulker_box[facing=east] 124 124 115 255 99 99 92 255 62 62 57 255 49 49 46 255 +minecraft:light_gray_shulker_box[facing=south] 111 111 102 255 88 88 81 255 55 55 51 255 44 44 40 255 +minecraft:light_gray_shulker_box[facing=west] 111 111 102 255 88 88 81 255 55 55 51 255 44 44 40 255 +minecraft:light_gray_shulker_box[facing=up] 111 111 102 255 88 88 81 255 55 55 51 255 44 44 40 255 +minecraft:light_gray_shulker_box[facing=down] 111 111 102 255 88 88 81 255 55 55 51 255 44 44 40 255 +minecraft:cyan_shulker_box 10 82 95 255 8 65 76 255 5 41 47 255 4 32 38 255 +minecraft:cyan_shulker_box[facing=east] 20 121 135 255 16 96 108 255 10 60 67 255 8 48 54 255 +minecraft:cyan_shulker_box[facing=south] 17 110 124 255 13 88 99 255 8 55 62 255 6 44 49 255 +minecraft:cyan_shulker_box[facing=west] 17 110 124 255 13 88 99 255 8 55 62 255 6 44 49 255 +minecraft:cyan_shulker_box[facing=up] 17 110 124 255 13 88 99 255 8 55 62 255 6 44 49 255 +minecraft:cyan_shulker_box[facing=down] 17 110 124 255 13 88 99 255 8 55 62 255 6 44 49 255 +minecraft:purple_shulker_box 75 21 120 255 60 16 96 255 37 10 60 255 30 8 48 255 +minecraft:purple_shulker_box[facing=east] 103 32 156 255 82 25 124 255 51 16 78 255 41 12 62 255 +minecraft:purple_shulker_box[facing=south] 94 28 146 255 75 22 116 255 47 14 73 255 37 11 58 255 +minecraft:purple_shulker_box[facing=west] 94 28 146 255 75 22 116 255 47 14 73 255 37 11 58 255 +minecraft:purple_shulker_box[facing=up] 94 28 146 255 75 22 116 255 47 14 73 255 37 11 58 255 +minecraft:purple_shulker_box[facing=down] 94 28 146 255 75 22 116 255 47 14 73 255 37 11 58 255 +minecraft:blue_shulker_box 26 27 99 255 20 21 79 255 13 13 49 255 10 10 39 255 +minecraft:blue_shulker_box[facing=east] 43 45 140 255 34 36 112 255 21 22 70 255 17 18 56 255 +minecraft:blue_shulker_box[facing=south] 38 40 128 255 30 32 102 255 19 20 64 255 15 16 51 255 +minecraft:blue_shulker_box[facing=west] 38 40 128 255 30 32 102 255 19 20 64 255 15 16 51 255 +minecraft:blue_shulker_box[facing=up] 38 40 128 255 30 32 102 255 19 20 64 255 15 16 51 255 +minecraft:blue_shulker_box[facing=down] 38 40 128 255 30 32 102 255 19 20 64 255 15 16 51 255 +minecraft:brown_shulker_box 74 44 21 255 59 35 16 255 37 22 10 255 29 17 8 255 +minecraft:brown_shulker_box[facing=east] 106 66 35 255 84 52 28 255 53 33 17 255 42 26 14 255 +minecraft:brown_shulker_box[facing=south] 98 60 32 255 78 48 25 255 49 30 16 255 39 24 12 255 +minecraft:brown_shulker_box[facing=west] 98 60 32 255 78 48 25 255 49 30 16 255 39 24 12 255 +minecraft:brown_shulker_box[facing=up] 98 60 32 255 78 48 25 255 49 30 16 255 39 24 12 255 +minecraft:brown_shulker_box[facing=down] 98 60 32 255 78 48 25 255 49 30 16 255 39 24 12 255 +minecraft:green_shulker_box 60 75 30 255 48 60 24 255 30 37 15 255 24 30 12 255 +minecraft:green_shulker_box[facing=east] 79 100 31 255 63 80 24 255 39 50 15 255 31 40 12 255 +minecraft:green_shulker_box[facing=south] 74 94 32 255 59 75 25 255 37 47 16 255 29 37 12 255 +minecraft:green_shulker_box[facing=west] 74 94 32 255 59 75 25 255 37 47 16 255 29 37 12 255 +minecraft:green_shulker_box[facing=up] 74 94 32 255 59 75 25 255 37 47 16 255 29 37 12 255 +minecraft:green_shulker_box[facing=down] 74 94 32 255 59 75 25 255 37 47 16 255 29 37 12 255 +minecraft:red_shulker_box 102 16 16 255 81 12 12 255 51 8 8 255 40 6 6 255 +minecraft:red_shulker_box[facing=east] 140 31 30 255 112 24 24 255 70 15 15 255 56 12 12 255 +minecraft:red_shulker_box[facing=south] 129 26 26 255 103 20 20 255 64 13 13 255 51 10 10 255 +minecraft:red_shulker_box[facing=west] 129 26 26 255 103 20 20 255 64 13 13 255 51 10 10 255 +minecraft:red_shulker_box[facing=up] 129 26 26 255 103 20 20 255 64 13 13 255 51 10 10 255 +minecraft:red_shulker_box[facing=down] 129 26 26 255 103 20 20 255 64 13 13 255 51 10 10 255 +minecraft:black_shulker_box 10 12 16 255 8 9 12 255 5 6 8 255 4 4 6 255 +minecraft:black_shulker_box[facing=east] 25 25 29 255 20 20 23 255 12 12 14 255 10 10 11 255 +minecraft:black_shulker_box[facing=south] 20 21 25 255 16 16 20 255 10 10 12 255 8 8 10 255 +minecraft:black_shulker_box[facing=west] 20 21 25 255 16 16 20 255 10 10 12 255 8 8 10 255 +minecraft:black_shulker_box[facing=up] 20 21 25 255 16 16 20 255 10 10 12 255 8 8 10 255 +minecraft:black_shulker_box[facing=down] 20 21 25 255 16 16 20 255 10 10 12 255 8 8 10 255 +minecraft:white_glazed_terracotta 188 212 202 255 150 169 161 255 94 106 101 255 75 84 80 255 +minecraft:white_glazed_terracotta[facing=south] 188 212 202 255 150 169 161 255 94 106 101 255 75 84 80 255 +minecraft:white_glazed_terracotta[facing=west] 188 212 202 255 150 169 161 255 94 106 101 255 75 84 80 255 +minecraft:white_glazed_terracotta[facing=east] 188 212 202 255 150 169 161 255 94 106 101 255 75 84 80 255 +minecraft:orange_glazed_terracotta 154 147 91 255 123 117 72 255 77 73 45 255 61 58 36 255 +minecraft:orange_glazed_terracotta[facing=south] 154 147 91 255 123 117 72 255 77 73 45 255 61 58 36 255 +minecraft:orange_glazed_terracotta[facing=west] 154 147 91 255 123 117 72 255 77 73 45 255 61 58 36 255 +minecraft:orange_glazed_terracotta[facing=east] 154 147 91 255 123 117 72 255 77 73 45 255 61 58 36 255 +minecraft:magenta_glazed_terracotta 208 100 191 255 166 80 152 255 104 50 95 255 83 40 76 255 +minecraft:magenta_glazed_terracotta[facing=south] 208 100 191 255 166 80 152 255 104 50 95 255 83 40 76 255 +minecraft:magenta_glazed_terracotta[facing=west] 208 100 191 255 166 80 152 255 104 50 95 255 83 40 76 255 +minecraft:magenta_glazed_terracotta[facing=east] 208 100 191 255 166 80 152 255 104 50 95 255 83 40 76 255 +minecraft:light_blue_glazed_terracotta 94 164 208 255 75 131 166 255 47 82 104 255 37 65 83 255 +minecraft:light_blue_glazed_terracotta[facing=south] 94 164 208 255 75 131 166 255 47 82 104 255 37 65 83 255 +minecraft:light_blue_glazed_terracotta[facing=west] 94 164 208 255 75 131 166 255 47 82 104 255 37 65 83 255 +minecraft:light_blue_glazed_terracotta[facing=east] 94 164 208 255 75 131 166 255 47 82 104 255 37 65 83 255 +minecraft:yellow_glazed_terracotta 234 192 88 255 187 153 70 255 117 96 44 255 93 76 35 255 +minecraft:yellow_glazed_terracotta[facing=south] 234 192 88 255 187 153 70 255 117 96 44 255 93 76 35 255 +minecraft:yellow_glazed_terracotta[facing=west] 234 192 88 255 187 153 70 255 117 96 44 255 93 76 35 255 +minecraft:yellow_glazed_terracotta[facing=east] 234 192 88 255 187 153 70 255 117 96 44 255 93 76 35 255 +minecraft:lime_glazed_terracotta 162 197 55 255 129 157 44 255 81 98 27 255 64 78 22 255 +minecraft:lime_glazed_terracotta[facing=south] 162 197 55 255 129 157 44 255 81 98 27 255 64 78 22 255 +minecraft:lime_glazed_terracotta[facing=west] 162 197 55 255 129 157 44 255 81 98 27 255 64 78 22 255 +minecraft:lime_glazed_terracotta[facing=east] 162 197 55 255 129 157 44 255 81 98 27 255 64 78 22 255 +minecraft:pink_glazed_terracotta 235 154 181 255 188 123 144 255 117 77 90 255 94 61 72 255 +minecraft:pink_glazed_terracotta[facing=south] 235 154 181 255 188 123 144 255 117 77 90 255 94 61 72 255 +minecraft:pink_glazed_terracotta[facing=west] 235 154 181 255 188 123 144 255 117 77 90 255 94 61 72 255 +minecraft:pink_glazed_terracotta[facing=east] 235 154 181 255 188 123 144 255 117 77 90 255 94 61 72 255 +minecraft:gray_glazed_terracotta 83 90 93 255 66 72 74 255 41 45 46 255 33 36 37 255 +minecraft:gray_glazed_terracotta[facing=south] 83 90 93 255 66 72 74 255 41 45 46 255 33 36 37 255 +minecraft:gray_glazed_terracotta[facing=west] 83 90 93 255 66 72 74 255 41 45 46 255 33 36 37 255 +minecraft:gray_glazed_terracotta[facing=east] 83 90 93 255 66 72 74 255 41 45 46 255 33 36 37 255 +minecraft:light_gray_glazed_terracotta 144 166 167 255 115 132 133 255 72 83 83 255 57 66 66 255 +minecraft:light_gray_glazed_terracotta[facing=south] 144 166 167 255 115 132 133 255 72 83 83 255 57 66 66 255 +minecraft:light_gray_glazed_terracotta[facing=west] 144 166 167 255 115 132 133 255 72 83 83 255 57 66 66 255 +minecraft:light_gray_glazed_terracotta[facing=east] 144 166 167 255 115 132 133 255 72 83 83 255 57 66 66 255 +minecraft:cyan_glazed_terracotta 52 118 125 255 41 94 100 255 26 59 62 255 20 47 50 255 +minecraft:cyan_glazed_terracotta[facing=south] 52 118 125 255 41 94 100 255 26 59 62 255 20 47 50 255 +minecraft:cyan_glazed_terracotta[facing=west] 52 118 125 255 41 94 100 255 26 59 62 255 20 47 50 255 +minecraft:cyan_glazed_terracotta[facing=east] 52 118 125 255 41 94 100 255 26 59 62 255 20 47 50 255 +minecraft:purple_glazed_terracotta 109 48 152 255 87 38 121 255 54 24 76 255 43 19 60 255 +minecraft:purple_glazed_terracotta[facing=south] 109 48 152 255 87 38 121 255 54 24 76 255 43 19 60 255 +minecraft:purple_glazed_terracotta[facing=west] 109 48 152 255 87 38 121 255 54 24 76 255 43 19 60 255 +minecraft:purple_glazed_terracotta[facing=east] 109 48 152 255 87 38 121 255 54 24 76 255 43 19 60 255 +minecraft:blue_glazed_terracotta 47 64 139 255 37 51 111 255 23 32 69 255 18 25 55 255 +minecraft:blue_glazed_terracotta[facing=south] 47 64 139 255 37 51 111 255 23 32 69 255 18 25 55 255 +minecraft:blue_glazed_terracotta[facing=west] 47 64 139 255 37 51 111 255 23 32 69 255 18 25 55 255 +minecraft:blue_glazed_terracotta[facing=east] 47 64 139 255 37 51 111 255 23 32 69 255 18 25 55 255 +minecraft:brown_glazed_terracotta 119 106 85 255 95 84 68 255 59 53 42 255 47 42 34 255 +minecraft:brown_glazed_terracotta[facing=south] 119 106 85 255 95 84 68 255 59 53 42 255 47 42 34 255 +minecraft:brown_glazed_terracotta[facing=west] 119 106 85 255 95 84 68 255 59 53 42 255 47 42 34 255 +minecraft:brown_glazed_terracotta[facing=east] 119 106 85 255 95 84 68 255 59 53 42 255 47 42 34 255 +minecraft:green_glazed_terracotta 117 142 67 255 93 113 53 255 58 71 33 255 46 56 26 255 +minecraft:green_glazed_terracotta[facing=south] 117 142 67 255 93 113 53 255 58 71 33 255 46 56 26 255 +minecraft:green_glazed_terracotta[facing=west] 117 142 67 255 93 113 53 255 58 71 33 255 46 56 26 255 +minecraft:green_glazed_terracotta[facing=east] 117 142 67 255 93 113 53 255 58 71 33 255 46 56 26 255 +minecraft:red_glazed_terracotta 181 59 53 255 144 47 42 255 90 29 26 255 72 23 21 255 +minecraft:red_glazed_terracotta[facing=south] 181 59 53 255 144 47 42 255 90 29 26 255 72 23 21 255 +minecraft:red_glazed_terracotta[facing=west] 181 59 53 255 144 47 42 255 90 29 26 255 72 23 21 255 +minecraft:red_glazed_terracotta[facing=east] 181 59 53 255 144 47 42 255 90 29 26 255 72 23 21 255 +minecraft:black_glazed_terracotta 67 30 32 255 53 24 25 255 33 15 16 255 26 12 12 255 +minecraft:black_glazed_terracotta[facing=south] 67 30 32 255 53 24 25 255 33 15 16 255 26 12 12 255 +minecraft:black_glazed_terracotta[facing=west] 67 30 32 255 53 24 25 255 33 15 16 255 26 12 12 255 +minecraft:black_glazed_terracotta[facing=east] 67 30 32 255 53 24 25 255 33 15 16 255 26 12 12 255 +minecraft:white_concrete 207 213 214 255 165 170 171 255 103 106 107 255 82 85 85 255 +minecraft:orange_concrete 224 97 0 255 179 77 0 255 112 48 0 255 89 38 0 255 +minecraft:magenta_concrete 169 48 159 255 135 38 127 255 84 24 79 255 67 19 63 255 +minecraft:light_blue_concrete 35 137 198 255 28 109 158 255 17 68 99 255 14 54 79 255 +minecraft:yellow_concrete 240 175 21 255 192 140 16 255 120 87 10 255 96 70 8 255 +minecraft:lime_concrete 94 168 24 255 75 134 19 255 47 84 12 255 37 67 9 255 +minecraft:pink_concrete 213 101 142 255 170 80 113 255 106 50 71 255 85 40 56 255 +minecraft:gray_concrete 54 57 61 255 43 45 48 255 27 28 30 255 21 22 24 255 +minecraft:light_gray_concrete 125 125 115 255 100 100 92 255 62 62 57 255 50 50 46 255 +minecraft:cyan_concrete 21 119 136 255 16 95 108 255 10 59 68 255 8 47 54 255 +minecraft:purple_concrete 100 31 156 255 80 24 124 255 50 15 78 255 40 12 62 255 +minecraft:blue_concrete 44 46 143 255 35 36 114 255 22 23 71 255 17 18 57 255 +minecraft:brown_concrete 96 59 31 255 76 47 24 255 48 29 15 255 38 23 12 255 +minecraft:green_concrete 73 91 36 255 58 72 28 255 36 45 18 255 29 36 14 255 +minecraft:red_concrete 142 32 32 255 113 25 25 255 71 16 16 255 56 12 12 255 +minecraft:black_concrete 8 10 15 255 6 8 12 255 4 5 7 255 3 4 6 255 +minecraft:white_concrete_powder 225 227 227 255 180 181 181 255 112 113 113 255 90 90 90 255 +minecraft:orange_concrete_powder 227 131 31 255 181 104 24 255 113 65 15 255 90 52 12 255 +minecraft:magenta_concrete_powder 192 83 184 255 153 66 147 255 96 41 92 255 76 33 73 255 +minecraft:light_blue_concrete_powder 74 180 213 255 59 144 170 255 37 90 106 255 29 72 85 255 +minecraft:yellow_concrete_powder 232 199 54 255 185 159 43 255 116 99 27 255 92 79 21 255 +minecraft:lime_concrete_powder 125 189 41 255 100 151 32 255 62 94 20 255 50 75 16 255 +minecraft:pink_concrete_powder 228 153 181 255 182 122 144 255 114 76 90 255 91 61 72 255 +minecraft:gray_concrete_powder 76 81 84 255 60 64 67 255 38 40 42 255 30 32 33 255 +minecraft:light_gray_concrete_powder 154 154 148 255 123 123 118 255 77 77 74 255 61 61 59 255 +minecraft:cyan_concrete_powder 36 147 157 255 28 117 125 255 18 73 78 255 14 58 62 255 +minecraft:purple_concrete_powder 131 55 177 255 104 44 141 255 65 27 88 255 52 22 70 255 +minecraft:blue_concrete_powder 70 73 166 255 56 58 132 255 35 36 83 255 28 29 66 255 +minecraft:brown_concrete_powder 125 84 53 255 100 67 42 255 62 42 26 255 50 33 21 255 +minecraft:green_concrete_powder 97 119 44 255 77 95 35 255 48 59 22 255 38 47 17 255 +minecraft:red_concrete_powder 168 54 50 255 134 43 40 255 84 27 25 255 67 21 20 255 +minecraft:black_concrete_powder 25 26 31 255 20 20 24 255 12 13 15 255 10 10 12 255 +minecraft:kelp 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=1] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=2] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=3] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=4] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=5] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=6] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=7] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=8] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=9] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=10] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=11] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=12] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=13] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=14] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=15] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=16] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=17] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=18] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=19] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=20] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=21] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=22] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=23] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=24] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=25] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp_plant 40 97 14 100 32 77 11 100 20 48 7 100 16 38 5 100 +minecraft:dried_kelp_block 50 58 38 255 40 46 30 255 25 29 19 255 20 23 15 255 +minecraft:turtle_egg 228 226 191 132 182 180 152 132 114 113 95 132 91 90 76 132 +minecraft:turtle_egg[eggs=1,hatch=1] 218 214 177 132 174 171 141 132 109 107 88 132 87 85 70 132 +minecraft:turtle_egg[eggs=1,hatch=2] 207 203 165 132 165 162 132 132 103 101 82 132 82 81 66 132 +minecraft:turtle_egg[eggs=2,hatch=0] 228 226 191 132 182 180 152 132 114 113 95 132 91 90 76 132 +minecraft:turtle_egg[eggs=2,hatch=1] 218 214 177 132 174 171 141 132 109 107 88 132 87 85 70 132 +minecraft:turtle_egg[eggs=2,hatch=2] 207 203 165 132 165 162 132 132 103 101 82 132 82 81 66 132 +minecraft:turtle_egg[eggs=3,hatch=0] 228 226 191 132 182 180 152 132 114 113 95 132 91 90 76 132 +minecraft:turtle_egg[eggs=3,hatch=1] 218 214 177 132 174 171 141 132 109 107 88 132 87 85 70 132 +minecraft:turtle_egg[eggs=3,hatch=2] 207 203 165 132 165 162 132 132 103 101 82 132 82 81 66 132 +minecraft:turtle_egg[eggs=4,hatch=0] 228 226 191 132 182 180 152 132 114 113 95 132 91 90 76 132 +minecraft:turtle_egg[eggs=4,hatch=1] 218 214 177 132 174 171 141 132 109 107 88 132 87 85 70 132 +minecraft:turtle_egg[eggs=4,hatch=2] 207 203 165 132 165 162 132 132 103 101 82 132 82 81 66 132 +minecraft:dead_tube_coral_block 130 123 119 255 104 98 95 255 65 61 59 255 52 49 47 255 +minecraft:dead_brain_coral_block 124 117 114 255 99 93 91 255 62 58 57 255 49 46 45 255 +minecraft:dead_bubble_coral_block 131 123 119 255 104 98 95 255 65 61 59 255 52 49 47 255 +minecraft:dead_fire_coral_block 131 123 119 255 104 98 95 255 65 61 59 255 52 49 47 255 +minecraft:dead_horn_coral_block 133 126 122 255 106 100 97 255 66 63 61 255 53 50 48 255 +minecraft:tube_coral_block 49 87 206 255 39 69 164 255 24 43 103 255 19 34 82 255 +minecraft:brain_coral_block 207 91 159 255 165 72 127 255 103 45 79 255 82 36 63 255 +minecraft:bubble_coral_block 165 26 162 255 132 20 129 255 82 13 81 255 66 10 64 255 +minecraft:fire_coral_block 163 35 46 255 130 28 36 255 81 17 23 255 65 14 18 255 +minecraft:horn_coral_block 216 199 66 255 172 159 52 255 108 99 33 255 86 79 26 255 +minecraft:dead_tube_coral 118 111 107 152 94 88 85 152 59 55 53 152 47 44 42 152 +minecraft:dead_tube_coral[waterlogged=false] 118 111 107 152 94 88 85 152 59 55 53 152 47 44 42 152 +minecraft:dead_brain_coral 133 125 120 111 106 100 96 111 66 62 60 111 53 50 48 111 +minecraft:dead_brain_coral[waterlogged=false] 133 125 120 111 106 100 96 111 66 62 60 111 53 50 48 111 +minecraft:dead_bubble_coral 132 124 120 132 105 99 96 132 66 62 60 132 52 49 48 132 +minecraft:dead_bubble_coral[waterlogged=false] 132 124 120 132 105 99 96 132 66 62 60 132 52 49 48 132 +minecraft:dead_fire_coral 136 128 124 108 108 102 99 108 68 64 62 108 54 51 49 108 +minecraft:dead_fire_coral[waterlogged=false] 136 128 124 108 108 102 99 108 68 64 62 108 54 51 49 108 +minecraft:dead_horn_coral 142 135 129 99 113 108 103 99 71 67 64 99 56 54 51 99 +minecraft:dead_horn_coral[waterlogged=false] 142 135 129 99 113 108 103 99 71 67 64 99 56 54 51 99 +minecraft:tube_coral 47 83 197 152 37 66 157 152 23 41 98 152 18 33 78 152 +minecraft:tube_coral[waterlogged=false] 47 83 197 152 37 66 157 152 23 41 98 152 18 33 78 152 +minecraft:brain_coral 197 84 152 111 157 67 121 111 98 42 76 111 78 33 60 111 +minecraft:brain_coral[waterlogged=false] 197 84 152 111 157 67 121 111 98 42 76 111 78 33 60 111 +minecraft:bubble_coral 161 23 159 132 128 18 127 132 80 11 79 132 64 9 63 132 +minecraft:bubble_coral[waterlogged=false] 161 23 159 132 128 18 127 132 80 11 79 132 64 9 63 132 +minecraft:fire_coral 166 37 46 108 132 29 36 108 83 18 23 108 66 14 18 108 +minecraft:fire_coral[waterlogged=false] 166 37 46 108 132 29 36 108 83 18 23 108 66 14 18 108 +minecraft:horn_coral 209 186 62 99 167 148 49 99 104 93 31 99 83 74 24 99 +minecraft:horn_coral[waterlogged=false] 209 186 62 99 167 148 49 99 104 93 31 99 83 74 24 99 +minecraft:dead_tube_coral_fan 128 122 118 78 102 97 94 78 64 61 59 78 51 48 47 78 +minecraft:dead_tube_coral_fan[waterlogged=false] 128 122 118 78 102 97 94 78 64 61 59 78 51 48 47 78 +minecraft:dead_brain_coral_fan 132 125 121 94 105 100 96 94 66 62 60 94 52 50 48 94 +minecraft:dead_brain_coral_fan[waterlogged=false] 132 125 121 94 105 100 96 94 66 62 60 94 52 50 48 94 +minecraft:dead_bubble_coral_fan 140 134 130 111 112 107 104 111 70 67 65 111 56 53 52 111 +minecraft:dead_bubble_coral_fan[waterlogged=false] 140 134 130 111 112 107 104 111 70 67 65 111 56 53 52 111 +minecraft:dead_fire_coral_fan 124 118 114 104 99 94 91 104 62 59 57 104 49 47 45 104 +minecraft:dead_fire_coral_fan[waterlogged=false] 124 118 114 104 99 94 91 104 62 59 57 104 49 47 45 104 +minecraft:dead_horn_coral_fan 134 125 121 93 107 100 96 93 67 62 60 93 53 50 48 93 +minecraft:dead_horn_coral_fan[waterlogged=false] 134 125 121 93 107 100 96 93 67 62 60 93 53 50 48 93 +minecraft:tube_coral_fan 50 91 208 78 40 72 166 78 25 45 104 78 20 36 83 78 +minecraft:tube_coral_fan[waterlogged=false] 50 91 208 78 40 72 166 78 25 45 104 78 20 36 83 78 +minecraft:brain_coral_fan 202 84 153 94 161 67 122 94 101 42 76 94 80 33 61 94 +minecraft:brain_coral_fan[waterlogged=false] 202 84 153 94 161 67 122 94 101 42 76 94 80 33 61 94 +minecraft:bubble_coral_fan 160 32 159 111 128 25 127 111 80 16 79 111 64 12 63 111 +minecraft:bubble_coral_fan[waterlogged=false] 160 32 159 111 128 25 127 111 80 16 79 111 64 12 63 111 +minecraft:fire_coral_fan 158 34 45 104 126 27 36 104 79 17 22 104 63 13 18 104 +minecraft:fire_coral_fan[waterlogged=false] 158 34 45 104 126 27 36 104 79 17 22 104 63 13 18 104 +minecraft:horn_coral_fan 205 183 61 93 164 146 48 93 102 91 30 93 82 73 24 93 +minecraft:horn_coral_fan[waterlogged=false] 205 183 61 93 164 146 48 93 102 91 30 93 82 73 24 93 +minecraft:dead_tube_coral_wall_fan 128 122 118 78 102 97 94 78 64 61 59 78 51 48 47 78 +minecraft:dead_tube_coral_wall_fan[facing=north,waterlogged=false] 128 122 118 78 102 97 94 78 64 61 59 78 51 48 47 78 +minecraft:dead_tube_coral_wall_fan[facing=south,waterlogged=true] 128 122 118 78 102 97 94 78 64 61 59 78 51 48 47 78 +minecraft:dead_tube_coral_wall_fan[facing=south,waterlogged=false] 128 122 118 78 102 97 94 78 64 61 59 78 51 48 47 78 +minecraft:dead_tube_coral_wall_fan[facing=west,waterlogged=true] 128 122 118 78 102 97 94 78 64 61 59 78 51 48 47 78 +minecraft:dead_tube_coral_wall_fan[facing=west,waterlogged=false] 128 122 118 78 102 97 94 78 64 61 59 78 51 48 47 78 +minecraft:dead_tube_coral_wall_fan[facing=east,waterlogged=true] 128 122 118 78 102 97 94 78 64 61 59 78 51 48 47 78 +minecraft:dead_tube_coral_wall_fan[facing=east,waterlogged=false] 128 122 118 78 102 97 94 78 64 61 59 78 51 48 47 78 +minecraft:dead_brain_coral_wall_fan 132 125 121 94 105 100 96 94 66 62 60 94 52 50 48 94 +minecraft:dead_brain_coral_wall_fan[facing=north,waterlogged=false] 132 125 121 94 105 100 96 94 66 62 60 94 52 50 48 94 +minecraft:dead_brain_coral_wall_fan[facing=south,waterlogged=true] 132 125 121 94 105 100 96 94 66 62 60 94 52 50 48 94 +minecraft:dead_brain_coral_wall_fan[facing=south,waterlogged=false] 132 125 121 94 105 100 96 94 66 62 60 94 52 50 48 94 +minecraft:dead_brain_coral_wall_fan[facing=west,waterlogged=true] 132 125 121 94 105 100 96 94 66 62 60 94 52 50 48 94 +minecraft:dead_brain_coral_wall_fan[facing=west,waterlogged=false] 132 125 121 94 105 100 96 94 66 62 60 94 52 50 48 94 +minecraft:dead_brain_coral_wall_fan[facing=east,waterlogged=true] 132 125 121 94 105 100 96 94 66 62 60 94 52 50 48 94 +minecraft:dead_brain_coral_wall_fan[facing=east,waterlogged=false] 132 125 121 94 105 100 96 94 66 62 60 94 52 50 48 94 +minecraft:dead_bubble_coral_wall_fan 140 134 130 111 112 107 104 111 70 67 65 111 56 53 52 111 +minecraft:dead_bubble_coral_wall_fan[facing=north,waterlogged=false] 140 134 130 111 112 107 104 111 70 67 65 111 56 53 52 111 +minecraft:dead_bubble_coral_wall_fan[facing=south,waterlogged=true] 140 134 130 111 112 107 104 111 70 67 65 111 56 53 52 111 +minecraft:dead_bubble_coral_wall_fan[facing=south,waterlogged=false] 140 134 130 111 112 107 104 111 70 67 65 111 56 53 52 111 +minecraft:dead_bubble_coral_wall_fan[facing=west,waterlogged=true] 140 134 130 111 112 107 104 111 70 67 65 111 56 53 52 111 +minecraft:dead_bubble_coral_wall_fan[facing=west,waterlogged=false] 140 134 130 111 112 107 104 111 70 67 65 111 56 53 52 111 +minecraft:dead_bubble_coral_wall_fan[facing=east,waterlogged=true] 140 134 130 111 112 107 104 111 70 67 65 111 56 53 52 111 +minecraft:dead_bubble_coral_wall_fan[facing=east,waterlogged=false] 140 134 130 111 112 107 104 111 70 67 65 111 56 53 52 111 +minecraft:dead_fire_coral_wall_fan 124 118 114 104 99 94 91 104 62 59 57 104 49 47 45 104 +minecraft:dead_fire_coral_wall_fan[facing=north,waterlogged=false] 124 118 114 104 99 94 91 104 62 59 57 104 49 47 45 104 +minecraft:dead_fire_coral_wall_fan[facing=south,waterlogged=true] 124 118 114 104 99 94 91 104 62 59 57 104 49 47 45 104 +minecraft:dead_fire_coral_wall_fan[facing=south,waterlogged=false] 124 118 114 104 99 94 91 104 62 59 57 104 49 47 45 104 +minecraft:dead_fire_coral_wall_fan[facing=west,waterlogged=true] 124 118 114 104 99 94 91 104 62 59 57 104 49 47 45 104 +minecraft:dead_fire_coral_wall_fan[facing=west,waterlogged=false] 124 118 114 104 99 94 91 104 62 59 57 104 49 47 45 104 +minecraft:dead_fire_coral_wall_fan[facing=east,waterlogged=true] 124 118 114 104 99 94 91 104 62 59 57 104 49 47 45 104 +minecraft:dead_fire_coral_wall_fan[facing=east,waterlogged=false] 124 118 114 104 99 94 91 104 62 59 57 104 49 47 45 104 +minecraft:dead_horn_coral_wall_fan 134 125 121 93 107 100 96 93 67 62 60 93 53 50 48 93 +minecraft:dead_horn_coral_wall_fan[facing=north,waterlogged=false] 134 125 121 93 107 100 96 93 67 62 60 93 53 50 48 93 +minecraft:dead_horn_coral_wall_fan[facing=south,waterlogged=true] 134 125 121 93 107 100 96 93 67 62 60 93 53 50 48 93 +minecraft:dead_horn_coral_wall_fan[facing=south,waterlogged=false] 134 125 121 93 107 100 96 93 67 62 60 93 53 50 48 93 +minecraft:dead_horn_coral_wall_fan[facing=west,waterlogged=true] 134 125 121 93 107 100 96 93 67 62 60 93 53 50 48 93 +minecraft:dead_horn_coral_wall_fan[facing=west,waterlogged=false] 134 125 121 93 107 100 96 93 67 62 60 93 53 50 48 93 +minecraft:dead_horn_coral_wall_fan[facing=east,waterlogged=true] 134 125 121 93 107 100 96 93 67 62 60 93 53 50 48 93 +minecraft:dead_horn_coral_wall_fan[facing=east,waterlogged=false] 134 125 121 93 107 100 96 93 67 62 60 93 53 50 48 93 +minecraft:tube_coral_wall_fan 50 91 208 78 40 72 166 78 25 45 104 78 20 36 83 78 +minecraft:tube_coral_wall_fan[facing=north,waterlogged=false] 50 91 208 78 40 72 166 78 25 45 104 78 20 36 83 78 +minecraft:tube_coral_wall_fan[facing=south,waterlogged=true] 50 91 208 78 40 72 166 78 25 45 104 78 20 36 83 78 +minecraft:tube_coral_wall_fan[facing=south,waterlogged=false] 50 91 208 78 40 72 166 78 25 45 104 78 20 36 83 78 +minecraft:tube_coral_wall_fan[facing=west,waterlogged=true] 50 91 208 78 40 72 166 78 25 45 104 78 20 36 83 78 +minecraft:tube_coral_wall_fan[facing=west,waterlogged=false] 50 91 208 78 40 72 166 78 25 45 104 78 20 36 83 78 +minecraft:tube_coral_wall_fan[facing=east,waterlogged=true] 50 91 208 78 40 72 166 78 25 45 104 78 20 36 83 78 +minecraft:tube_coral_wall_fan[facing=east,waterlogged=false] 50 91 208 78 40 72 166 78 25 45 104 78 20 36 83 78 +minecraft:brain_coral_wall_fan 202 84 153 94 161 67 122 94 101 42 76 94 80 33 61 94 +minecraft:brain_coral_wall_fan[facing=north,waterlogged=false] 202 84 153 94 161 67 122 94 101 42 76 94 80 33 61 94 +minecraft:brain_coral_wall_fan[facing=south,waterlogged=true] 202 84 153 94 161 67 122 94 101 42 76 94 80 33 61 94 +minecraft:brain_coral_wall_fan[facing=south,waterlogged=false] 202 84 153 94 161 67 122 94 101 42 76 94 80 33 61 94 +minecraft:brain_coral_wall_fan[facing=west,waterlogged=true] 202 84 153 94 161 67 122 94 101 42 76 94 80 33 61 94 +minecraft:brain_coral_wall_fan[facing=west,waterlogged=false] 202 84 153 94 161 67 122 94 101 42 76 94 80 33 61 94 +minecraft:brain_coral_wall_fan[facing=east,waterlogged=true] 202 84 153 94 161 67 122 94 101 42 76 94 80 33 61 94 +minecraft:brain_coral_wall_fan[facing=east,waterlogged=false] 202 84 153 94 161 67 122 94 101 42 76 94 80 33 61 94 +minecraft:bubble_coral_wall_fan 160 32 159 111 128 25 127 111 80 16 79 111 64 12 63 111 +minecraft:bubble_coral_wall_fan[facing=north,waterlogged=false] 160 32 159 111 128 25 127 111 80 16 79 111 64 12 63 111 +minecraft:bubble_coral_wall_fan[facing=south,waterlogged=true] 160 32 159 111 128 25 127 111 80 16 79 111 64 12 63 111 +minecraft:bubble_coral_wall_fan[facing=south,waterlogged=false] 160 32 159 111 128 25 127 111 80 16 79 111 64 12 63 111 +minecraft:bubble_coral_wall_fan[facing=west,waterlogged=true] 160 32 159 111 128 25 127 111 80 16 79 111 64 12 63 111 +minecraft:bubble_coral_wall_fan[facing=west,waterlogged=false] 160 32 159 111 128 25 127 111 80 16 79 111 64 12 63 111 +minecraft:bubble_coral_wall_fan[facing=east,waterlogged=true] 160 32 159 111 128 25 127 111 80 16 79 111 64 12 63 111 +minecraft:bubble_coral_wall_fan[facing=east,waterlogged=false] 160 32 159 111 128 25 127 111 80 16 79 111 64 12 63 111 +minecraft:fire_coral_wall_fan 158 34 45 104 126 27 36 104 79 17 22 104 63 13 18 104 +minecraft:fire_coral_wall_fan[facing=north,waterlogged=false] 158 34 45 104 126 27 36 104 79 17 22 104 63 13 18 104 +minecraft:fire_coral_wall_fan[facing=south,waterlogged=true] 158 34 45 104 126 27 36 104 79 17 22 104 63 13 18 104 +minecraft:fire_coral_wall_fan[facing=south,waterlogged=false] 158 34 45 104 126 27 36 104 79 17 22 104 63 13 18 104 +minecraft:fire_coral_wall_fan[facing=west,waterlogged=true] 158 34 45 104 126 27 36 104 79 17 22 104 63 13 18 104 +minecraft:fire_coral_wall_fan[facing=west,waterlogged=false] 158 34 45 104 126 27 36 104 79 17 22 104 63 13 18 104 +minecraft:fire_coral_wall_fan[facing=east,waterlogged=true] 158 34 45 104 126 27 36 104 79 17 22 104 63 13 18 104 +minecraft:fire_coral_wall_fan[facing=east,waterlogged=false] 158 34 45 104 126 27 36 104 79 17 22 104 63 13 18 104 +minecraft:horn_coral_wall_fan 205 183 61 93 164 146 48 93 102 91 30 93 82 73 24 93 +minecraft:horn_coral_wall_fan[facing=north,waterlogged=false] 205 183 61 93 164 146 48 93 102 91 30 93 82 73 24 93 +minecraft:horn_coral_wall_fan[facing=south,waterlogged=true] 205 183 61 93 164 146 48 93 102 91 30 93 82 73 24 93 +minecraft:horn_coral_wall_fan[facing=south,waterlogged=false] 205 183 61 93 164 146 48 93 102 91 30 93 82 73 24 93 +minecraft:horn_coral_wall_fan[facing=west,waterlogged=true] 205 183 61 93 164 146 48 93 102 91 30 93 82 73 24 93 +minecraft:horn_coral_wall_fan[facing=west,waterlogged=false] 205 183 61 93 164 146 48 93 102 91 30 93 82 73 24 93 +minecraft:horn_coral_wall_fan[facing=east,waterlogged=true] 205 183 61 93 164 146 48 93 102 91 30 93 82 73 24 93 +minecraft:horn_coral_wall_fan[facing=east,waterlogged=false] 205 183 61 93 164 146 48 93 102 91 30 93 82 73 24 93 +minecraft:sea_pickle 90 97 39 215 72 77 31 215 45 48 19 215 36 38 15 215 +minecraft:sea_pickle[pickles=1,waterlogged=false] 90 97 39 215 72 77 31 215 45 48 19 215 36 38 15 215 +minecraft:sea_pickle[pickles=2,waterlogged=true] 90 97 39 215 72 77 31 215 45 48 19 215 36 38 15 215 +minecraft:sea_pickle[pickles=2,waterlogged=false] 90 97 39 215 72 77 31 215 45 48 19 215 36 38 15 215 +minecraft:sea_pickle[pickles=3,waterlogged=true] 90 97 39 215 72 77 31 215 45 48 19 215 36 38 15 215 +minecraft:sea_pickle[pickles=3,waterlogged=false] 90 97 39 215 72 77 31 215 45 48 19 215 36 38 15 215 +minecraft:sea_pickle[pickles=4,waterlogged=true] 90 97 39 215 72 77 31 215 45 48 19 215 36 38 15 215 +minecraft:sea_pickle[pickles=4,waterlogged=false] 90 97 39 215 72 77 31 215 45 48 19 215 36 38 15 215 +minecraft:blue_ice 116 167 253 255 92 133 202 255 58 83 126 255 46 66 101 255 +minecraft:conduit 159 139 113 143 127 111 90 143 79 69 56 143 63 55 45 143 +minecraft:conduit[waterlogged=false] 159 139 113 143 127 111 90 143 79 69 56 143 63 55 45 143 +minecraft:bamboo_sapling 92 89 35 54 73 71 28 54 46 44 17 54 36 35 14 54 +minecraft:bamboo 93 144 19 255 74 115 15 255 46 72 9 255 37 57 7 255 +minecraft:bamboo[age=0,leaves=none,stage=1] 93 144 19 255 74 115 15 255 46 72 9 255 37 57 7 255 +minecraft:bamboo[age=0,leaves=small,stage=0] 93 144 19 255 74 115 15 255 46 72 9 255 37 57 7 255 +minecraft:bamboo[age=0,leaves=small,stage=1] 93 144 19 255 74 115 15 255 46 72 9 255 37 57 7 255 +minecraft:bamboo[age=0,leaves=large,stage=0] 93 144 19 255 74 115 15 255 46 72 9 255 37 57 7 255 +minecraft:bamboo[age=0,leaves=large,stage=1] 93 144 19 255 74 115 15 255 46 72 9 255 37 57 7 255 +minecraft:bamboo[age=1,leaves=none,stage=0] 93 144 19 255 74 115 15 255 46 72 9 255 37 57 7 255 +minecraft:bamboo[age=1,leaves=none,stage=1] 93 144 19 255 74 115 15 255 46 72 9 255 37 57 7 255 +minecraft:bamboo[age=1,leaves=small,stage=0] 93 144 19 255 74 115 15 255 46 72 9 255 37 57 7 255 +minecraft:bamboo[age=1,leaves=small,stage=1] 93 144 19 255 74 115 15 255 46 72 9 255 37 57 7 255 +minecraft:bamboo[age=1,leaves=large,stage=0] 93 144 19 255 74 115 15 255 46 72 9 255 37 57 7 255 +minecraft:bamboo[age=1,leaves=large,stage=1] 93 144 19 255 74 115 15 255 46 72 9 255 37 57 7 255 +minecraft:potted_bamboo 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:polished_granite_stairs 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=top,shape=straight,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=top,shape=straight,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=top,shape=straight,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=top,shape=straight,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=top,shape=straight,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=top,shape=straight,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=top,shape=straight,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:smooth_red_sandstone_stairs 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=straight,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:mossy_stone_brick_stairs 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:polished_diorite_stairs 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=top,shape=straight,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=top,shape=straight,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=top,shape=straight,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=top,shape=straight,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=top,shape=straight,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=top,shape=straight,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=top,shape=straight,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:mossy_cobblestone_stairs 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=straight,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=straight,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=straight,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=straight,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=straight,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=straight,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=straight,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:end_stone_brick_stairs 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:stone_stairs 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=top,shape=straight,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=top,shape=straight,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=top,shape=straight,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=top,shape=straight,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=top,shape=straight,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=top,shape=straight,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=top,shape=straight,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:smooth_sandstone_stairs 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=straight,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_quartz_stairs 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=top,shape=straight,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=top,shape=straight,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=top,shape=straight,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=top,shape=straight,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=top,shape=straight,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=top,shape=straight,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=top,shape=straight,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:granite_stairs 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=top,shape=straight,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=top,shape=straight,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=top,shape=straight,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=top,shape=straight,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=top,shape=straight,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=top,shape=straight,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=top,shape=straight,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:andesite_stairs 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=top,shape=straight,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=top,shape=straight,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=top,shape=straight,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=top,shape=straight,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=top,shape=straight,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=top,shape=straight,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=top,shape=straight,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:red_nether_brick_stairs 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:polished_andesite_stairs 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=top,shape=straight,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=top,shape=straight,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=top,shape=straight,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=top,shape=straight,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=top,shape=straight,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=top,shape=straight,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=top,shape=straight,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:diorite_stairs 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=top,shape=straight,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=top,shape=straight,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=top,shape=straight,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=top,shape=straight,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=top,shape=straight,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=top,shape=straight,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=top,shape=straight,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:polished_granite_slab 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_slab[type=top,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_slab[type=bottom,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_slab[type=bottom,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_slab[type=double,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_slab[type=double,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:smooth_red_sandstone_slab 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_slab[type=top,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_slab[type=bottom,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_slab[type=bottom,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_slab[type=double,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_slab[type=double,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:mossy_stone_brick_slab 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_slab[type=top,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_slab[type=bottom,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_slab[type=bottom,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_slab[type=double,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_slab[type=double,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:polished_diorite_slab 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_slab[type=top,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_slab[type=bottom,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_slab[type=bottom,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_slab[type=double,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_slab[type=double,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:mossy_cobblestone_slab 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_slab[type=top,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_slab[type=bottom,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_slab[type=bottom,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_slab[type=double,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_slab[type=double,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:end_stone_brick_slab 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_slab[type=top,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_slab[type=bottom,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_slab[type=bottom,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_slab[type=double,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_slab[type=double,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:smooth_sandstone_slab 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_slab[type=top,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_slab[type=bottom,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_slab[type=bottom,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_slab[type=double,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_slab[type=double,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_quartz_slab 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_slab[type=top,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_slab[type=bottom,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_slab[type=bottom,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_slab[type=double,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_slab[type=double,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:granite_slab 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_slab[type=top,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_slab[type=bottom,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_slab[type=bottom,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_slab[type=double,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_slab[type=double,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:andesite_slab 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_slab[type=top,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_slab[type=bottom,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_slab[type=bottom,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_slab[type=double,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_slab[type=double,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:red_nether_brick_slab 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_slab[type=top,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_slab[type=bottom,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_slab[type=bottom,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_slab[type=double,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_slab[type=double,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:polished_andesite_slab 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_slab[type=top,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_slab[type=bottom,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_slab[type=bottom,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_slab[type=double,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_slab[type=double,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:diorite_slab 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_slab[type=top,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_slab[type=bottom,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_slab[type=bottom,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_slab[type=double,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_slab[type=double,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:brick_wall 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:prismarine_wall 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:red_sandstone_wall 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:mossy_stone_brick_wall 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:granite_wall 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:stone_brick_wall 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:nether_brick_wall 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:andesite_wall 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:red_nether_brick_wall 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:sandstone_wall 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:end_stone_brick_wall 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:diorite_wall 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:scaffolding 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=true,distance=0,waterlogged=false] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=true,distance=1,waterlogged=true] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=true,distance=1,waterlogged=false] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=true,distance=2,waterlogged=true] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=true,distance=2,waterlogged=false] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=true,distance=3,waterlogged=true] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=true,distance=3,waterlogged=false] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=true,distance=4,waterlogged=true] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=true,distance=4,waterlogged=false] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=true,distance=5,waterlogged=true] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=true,distance=5,waterlogged=false] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=true,distance=6,waterlogged=true] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=true,distance=6,waterlogged=false] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=true,distance=7,waterlogged=true] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=true,distance=7,waterlogged=false] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=false,distance=0,waterlogged=true] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=false,distance=0,waterlogged=false] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=false,distance=1,waterlogged=true] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=false,distance=1,waterlogged=false] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=false,distance=2,waterlogged=true] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=false,distance=2,waterlogged=false] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=false,distance=3,waterlogged=true] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=false,distance=3,waterlogged=false] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=false,distance=4,waterlogged=true] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=false,distance=4,waterlogged=false] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=false,distance=5,waterlogged=true] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=false,distance=5,waterlogged=false] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=false,distance=6,waterlogged=true] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=false,distance=6,waterlogged=false] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=false,distance=7,waterlogged=true] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=false,distance=7,waterlogged=false] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:loom 76 60 36 255 60 48 28 255 38 30 18 255 30 24 14 255 +minecraft:loom[facing=south] 76 60 36 255 60 48 28 255 38 30 18 255 30 24 14 255 +minecraft:loom[facing=west] 76 60 36 255 60 48 28 255 38 30 18 255 30 24 14 255 +minecraft:loom[facing=east] 76 60 36 255 60 48 28 255 38 30 18 255 30 24 14 255 +minecraft:barrel 121 89 51 255 96 71 40 255 60 44 25 255 48 35 20 255 +minecraft:barrel[facing=north,open=false] 121 89 51 255 96 71 40 255 60 44 25 255 48 35 20 255 +minecraft:barrel[facing=east,open=true] 121 89 51 255 96 71 40 255 60 44 25 255 48 35 20 255 +minecraft:barrel[facing=east,open=false] 121 89 51 255 96 71 40 255 60 44 25 255 48 35 20 255 +minecraft:barrel[facing=south,open=true] 121 89 51 255 96 71 40 255 60 44 25 255 48 35 20 255 +minecraft:barrel[facing=south,open=false] 121 89 51 255 96 71 40 255 60 44 25 255 48 35 20 255 +minecraft:barrel[facing=west,open=true] 121 89 51 255 96 71 40 255 60 44 25 255 48 35 20 255 +minecraft:barrel[facing=west,open=false] 121 89 51 255 96 71 40 255 60 44 25 255 48 35 20 255 +minecraft:barrel[facing=up,open=true] 121 89 51 255 96 71 40 255 60 44 25 255 48 35 20 255 +minecraft:barrel[facing=up,open=false] 121 89 51 255 96 71 40 255 60 44 25 255 48 35 20 255 +minecraft:barrel[facing=down,open=true] 121 89 51 255 96 71 40 255 60 44 25 255 48 35 20 255 +minecraft:barrel[facing=down,open=false] 121 89 51 255 96 71 40 255 60 44 25 255 48 35 20 255 +minecraft:smoker 107 105 103 255 85 84 82 255 53 52 51 255 42 42 41 255 +minecraft:smoker[facing=north,lit=false] 107 105 103 255 85 84 82 255 53 52 51 255 42 42 41 255 +minecraft:smoker[facing=south,lit=true] 107 105 103 255 85 84 82 255 53 52 51 255 42 42 41 255 +minecraft:smoker[facing=south,lit=false] 107 105 103 255 85 84 82 255 53 52 51 255 42 42 41 255 +minecraft:smoker[facing=west,lit=true] 107 105 103 255 85 84 82 255 53 52 51 255 42 42 41 255 +minecraft:smoker[facing=west,lit=false] 107 105 103 255 85 84 82 255 53 52 51 255 42 42 41 255 +minecraft:smoker[facing=east,lit=true] 107 105 103 255 85 84 82 255 53 52 51 255 42 42 41 255 +minecraft:smoker[facing=east,lit=false] 107 105 103 255 85 84 82 255 53 52 51 255 42 42 41 255 +minecraft:blast_furnace 80 80 81 255 64 64 64 255 40 40 40 255 32 32 32 255 +minecraft:blast_furnace[facing=north,lit=false] 80 80 81 255 64 64 64 255 40 40 40 255 32 32 32 255 +minecraft:blast_furnace[facing=south,lit=true] 80 80 81 255 64 64 64 255 40 40 40 255 32 32 32 255 +minecraft:blast_furnace[facing=south,lit=false] 80 80 81 255 64 64 64 255 40 40 40 255 32 32 32 255 +minecraft:blast_furnace[facing=west,lit=true] 80 80 81 255 64 64 64 255 40 40 40 255 32 32 32 255 +minecraft:blast_furnace[facing=west,lit=false] 80 80 81 255 64 64 64 255 40 40 40 255 32 32 32 255 +minecraft:blast_furnace[facing=east,lit=true] 80 80 81 255 64 64 64 255 40 40 40 255 32 32 32 255 +minecraft:blast_furnace[facing=east,lit=false] 80 80 81 255 64 64 64 255 40 40 40 255 32 32 32 255 +minecraft:cartography_table 104 87 67 255 83 69 53 255 52 43 33 255 41 34 26 255 +minecraft:fletching_table 197 180 133 255 157 144 106 255 98 90 66 255 78 72 53 255 +minecraft:grindstone 60 46 26 255 48 36 20 255 30 23 13 255 24 18 10 255 +minecraft:grindstone[face=floor,facing=south] 60 46 26 255 48 36 20 255 30 23 13 255 24 18 10 255 +minecraft:grindstone[face=floor,facing=west] 60 46 26 255 48 36 20 255 30 23 13 255 24 18 10 255 +minecraft:grindstone[face=floor,facing=east] 60 46 26 255 48 36 20 255 30 23 13 255 24 18 10 255 +minecraft:grindstone[face=wall,facing=north] 60 46 26 255 48 36 20 255 30 23 13 255 24 18 10 255 +minecraft:grindstone[face=wall,facing=south] 60 46 26 255 48 36 20 255 30 23 13 255 24 18 10 255 +minecraft:grindstone[face=wall,facing=west] 60 46 26 255 48 36 20 255 30 23 13 255 24 18 10 255 +minecraft:grindstone[face=wall,facing=east] 60 46 26 255 48 36 20 255 30 23 13 255 24 18 10 255 +minecraft:grindstone[face=ceiling,facing=north] 60 46 26 255 48 36 20 255 30 23 13 255 24 18 10 255 +minecraft:grindstone[face=ceiling,facing=south] 60 46 26 255 48 36 20 255 30 23 13 255 24 18 10 255 +minecraft:grindstone[face=ceiling,facing=west] 60 46 26 255 48 36 20 255 30 23 13 255 24 18 10 255 +minecraft:grindstone[face=ceiling,facing=east] 60 46 26 255 48 36 20 255 30 23 13 255 24 18 10 255 +minecraft:lectern 173 137 83 255 138 109 66 255 86 68 41 255 69 54 33 255 +minecraft:lectern[facing=north,has_book=true,powered=false] 173 137 83 255 138 109 66 255 86 68 41 255 69 54 33 255 +minecraft:lectern[facing=north,has_book=false,powered=true] 173 137 83 255 138 109 66 255 86 68 41 255 69 54 33 255 +minecraft:lectern[facing=north,has_book=false,powered=false] 173 137 83 255 138 109 66 255 86 68 41 255 69 54 33 255 +minecraft:lectern[facing=south,has_book=true,powered=true] 173 137 83 255 138 109 66 255 86 68 41 255 69 54 33 255 +minecraft:lectern[facing=south,has_book=true,powered=false] 173 137 83 255 138 109 66 255 86 68 41 255 69 54 33 255 +minecraft:lectern[facing=south,has_book=false,powered=true] 173 137 83 255 138 109 66 255 86 68 41 255 69 54 33 255 +minecraft:lectern[facing=south,has_book=false,powered=false] 173 137 83 255 138 109 66 255 86 68 41 255 69 54 33 255 +minecraft:lectern[facing=west,has_book=true,powered=true] 173 137 83 255 138 109 66 255 86 68 41 255 69 54 33 255 +minecraft:lectern[facing=west,has_book=true,powered=false] 173 137 83 255 138 109 66 255 86 68 41 255 69 54 33 255 +minecraft:lectern[facing=west,has_book=false,powered=true] 173 137 83 255 138 109 66 255 86 68 41 255 69 54 33 255 +minecraft:lectern[facing=west,has_book=false,powered=false] 173 137 83 255 138 109 66 255 86 68 41 255 69 54 33 255 +minecraft:lectern[facing=east,has_book=true,powered=true] 173 137 83 255 138 109 66 255 86 68 41 255 69 54 33 255 +minecraft:lectern[facing=east,has_book=true,powered=false] 173 137 83 255 138 109 66 255 86 68 41 255 69 54 33 255 +minecraft:lectern[facing=east,has_book=false,powered=true] 173 137 83 255 138 109 66 255 86 68 41 255 69 54 33 255 +minecraft:lectern[facing=east,has_book=false,powered=false] 173 137 83 255 138 109 66 255 86 68 41 255 69 54 33 255 +minecraft:smithing_table 57 58 70 255 45 46 56 255 28 29 35 255 22 23 28 255 +minecraft:stonecutter 118 117 118 255 94 93 94 255 59 58 59 255 47 46 47 255 +minecraft:stonecutter[facing=south] 118 117 118 255 94 93 94 255 59 58 59 255 47 46 47 255 +minecraft:stonecutter[facing=west] 118 117 118 255 94 93 94 255 59 58 59 255 47 46 47 255 +minecraft:stonecutter[facing=east] 118 117 118 255 94 93 94 255 59 58 59 255 47 46 47 255 +minecraft:bell 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=floor,facing=north,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=floor,facing=south,powered=true] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=floor,facing=south,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=floor,facing=west,powered=true] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=floor,facing=west,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=floor,facing=east,powered=true] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=floor,facing=east,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=ceiling,facing=north,powered=true] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=ceiling,facing=north,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=ceiling,facing=south,powered=true] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=ceiling,facing=south,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=ceiling,facing=west,powered=true] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=ceiling,facing=west,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=ceiling,facing=east,powered=true] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=ceiling,facing=east,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=single_wall,facing=north,powered=true] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=single_wall,facing=north,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=single_wall,facing=south,powered=true] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=single_wall,facing=south,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=single_wall,facing=west,powered=true] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=single_wall,facing=west,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=single_wall,facing=east,powered=true] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=single_wall,facing=east,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=double_wall,facing=north,powered=true] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=double_wall,facing=north,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=double_wall,facing=south,powered=true] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=double_wall,facing=south,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=double_wall,facing=west,powered=true] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=double_wall,facing=west,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=double_wall,facing=east,powered=true] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=double_wall,facing=east,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:lantern 56 62 79 6 44 49 63 6 28 31 39 6 22 24 31 6 +minecraft:lantern[hanging=true,waterlogged=false] 56 62 79 6 44 49 63 6 28 31 39 6 22 24 31 6 +minecraft:lantern[hanging=false,waterlogged=true] 56 62 79 6 44 49 63 6 28 31 39 6 22 24 31 6 +minecraft:lantern[hanging=false,waterlogged=false] 56 62 79 6 44 49 63 6 28 31 39 6 22 24 31 6 +minecraft:soul_lantern 56 62 79 6 44 49 63 6 28 31 39 6 22 24 31 6 +minecraft:soul_lantern[hanging=true,waterlogged=false] 56 62 79 6 44 49 63 6 28 31 39 6 22 24 31 6 +minecraft:soul_lantern[hanging=false,waterlogged=true] 56 62 79 6 44 49 63 6 28 31 39 6 22 24 31 6 +minecraft:soul_lantern[hanging=false,waterlogged=false] 56 62 79 6 44 49 63 6 28 31 39 6 22 24 31 6 +minecraft:campfire 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=north,lit=true,signal_fire=true,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=north,lit=true,signal_fire=false,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=north,lit=true,signal_fire=false,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=north,lit=false,signal_fire=true,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=north,lit=false,signal_fire=true,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=north,lit=false,signal_fire=false,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=north,lit=false,signal_fire=false,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=south,lit=true,signal_fire=true,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=south,lit=true,signal_fire=true,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=south,lit=true,signal_fire=false,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=south,lit=true,signal_fire=false,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=south,lit=false,signal_fire=true,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=south,lit=false,signal_fire=true,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=south,lit=false,signal_fire=false,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=south,lit=false,signal_fire=false,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=west,lit=true,signal_fire=true,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=west,lit=true,signal_fire=true,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=west,lit=true,signal_fire=false,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=west,lit=true,signal_fire=false,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=west,lit=false,signal_fire=true,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=west,lit=false,signal_fire=true,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=west,lit=false,signal_fire=false,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=west,lit=false,signal_fire=false,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=east,lit=true,signal_fire=true,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=east,lit=true,signal_fire=true,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=east,lit=true,signal_fire=false,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=east,lit=true,signal_fire=false,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=east,lit=false,signal_fire=true,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=east,lit=false,signal_fire=true,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=east,lit=false,signal_fire=false,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=east,lit=false,signal_fire=false,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=north,lit=true,signal_fire=true,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=north,lit=true,signal_fire=false,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=north,lit=true,signal_fire=false,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=north,lit=false,signal_fire=true,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=north,lit=false,signal_fire=true,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=north,lit=false,signal_fire=false,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=north,lit=false,signal_fire=false,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=south,lit=true,signal_fire=true,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=south,lit=true,signal_fire=true,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=south,lit=true,signal_fire=false,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=south,lit=true,signal_fire=false,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=south,lit=false,signal_fire=true,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=south,lit=false,signal_fire=true,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=south,lit=false,signal_fire=false,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=south,lit=false,signal_fire=false,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=west,lit=true,signal_fire=true,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=west,lit=true,signal_fire=true,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=west,lit=true,signal_fire=false,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=west,lit=true,signal_fire=false,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=west,lit=false,signal_fire=true,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=west,lit=false,signal_fire=true,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=west,lit=false,signal_fire=false,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=west,lit=false,signal_fire=false,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=east,lit=true,signal_fire=true,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=east,lit=true,signal_fire=true,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=east,lit=true,signal_fire=false,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=east,lit=true,signal_fire=false,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=east,lit=false,signal_fire=true,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=east,lit=false,signal_fire=true,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=east,lit=false,signal_fire=false,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=east,lit=false,signal_fire=false,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:sweet_berry_bush 42 89 56 52 33 71 44 52 21 44 28 52 16 35 22 52 +minecraft:sweet_berry_bush[age=1] 47 94 57 138 37 75 45 138 23 47 28 138 18 37 22 138 +minecraft:sweet_berry_bush[age=2] 59 88 56 144 47 70 44 144 29 44 28 144 23 35 22 144 +minecraft:sweet_berry_bush[age=3] 68 77 50 161 54 61 40 161 34 38 25 161 27 30 20 161 +minecraft:warped_stem 57 59 77 255 45 47 61 255 28 29 38 255 22 23 30 255 +minecraft:warped_stem[axis=y] 57 103 103 255 45 82 82 255 28 51 51 255 22 41 41 255 +minecraft:warped_stem[axis=z] 57 59 77 255 45 47 61 255 28 29 38 255 22 23 30 255 +minecraft:stripped_warped_stem 57 150 147 255 45 120 117 255 28 75 73 255 22 60 58 255 +minecraft:stripped_warped_stem[axis=y] 52 128 124 255 41 102 99 255 26 64 62 255 20 51 49 255 +minecraft:stripped_warped_stem[axis=z] 57 150 147 255 45 120 117 255 28 75 73 255 22 60 58 255 +minecraft:warped_hyphae 57 59 77 255 45 47 61 255 28 29 38 255 22 23 30 255 +minecraft:warped_hyphae[axis=y] 57 59 77 255 45 47 61 255 28 29 38 255 22 23 30 255 +minecraft:warped_hyphae[axis=z] 57 59 77 255 45 47 61 255 28 29 38 255 22 23 30 255 +minecraft:stripped_warped_hyphae 57 150 147 255 45 120 117 255 28 75 73 255 22 60 58 255 +minecraft:stripped_warped_hyphae[axis=y] 57 150 147 255 45 120 117 255 28 75 73 255 22 60 58 255 +minecraft:stripped_warped_hyphae[axis=z] 57 150 147 255 45 120 117 255 28 75 73 255 22 60 58 255 +minecraft:warped_nylium 43 114 101 255 34 91 80 255 21 57 50 255 17 45 40 255 +minecraft:warped_fungus 74 109 87 49 59 87 69 49 37 54 43 49 29 43 34 49 +minecraft:warped_wart_block 22 119 121 255 17 95 96 255 11 59 60 255 8 47 48 255 +minecraft:warped_roots 20 138 124 91 16 110 99 91 10 69 62 91 8 55 49 91 +minecraft:nether_sprouts 19 151 133 30 15 120 106 30 9 75 66 30 7 60 53 30 +minecraft:crimson_stem 93 26 30 255 74 20 24 255 46 13 15 255 37 10 12 255 +minecraft:crimson_stem[axis=y] 107 51 74 255 85 40 59 255 53 25 37 255 42 20 29 255 +minecraft:crimson_stem[axis=z] 93 26 30 255 74 20 24 255 46 13 15 255 37 10 12 255 +minecraft:stripped_crimson_stem 137 57 90 255 109 45 72 255 68 28 45 255 54 22 36 255 +minecraft:stripped_crimson_stem[axis=y] 121 56 82 255 96 44 65 255 60 28 41 255 48 22 32 255 +minecraft:stripped_crimson_stem[axis=z] 137 57 90 255 109 45 72 255 68 28 45 255 54 22 36 255 +minecraft:crimson_hyphae 93 26 30 255 74 20 24 255 46 13 15 255 37 10 12 255 +minecraft:crimson_hyphae[axis=y] 93 26 30 255 74 20 24 255 46 13 15 255 37 10 12 255 +minecraft:crimson_hyphae[axis=z] 93 26 30 255 74 20 24 255 46 13 15 255 37 10 12 255 +minecraft:stripped_crimson_hyphae 137 57 90 255 109 45 72 255 68 28 45 255 54 22 36 255 +minecraft:stripped_crimson_hyphae[axis=y] 137 57 90 255 109 45 72 255 68 28 45 255 54 22 36 255 +minecraft:stripped_crimson_hyphae[axis=z] 137 57 90 255 109 45 72 255 68 28 45 255 54 22 36 255 +minecraft:crimson_nylium 130 31 31 255 104 24 24 255 65 15 15 255 52 12 12 255 +minecraft:crimson_fungus 141 44 29 59 112 35 23 59 70 22 14 59 56 17 11 59 +minecraft:shroomlight 240 146 70 255 192 116 56 255 120 73 35 255 96 58 28 255 +minecraft:weeping_vines 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=1] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=2] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=3] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=4] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=5] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=6] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=7] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=8] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=9] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=10] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=11] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=12] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=13] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=14] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=15] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=16] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=17] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=18] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=19] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=20] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=21] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=22] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=23] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=24] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=25] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines_plant 132 16 12 114 105 12 9 114 66 8 6 114 52 6 4 114 +minecraft:twisting_vines 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=1] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=2] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=3] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=4] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=5] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=6] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=7] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=8] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=9] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=10] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=11] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=12] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=13] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=14] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=15] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=16] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=17] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=18] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=19] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=20] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=21] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=22] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=23] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=24] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=25] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines_plant 20 135 122 89 16 108 97 89 10 67 61 89 8 54 48 89 +minecraft:crimson_roots 126 8 41 90 100 6 32 90 63 4 20 90 50 3 16 90 +minecraft:crimson_planks 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:warped_planks 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:crimson_slab 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_slab[type=top,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_slab[type=bottom,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_slab[type=bottom,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_slab[type=double,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_slab[type=double,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:warped_slab 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_slab[type=top,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_slab[type=bottom,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_slab[type=bottom,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_slab[type=double,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_slab[type=double,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:crimson_pressure_plate 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_pressure_plate[powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:warped_pressure_plate 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_pressure_plate[powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:crimson_fence 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=true,north=true,south=true,waterlogged=true,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=true,north=true,south=true,waterlogged=false,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=true,north=true,south=true,waterlogged=false,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=true,north=true,south=false,waterlogged=true,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=true,north=true,south=false,waterlogged=true,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=true,north=true,south=false,waterlogged=false,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=true,north=true,south=false,waterlogged=false,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=true,north=false,south=true,waterlogged=true,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=true,north=false,south=true,waterlogged=true,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=true,north=false,south=true,waterlogged=false,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=true,north=false,south=true,waterlogged=false,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=true,north=false,south=false,waterlogged=true,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=true,north=false,south=false,waterlogged=true,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=true,north=false,south=false,waterlogged=false,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=true,north=false,south=false,waterlogged=false,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=false,north=true,south=true,waterlogged=true,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=false,north=true,south=true,waterlogged=true,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=false,north=true,south=true,waterlogged=false,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=false,north=true,south=true,waterlogged=false,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=false,north=true,south=false,waterlogged=true,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=false,north=true,south=false,waterlogged=true,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=false,north=true,south=false,waterlogged=false,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=false,north=true,south=false,waterlogged=false,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=false,north=false,south=true,waterlogged=true,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=false,north=false,south=true,waterlogged=true,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=false,north=false,south=true,waterlogged=false,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=false,north=false,south=true,waterlogged=false,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=false,north=false,south=false,waterlogged=true,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=false,north=false,south=false,waterlogged=true,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=false,north=false,south=false,waterlogged=false,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=false,north=false,south=false,waterlogged=false,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:warped_fence 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=true,north=true,south=true,waterlogged=true,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=true,north=true,south=true,waterlogged=false,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=true,north=true,south=true,waterlogged=false,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=true,north=true,south=false,waterlogged=true,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=true,north=true,south=false,waterlogged=true,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=true,north=true,south=false,waterlogged=false,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=true,north=true,south=false,waterlogged=false,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=true,north=false,south=true,waterlogged=true,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=true,north=false,south=true,waterlogged=true,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=true,north=false,south=true,waterlogged=false,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=true,north=false,south=true,waterlogged=false,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=true,north=false,south=false,waterlogged=true,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=true,north=false,south=false,waterlogged=true,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=true,north=false,south=false,waterlogged=false,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=true,north=false,south=false,waterlogged=false,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=false,north=true,south=true,waterlogged=true,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=false,north=true,south=true,waterlogged=true,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=false,north=true,south=true,waterlogged=false,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=false,north=true,south=true,waterlogged=false,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=false,north=true,south=false,waterlogged=true,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=false,north=true,south=false,waterlogged=true,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=false,north=true,south=false,waterlogged=false,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=false,north=true,south=false,waterlogged=false,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=false,north=false,south=true,waterlogged=true,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=false,north=false,south=true,waterlogged=true,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=false,north=false,south=true,waterlogged=false,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=false,north=false,south=true,waterlogged=false,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=false,north=false,south=false,waterlogged=true,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=false,north=false,south=false,waterlogged=true,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=false,north=false,south=false,waterlogged=false,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=false,north=false,south=false,waterlogged=false,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:crimson_trapdoor 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:warped_trapdoor 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:crimson_fence_gate 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=north,in_wall=true,open=true,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=north,in_wall=true,open=false,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=north,in_wall=true,open=false,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=north,in_wall=false,open=true,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=north,in_wall=false,open=true,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=north,in_wall=false,open=false,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=north,in_wall=false,open=false,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=south,in_wall=true,open=true,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=south,in_wall=true,open=true,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=south,in_wall=true,open=false,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=south,in_wall=true,open=false,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=south,in_wall=false,open=true,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=south,in_wall=false,open=true,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=south,in_wall=false,open=false,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=south,in_wall=false,open=false,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=west,in_wall=true,open=true,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=west,in_wall=true,open=true,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=west,in_wall=true,open=false,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=west,in_wall=true,open=false,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=west,in_wall=false,open=true,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=west,in_wall=false,open=true,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=west,in_wall=false,open=false,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=west,in_wall=false,open=false,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=east,in_wall=true,open=true,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=east,in_wall=true,open=true,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=east,in_wall=true,open=false,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=east,in_wall=true,open=false,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=east,in_wall=false,open=true,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=east,in_wall=false,open=true,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=east,in_wall=false,open=false,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=east,in_wall=false,open=false,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:warped_fence_gate 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=north,in_wall=true,open=true,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=north,in_wall=true,open=false,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=north,in_wall=true,open=false,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=north,in_wall=false,open=true,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=north,in_wall=false,open=true,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=north,in_wall=false,open=false,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=north,in_wall=false,open=false,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=south,in_wall=true,open=true,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=south,in_wall=true,open=true,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=south,in_wall=true,open=false,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=south,in_wall=true,open=false,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=south,in_wall=false,open=true,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=south,in_wall=false,open=true,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=south,in_wall=false,open=false,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=south,in_wall=false,open=false,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=west,in_wall=true,open=true,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=west,in_wall=true,open=true,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=west,in_wall=true,open=false,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=west,in_wall=true,open=false,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=west,in_wall=false,open=true,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=west,in_wall=false,open=true,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=west,in_wall=false,open=false,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=west,in_wall=false,open=false,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=east,in_wall=true,open=true,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=east,in_wall=true,open=true,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=east,in_wall=true,open=false,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=east,in_wall=true,open=false,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=east,in_wall=false,open=true,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=east,in_wall=false,open=true,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=east,in_wall=false,open=false,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=east,in_wall=false,open=false,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:crimson_stairs 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=top,shape=straight,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=top,shape=straight,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=top,shape=straight,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=top,shape=straight,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=top,shape=straight,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=top,shape=straight,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=top,shape=straight,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:warped_stairs 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=top,shape=straight,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=top,shape=straight,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=top,shape=straight,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=top,shape=straight,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=top,shape=straight,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=top,shape=straight,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=top,shape=straight,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:crimson_button 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=floor,facing=north,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=floor,facing=south,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=floor,facing=south,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=floor,facing=west,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=floor,facing=west,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=floor,facing=east,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=floor,facing=east,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=wall,facing=north,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=wall,facing=north,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=wall,facing=south,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=wall,facing=south,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=wall,facing=west,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=wall,facing=west,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=wall,facing=east,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=wall,facing=east,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=ceiling,facing=north,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=ceiling,facing=north,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=ceiling,facing=south,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=ceiling,facing=south,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=ceiling,facing=west,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=ceiling,facing=west,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=ceiling,facing=east,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=ceiling,facing=east,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:warped_button 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=floor,facing=north,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=floor,facing=south,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=floor,facing=south,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=floor,facing=west,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=floor,facing=west,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=floor,facing=east,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=floor,facing=east,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=wall,facing=north,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=wall,facing=north,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=wall,facing=south,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=wall,facing=south,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=wall,facing=west,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=wall,facing=west,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=wall,facing=east,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=wall,facing=east,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=ceiling,facing=north,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=ceiling,facing=north,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=ceiling,facing=south,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=ceiling,facing=south,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=ceiling,facing=west,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=ceiling,facing=west,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=ceiling,facing=east,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=ceiling,facing=east,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:crimson_door 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=north,half=upper,hinge=left,open=true,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=north,half=upper,hinge=left,open=false,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=north,half=upper,hinge=left,open=false,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=north,half=upper,hinge=right,open=true,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=north,half=upper,hinge=right,open=true,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=north,half=upper,hinge=right,open=false,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=north,half=upper,hinge=right,open=false,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=north,half=lower,hinge=left,open=true,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=north,half=lower,hinge=left,open=true,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=north,half=lower,hinge=left,open=false,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=north,half=lower,hinge=left,open=false,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=north,half=lower,hinge=right,open=true,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=north,half=lower,hinge=right,open=true,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=north,half=lower,hinge=right,open=false,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=north,half=lower,hinge=right,open=false,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=south,half=upper,hinge=left,open=true,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=south,half=upper,hinge=left,open=true,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=south,half=upper,hinge=left,open=false,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=south,half=upper,hinge=left,open=false,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=south,half=upper,hinge=right,open=true,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=south,half=upper,hinge=right,open=true,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=south,half=upper,hinge=right,open=false,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=south,half=upper,hinge=right,open=false,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=south,half=lower,hinge=left,open=true,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=south,half=lower,hinge=left,open=true,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=south,half=lower,hinge=left,open=false,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=south,half=lower,hinge=left,open=false,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=south,half=lower,hinge=right,open=true,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=south,half=lower,hinge=right,open=true,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=south,half=lower,hinge=right,open=false,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=south,half=lower,hinge=right,open=false,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=west,half=upper,hinge=left,open=true,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=west,half=upper,hinge=left,open=true,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=west,half=upper,hinge=left,open=false,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=west,half=upper,hinge=left,open=false,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=west,half=upper,hinge=right,open=true,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=west,half=upper,hinge=right,open=true,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=west,half=upper,hinge=right,open=false,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=west,half=upper,hinge=right,open=false,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=west,half=lower,hinge=left,open=true,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=west,half=lower,hinge=left,open=true,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=west,half=lower,hinge=left,open=false,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=west,half=lower,hinge=left,open=false,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=west,half=lower,hinge=right,open=true,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=west,half=lower,hinge=right,open=true,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=west,half=lower,hinge=right,open=false,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=west,half=lower,hinge=right,open=false,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=east,half=upper,hinge=left,open=true,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=east,half=upper,hinge=left,open=true,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=east,half=upper,hinge=left,open=false,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=east,half=upper,hinge=left,open=false,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=east,half=upper,hinge=right,open=true,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=east,half=upper,hinge=right,open=true,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=east,half=upper,hinge=right,open=false,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=east,half=upper,hinge=right,open=false,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=east,half=lower,hinge=left,open=true,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=east,half=lower,hinge=left,open=true,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=east,half=lower,hinge=left,open=false,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=east,half=lower,hinge=left,open=false,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=east,half=lower,hinge=right,open=true,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=east,half=lower,hinge=right,open=true,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=east,half=lower,hinge=right,open=false,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=east,half=lower,hinge=right,open=false,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:warped_door 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=north,half=upper,hinge=left,open=true,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=north,half=upper,hinge=left,open=false,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=north,half=upper,hinge=left,open=false,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=north,half=upper,hinge=right,open=true,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=north,half=upper,hinge=right,open=true,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=north,half=upper,hinge=right,open=false,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=north,half=upper,hinge=right,open=false,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=north,half=lower,hinge=left,open=true,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=north,half=lower,hinge=left,open=true,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=north,half=lower,hinge=left,open=false,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=north,half=lower,hinge=left,open=false,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=north,half=lower,hinge=right,open=true,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=north,half=lower,hinge=right,open=true,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=north,half=lower,hinge=right,open=false,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=north,half=lower,hinge=right,open=false,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=south,half=upper,hinge=left,open=true,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=south,half=upper,hinge=left,open=true,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=south,half=upper,hinge=left,open=false,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=south,half=upper,hinge=left,open=false,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=south,half=upper,hinge=right,open=true,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=south,half=upper,hinge=right,open=true,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=south,half=upper,hinge=right,open=false,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=south,half=upper,hinge=right,open=false,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=south,half=lower,hinge=left,open=true,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=south,half=lower,hinge=left,open=true,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=south,half=lower,hinge=left,open=false,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=south,half=lower,hinge=left,open=false,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=south,half=lower,hinge=right,open=true,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=south,half=lower,hinge=right,open=true,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=south,half=lower,hinge=right,open=false,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=south,half=lower,hinge=right,open=false,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=west,half=upper,hinge=left,open=true,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=west,half=upper,hinge=left,open=true,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=west,half=upper,hinge=left,open=false,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=west,half=upper,hinge=left,open=false,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=west,half=upper,hinge=right,open=true,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=west,half=upper,hinge=right,open=true,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=west,half=upper,hinge=right,open=false,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=west,half=upper,hinge=right,open=false,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=west,half=lower,hinge=left,open=true,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=west,half=lower,hinge=left,open=true,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=west,half=lower,hinge=left,open=false,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=west,half=lower,hinge=left,open=false,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=west,half=lower,hinge=right,open=true,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=west,half=lower,hinge=right,open=true,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=west,half=lower,hinge=right,open=false,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=west,half=lower,hinge=right,open=false,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=east,half=upper,hinge=left,open=true,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=east,half=upper,hinge=left,open=true,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=east,half=upper,hinge=left,open=false,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=east,half=upper,hinge=left,open=false,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=east,half=upper,hinge=right,open=true,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=east,half=upper,hinge=right,open=true,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=east,half=upper,hinge=right,open=false,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=east,half=upper,hinge=right,open=false,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=east,half=lower,hinge=left,open=true,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=east,half=lower,hinge=left,open=true,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=east,half=lower,hinge=left,open=false,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=east,half=lower,hinge=left,open=false,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=east,half=lower,hinge=right,open=true,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=east,half=lower,hinge=right,open=true,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=east,half=lower,hinge=right,open=false,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=east,half=lower,hinge=right,open=false,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:crimson_sign 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=0,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=1,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=1,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=2,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=2,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=3,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=3,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=4,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=4,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=5,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=5,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=6,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=6,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=7,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=7,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=8,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=8,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=9,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=9,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=10,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=10,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=11,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=11,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=12,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=12,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=13,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=13,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=14,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=14,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=15,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=15,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:warped_sign 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=0,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=1,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=1,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=2,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=2,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=3,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=3,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=4,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=4,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=5,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=5,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=6,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=6,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=7,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=7,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=8,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=8,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=9,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=9,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=10,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=10,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=11,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=11,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=12,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=12,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=13,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=13,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=14,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=14,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=15,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=15,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:crimson_wall_sign 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_wall_sign[facing=north,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_wall_sign[facing=south,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_wall_sign[facing=south,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_wall_sign[facing=west,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_wall_sign[facing=west,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_wall_sign[facing=east,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_wall_sign[facing=east,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:warped_wall_sign 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_wall_sign[facing=north,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_wall_sign[facing=south,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_wall_sign[facing=south,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_wall_sign[facing=west,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_wall_sign[facing=west,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_wall_sign[facing=east,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_wall_sign[facing=east,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:structure_block 86 71 87 255 68 56 69 255 43 35 43 255 34 28 34 255 +minecraft:structure_block[mode=load] 69 57 70 255 55 45 56 255 34 28 35 255 27 22 28 255 +minecraft:structure_block[mode=corner] 68 57 69 255 54 45 55 255 34 28 34 255 27 22 27 255 +minecraft:structure_block[mode=data] 79 65 80 255 63 52 64 255 39 32 40 255 31 26 32 255 +minecraft:jigsaw 34 27 37 255 27 21 29 255 17 13 18 255 13 10 14 255 +minecraft:jigsaw[orientation=down_north] 34 27 37 255 27 21 29 255 17 13 18 255 13 10 14 255 +minecraft:jigsaw[orientation=down_south] 34 27 37 255 27 21 29 255 17 13 18 255 13 10 14 255 +minecraft:jigsaw[orientation=down_west] 34 27 37 255 27 21 29 255 17 13 18 255 13 10 14 255 +minecraft:jigsaw[orientation=up_east] 34 27 37 255 27 21 29 255 17 13 18 255 13 10 14 255 +minecraft:jigsaw[orientation=up_north] 34 27 37 255 27 21 29 255 17 13 18 255 13 10 14 255 +minecraft:jigsaw[orientation=up_south] 34 27 37 255 27 21 29 255 17 13 18 255 13 10 14 255 +minecraft:jigsaw[orientation=up_west] 34 27 37 255 27 21 29 255 17 13 18 255 13 10 14 255 +minecraft:jigsaw[orientation=west_up] 34 27 37 255 27 21 29 255 17 13 18 255 13 10 14 255 +minecraft:jigsaw[orientation=east_up] 34 27 37 255 27 21 29 255 17 13 18 255 13 10 14 255 +minecraft:jigsaw[orientation=north_up] 34 27 37 255 27 21 29 255 17 13 18 255 13 10 14 255 +minecraft:jigsaw[orientation=south_up] 34 27 37 255 27 21 29 255 17 13 18 255 13 10 14 255 +minecraft:composter 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143 +minecraft:composter[level=1] 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143 +minecraft:composter[level=2] 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143 +minecraft:composter[level=3] 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143 +minecraft:composter[level=4] 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143 +minecraft:composter[level=5] 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143 +minecraft:composter[level=6] 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143 +minecraft:composter[level=7] 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143 +minecraft:composter[level=8] 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143 +minecraft:target 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 +minecraft:target[power=1] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 +minecraft:target[power=2] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 +minecraft:target[power=3] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 +minecraft:target[power=4] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 +minecraft:target[power=5] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 +minecraft:target[power=6] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 +minecraft:target[power=7] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 +minecraft:target[power=8] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 +minecraft:target[power=9] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 +minecraft:target[power=10] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 +minecraft:target[power=11] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 +minecraft:target[power=12] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 +minecraft:target[power=13] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 +minecraft:target[power=14] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 +minecraft:target[power=15] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 +minecraft:bee_nest 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=north,honey_level=1] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=north,honey_level=2] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=north,honey_level=3] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=north,honey_level=4] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=north,honey_level=5] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=south,honey_level=0] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=south,honey_level=1] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=south,honey_level=2] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=south,honey_level=3] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=south,honey_level=4] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=south,honey_level=5] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=west,honey_level=0] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=west,honey_level=1] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=west,honey_level=2] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=west,honey_level=3] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=west,honey_level=4] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=west,honey_level=5] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=east,honey_level=0] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=east,honey_level=1] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=east,honey_level=2] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=east,honey_level=3] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=east,honey_level=4] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=east,honey_level=5] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:beehive 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=north,honey_level=1] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=north,honey_level=2] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=north,honey_level=3] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=north,honey_level=4] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=north,honey_level=5] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=south,honey_level=0] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=south,honey_level=1] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=south,honey_level=2] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=south,honey_level=3] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=south,honey_level=4] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=south,honey_level=5] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=west,honey_level=0] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=west,honey_level=1] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=west,honey_level=2] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=west,honey_level=3] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=west,honey_level=4] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=west,honey_level=5] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=east,honey_level=0] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=east,honey_level=1] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=east,honey_level=2] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=east,honey_level=3] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=east,honey_level=4] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=east,honey_level=5] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:honey_block 251 185 52 191 200 148 41 191 125 92 26 191 100 74 20 191 +minecraft:honeycomb_block 229 148 29 255 183 118 23 255 114 74 14 255 91 59 11 255 +minecraft:netherite_block 66 61 63 255 52 48 50 255 33 30 31 255 26 24 25 255 +minecraft:ancient_debris 94 66 58 255 75 52 46 255 47 33 29 255 37 26 23 255 +minecraft:crying_obsidian 32 10 60 255 25 8 48 255 16 5 30 255 12 4 24 255 +minecraft:respawn_anchor 33 21 52 255 26 16 41 255 16 10 26 255 13 8 20 255 +minecraft:respawn_anchor[charges=1] 75 27 144 219 60 21 115 219 37 13 72 219 30 10 57 219 +minecraft:respawn_anchor[charges=2] 75 27 144 219 60 21 115 219 37 13 72 219 30 10 57 219 +minecraft:respawn_anchor[charges=3] 75 27 144 219 60 21 115 219 37 13 72 219 30 10 57 219 +minecraft:respawn_anchor[charges=4] 75 27 144 219 60 21 115 219 37 13 72 219 30 10 57 219 +minecraft:potted_crimson_fungus 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_warped_fungus 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_crimson_roots 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_warped_roots 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:lodestone 147 149 152 255 117 119 121 255 73 74 76 255 58 59 60 255 +minecraft:blackstone 42 36 41 255 33 28 32 255 21 18 20 255 16 14 16 255 +minecraft:blackstone_stairs 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=top,shape=straight,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=top,shape=straight,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=top,shape=straight,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=top,shape=straight,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=top,shape=straight,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=top,shape=straight,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=top,shape=straight,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_slab 42 36 41 255 33 28 32 255 21 18 20 255 16 14 16 255 +minecraft:blackstone_slab[type=top,waterlogged=false] 42 36 41 255 33 28 32 255 21 18 20 255 16 14 16 255 +minecraft:blackstone_slab[type=bottom,waterlogged=true] 42 36 41 255 33 28 32 255 21 18 20 255 16 14 16 255 +minecraft:blackstone_slab[type=bottom,waterlogged=false] 42 36 41 255 33 28 32 255 21 18 20 255 16 14 16 255 +minecraft:blackstone_slab[type=double,waterlogged=true] 42 36 41 255 33 28 32 255 21 18 20 255 16 14 16 255 +minecraft:blackstone_slab[type=double,waterlogged=false] 42 36 41 255 33 28 32 255 21 18 20 255 16 14 16 255 +minecraft:polished_blackstone 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_bricks 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:cracked_polished_blackstone_bricks 44 37 43 255 35 29 34 255 22 18 21 255 17 14 17 255 +minecraft:chiseled_polished_blackstone 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_brick_slab 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_slab[type=top,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_slab[type=bottom,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_slab[type=bottom,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_slab[type=double,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_slab[type=double,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:gilded_blackstone 55 42 38 255 44 33 30 255 27 21 19 255 22 16 15 255 +minecraft:polished_blackstone_stairs 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=top,shape=straight,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=top,shape=straight,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=top,shape=straight,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=top,shape=straight,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=top,shape=straight,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=top,shape=straight,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=top,shape=straight,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_slab 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_slab[type=top,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_slab[type=bottom,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_slab[type=bottom,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_slab[type=double,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_slab[type=double,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_pressure_plate 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_pressure_plate[powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=floor,facing=north,powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=floor,facing=south,powered=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=floor,facing=south,powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=floor,facing=west,powered=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=floor,facing=west,powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=floor,facing=east,powered=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=floor,facing=east,powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=wall,facing=north,powered=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=wall,facing=north,powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=wall,facing=south,powered=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=wall,facing=south,powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=wall,facing=west,powered=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=wall,facing=west,powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=wall,facing=east,powered=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=wall,facing=east,powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=ceiling,facing=north,powered=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=ceiling,facing=north,powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=ceiling,facing=south,powered=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=ceiling,facing=south,powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=ceiling,facing=west,powered=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=ceiling,facing=west,powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=ceiling,facing=east,powered=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=ceiling,facing=east,powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:chiseled_nether_bricks 47 23 28 255 37 18 22 255 23 11 14 255 18 9 11 255 +minecraft:cracked_nether_bricks 40 20 23 255 32 16 18 255 20 10 11 255 16 8 9 255 +minecraft:quartz_bricks 234 229 221 255 187 183 176 255 117 114 110 255 93 91 88 255 +minecraft:candle 235 210 173 20 188 168 138 20 117 105 86 20 94 84 69 20 +minecraft:candle[candles=1,lit=true,waterlogged=false] 235 210 173 20 188 168 138 20 117 105 86 20 94 84 69 20 +minecraft:candle[candles=1,lit=false,waterlogged=true] 232 200 153 20 185 160 122 20 116 100 76 20 92 80 61 20 +minecraft:candle[candles=1,lit=false,waterlogged=false] 232 200 153 20 185 160 122 20 116 100 76 20 92 80 61 20 +minecraft:candle[candles=2,lit=true,waterlogged=true] 235 210 173 20 188 168 138 20 117 105 86 20 94 84 69 20 +minecraft:candle[candles=2,lit=true,waterlogged=false] 235 210 173 20 188 168 138 20 117 105 86 20 94 84 69 20 +minecraft:candle[candles=2,lit=false,waterlogged=true] 232 200 153 20 185 160 122 20 116 100 76 20 92 80 61 20 +minecraft:candle[candles=2,lit=false,waterlogged=false] 232 200 153 20 185 160 122 20 116 100 76 20 92 80 61 20 +minecraft:candle[candles=3,lit=true,waterlogged=true] 235 210 173 20 188 168 138 20 117 105 86 20 94 84 69 20 +minecraft:candle[candles=3,lit=true,waterlogged=false] 235 210 173 20 188 168 138 20 117 105 86 20 94 84 69 20 +minecraft:candle[candles=3,lit=false,waterlogged=true] 232 200 153 20 185 160 122 20 116 100 76 20 92 80 61 20 +minecraft:candle[candles=3,lit=false,waterlogged=false] 232 200 153 20 185 160 122 20 116 100 76 20 92 80 61 20 +minecraft:candle[candles=4,lit=true,waterlogged=true] 235 210 173 20 188 168 138 20 117 105 86 20 94 84 69 20 +minecraft:candle[candles=4,lit=true,waterlogged=false] 235 210 173 20 188 168 138 20 117 105 86 20 94 84 69 20 +minecraft:candle[candles=4,lit=false,waterlogged=true] 232 200 153 20 185 160 122 20 116 100 76 20 92 80 61 20 +minecraft:candle[candles=4,lit=false,waterlogged=false] 232 200 153 20 185 160 122 20 116 100 76 20 92 80 61 20 +minecraft:white_candle 217 217 206 20 173 173 164 20 108 108 103 20 86 86 82 20 +minecraft:white_candle[candles=1,lit=true,waterlogged=false] 217 217 206 20 173 173 164 20 108 108 103 20 86 86 82 20 +minecraft:white_candle[candles=1,lit=false,waterlogged=true] 210 216 217 20 168 172 173 20 105 108 108 20 84 86 86 20 +minecraft:white_candle[candles=1,lit=false,waterlogged=false] 210 216 217 20 168 172 173 20 105 108 108 20 84 86 86 20 +minecraft:white_candle[candles=2,lit=true,waterlogged=true] 217 217 206 20 173 173 164 20 108 108 103 20 86 86 82 20 +minecraft:white_candle[candles=2,lit=true,waterlogged=false] 217 217 206 20 173 173 164 20 108 108 103 20 86 86 82 20 +minecraft:white_candle[candles=2,lit=false,waterlogged=true] 210 216 217 20 168 172 173 20 105 108 108 20 84 86 86 20 +minecraft:white_candle[candles=2,lit=false,waterlogged=false] 210 216 217 20 168 172 173 20 105 108 108 20 84 86 86 20 +minecraft:white_candle[candles=3,lit=true,waterlogged=true] 217 217 206 20 173 173 164 20 108 108 103 20 86 86 82 20 +minecraft:white_candle[candles=3,lit=true,waterlogged=false] 217 217 206 20 173 173 164 20 108 108 103 20 86 86 82 20 +minecraft:white_candle[candles=3,lit=false,waterlogged=true] 210 216 217 20 168 172 173 20 105 108 108 20 84 86 86 20 +minecraft:white_candle[candles=3,lit=false,waterlogged=false] 210 216 217 20 168 172 173 20 105 108 108 20 84 86 86 20 +minecraft:white_candle[candles=4,lit=true,waterlogged=true] 217 217 206 20 173 173 164 20 108 108 103 20 86 86 82 20 +minecraft:white_candle[candles=4,lit=true,waterlogged=false] 217 217 206 20 173 173 164 20 108 108 103 20 86 86 82 20 +minecraft:white_candle[candles=4,lit=false,waterlogged=true] 210 216 217 20 168 172 173 20 105 108 108 20 84 86 86 20 +minecraft:white_candle[candles=4,lit=false,waterlogged=false] 210 216 217 20 168 172 173 20 105 108 108 20 84 86 86 20 +minecraft:orange_candle 226 131 26 20 180 104 20 20 113 65 13 20 90 52 10 20 +minecraft:orange_candle[candles=1,lit=true,waterlogged=false] 226 131 26 20 180 104 20 20 113 65 13 20 90 52 10 20 +minecraft:orange_candle[candles=1,lit=false,waterlogged=true] 219 100 9 20 175 80 7 20 109 50 4 20 87 40 3 20 +minecraft:orange_candle[candles=1,lit=false,waterlogged=false] 219 100 9 20 175 80 7 20 109 50 4 20 87 40 3 20 +minecraft:orange_candle[candles=2,lit=true,waterlogged=true] 226 131 26 20 180 104 20 20 113 65 13 20 90 52 10 20 +minecraft:orange_candle[candles=2,lit=true,waterlogged=false] 226 131 26 20 180 104 20 20 113 65 13 20 90 52 10 20 +minecraft:orange_candle[candles=2,lit=false,waterlogged=true] 219 100 9 20 175 80 7 20 109 50 4 20 87 40 3 20 +minecraft:orange_candle[candles=2,lit=false,waterlogged=false] 219 100 9 20 175 80 7 20 109 50 4 20 87 40 3 20 +minecraft:orange_candle[candles=3,lit=true,waterlogged=true] 226 131 26 20 180 104 20 20 113 65 13 20 90 52 10 20 +minecraft:orange_candle[candles=3,lit=true,waterlogged=false] 226 131 26 20 180 104 20 20 113 65 13 20 90 52 10 20 +minecraft:orange_candle[candles=3,lit=false,waterlogged=true] 219 100 9 20 175 80 7 20 109 50 4 20 87 40 3 20 +minecraft:orange_candle[candles=3,lit=false,waterlogged=false] 219 100 9 20 175 80 7 20 109 50 4 20 87 40 3 20 +minecraft:orange_candle[candles=4,lit=true,waterlogged=true] 226 131 26 20 180 104 20 20 113 65 13 20 90 52 10 20 +minecraft:orange_candle[candles=4,lit=true,waterlogged=false] 226 131 26 20 180 104 20 20 113 65 13 20 90 52 10 20 +minecraft:orange_candle[candles=4,lit=false,waterlogged=true] 219 100 9 20 175 80 7 20 109 50 4 20 87 40 3 20 +minecraft:orange_candle[candles=4,lit=false,waterlogged=false] 219 100 9 20 175 80 7 20 109 50 4 20 87 40 3 20 +minecraft:magenta_candle 182 69 161 20 145 55 128 20 91 34 80 20 72 27 64 20 +minecraft:magenta_candle[candles=1,lit=true,waterlogged=false] 182 69 161 20 145 55 128 20 91 34 80 20 72 27 64 20 +minecraft:magenta_candle[candles=1,lit=false,waterlogged=true] 160 45 153 20 128 36 122 20 80 22 76 20 64 18 61 20 +minecraft:magenta_candle[candles=1,lit=false,waterlogged=false] 160 45 153 20 128 36 122 20 80 22 76 20 64 18 61 20 +minecraft:magenta_candle[candles=2,lit=true,waterlogged=true] 182 69 161 20 145 55 128 20 91 34 80 20 72 27 64 20 +minecraft:magenta_candle[candles=2,lit=true,waterlogged=false] 182 69 161 20 145 55 128 20 91 34 80 20 72 27 64 20 +minecraft:magenta_candle[candles=2,lit=false,waterlogged=true] 160 45 153 20 128 36 122 20 80 22 76 20 64 18 61 20 +minecraft:magenta_candle[candles=2,lit=false,waterlogged=false] 160 45 153 20 128 36 122 20 80 22 76 20 64 18 61 20 +minecraft:magenta_candle[candles=3,lit=true,waterlogged=true] 182 69 161 20 145 55 128 20 91 34 80 20 72 27 64 20 +minecraft:magenta_candle[candles=3,lit=true,waterlogged=false] 182 69 161 20 145 55 128 20 91 34 80 20 72 27 64 20 +minecraft:magenta_candle[candles=3,lit=false,waterlogged=true] 160 45 153 20 128 36 122 20 80 22 76 20 64 18 61 20 +minecraft:magenta_candle[candles=3,lit=false,waterlogged=false] 160 45 153 20 128 36 122 20 80 22 76 20 64 18 61 20 +minecraft:magenta_candle[candles=4,lit=true,waterlogged=true] 182 69 161 20 145 55 128 20 91 34 80 20 72 27 64 20 +minecraft:magenta_candle[candles=4,lit=true,waterlogged=false] 182 69 161 20 145 55 128 20 91 34 80 20 72 27 64 20 +minecraft:magenta_candle[candles=4,lit=false,waterlogged=true] 160 45 153 20 128 36 122 20 80 22 76 20 64 18 61 20 +minecraft:magenta_candle[candles=4,lit=false,waterlogged=false] 160 45 153 20 128 36 122 20 80 22 76 20 64 18 61 20 +minecraft:light_blue_candle 69 161 201 20 55 128 160 20 34 80 100 20 27 64 80 20 +minecraft:light_blue_candle[candles=1,lit=true,waterlogged=false] 69 161 201 20 55 128 160 20 34 80 100 20 27 64 80 20 +minecraft:light_blue_candle[candles=1,lit=false,waterlogged=true] 34 137 196 20 27 109 156 20 17 68 98 20 13 54 78 20 +minecraft:light_blue_candle[candles=1,lit=false,waterlogged=false] 34 137 196 20 27 109 156 20 17 68 98 20 13 54 78 20 +minecraft:light_blue_candle[candles=2,lit=true,waterlogged=true] 69 161 201 20 55 128 160 20 34 80 100 20 27 64 80 20 +minecraft:light_blue_candle[candles=2,lit=true,waterlogged=false] 69 161 201 20 55 128 160 20 34 80 100 20 27 64 80 20 +minecraft:light_blue_candle[candles=2,lit=false,waterlogged=true] 34 137 196 20 27 109 156 20 17 68 98 20 13 54 78 20 +minecraft:light_blue_candle[candles=2,lit=false,waterlogged=false] 34 137 196 20 27 109 156 20 17 68 98 20 13 54 78 20 +minecraft:light_blue_candle[candles=3,lit=true,waterlogged=true] 69 161 201 20 55 128 160 20 34 80 100 20 27 64 80 20 +minecraft:light_blue_candle[candles=3,lit=true,waterlogged=false] 69 161 201 20 55 128 160 20 34 80 100 20 27 64 80 20 +minecraft:light_blue_candle[candles=3,lit=false,waterlogged=true] 34 137 196 20 27 109 156 20 17 68 98 20 13 54 78 20 +minecraft:light_blue_candle[candles=3,lit=false,waterlogged=false] 34 137 196 20 27 109 156 20 17 68 98 20 13 54 78 20 +minecraft:light_blue_candle[candles=4,lit=true,waterlogged=true] 69 161 201 20 55 128 160 20 34 80 100 20 27 64 80 20 +minecraft:light_blue_candle[candles=4,lit=true,waterlogged=false] 69 161 201 20 55 128 160 20 34 80 100 20 27 64 80 20 +minecraft:light_blue_candle[candles=4,lit=false,waterlogged=true] 34 137 196 20 27 109 156 20 17 68 98 20 13 54 78 20 +minecraft:light_blue_candle[candles=4,lit=false,waterlogged=false] 34 137 196 20 27 109 156 20 17 68 98 20 13 54 78 20 +minecraft:yellow_candle 216 183 74 20 172 146 59 20 108 91 37 20 86 73 29 20 +minecraft:yellow_candle[candles=1,lit=true,waterlogged=false] 216 183 74 20 172 146 59 20 108 91 37 20 86 73 29 20 +minecraft:yellow_candle[candles=1,lit=false,waterlogged=true] 209 164 50 20 167 131 40 20 104 82 25 20 83 65 20 20 +minecraft:yellow_candle[candles=1,lit=false,waterlogged=false] 209 164 50 20 167 131 40 20 104 82 25 20 83 65 20 20 +minecraft:yellow_candle[candles=2,lit=true,waterlogged=true] 216 183 74 20 172 146 59 20 108 91 37 20 86 73 29 20 +minecraft:yellow_candle[candles=2,lit=true,waterlogged=false] 216 183 74 20 172 146 59 20 108 91 37 20 86 73 29 20 +minecraft:yellow_candle[candles=2,lit=false,waterlogged=true] 209 164 50 20 167 131 40 20 104 82 25 20 83 65 20 20 +minecraft:yellow_candle[candles=2,lit=false,waterlogged=false] 209 164 50 20 167 131 40 20 104 82 25 20 83 65 20 20 +minecraft:yellow_candle[candles=3,lit=true,waterlogged=true] 216 183 74 20 172 146 59 20 108 91 37 20 86 73 29 20 +minecraft:yellow_candle[candles=3,lit=true,waterlogged=false] 216 183 74 20 172 146 59 20 108 91 37 20 86 73 29 20 +minecraft:yellow_candle[candles=3,lit=false,waterlogged=true] 209 164 50 20 167 131 40 20 104 82 25 20 83 65 20 20 +minecraft:yellow_candle[candles=3,lit=false,waterlogged=false] 209 164 50 20 167 131 40 20 104 82 25 20 83 65 20 20 +minecraft:yellow_candle[candles=4,lit=true,waterlogged=true] 216 183 74 20 172 146 59 20 108 91 37 20 86 73 29 20 +minecraft:yellow_candle[candles=4,lit=true,waterlogged=false] 216 183 74 20 172 146 59 20 108 91 37 20 86 73 29 20 +minecraft:yellow_candle[candles=4,lit=false,waterlogged=true] 209 164 50 20 167 131 40 20 104 82 25 20 83 65 20 20 +minecraft:yellow_candle[candles=4,lit=false,waterlogged=false] 209 164 50 20 167 131 40 20 104 82 25 20 83 65 20 20 +minecraft:lime_candle 124 181 30 20 99 144 24 20 62 90 15 20 49 72 12 20 +minecraft:lime_candle[candles=1,lit=true,waterlogged=false] 124 181 30 20 99 144 24 20 62 90 15 20 49 72 12 20 +minecraft:lime_candle[candles=1,lit=false,waterlogged=true] 98 171 22 20 78 136 17 20 49 85 11 20 39 68 8 20 +minecraft:lime_candle[candles=1,lit=false,waterlogged=false] 98 171 22 20 78 136 17 20 49 85 11 20 39 68 8 20 +minecraft:lime_candle[candles=2,lit=true,waterlogged=true] 124 181 30 20 99 144 24 20 62 90 15 20 49 72 12 20 +minecraft:lime_candle[candles=2,lit=true,waterlogged=false] 124 181 30 20 99 144 24 20 62 90 15 20 49 72 12 20 +minecraft:lime_candle[candles=2,lit=false,waterlogged=true] 98 171 22 20 78 136 17 20 49 85 11 20 39 68 8 20 +minecraft:lime_candle[candles=2,lit=false,waterlogged=false] 98 171 22 20 78 136 17 20 49 85 11 20 39 68 8 20 +minecraft:lime_candle[candles=3,lit=true,waterlogged=true] 124 181 30 20 99 144 24 20 62 90 15 20 49 72 12 20 +minecraft:lime_candle[candles=3,lit=true,waterlogged=false] 124 181 30 20 99 144 24 20 62 90 15 20 49 72 12 20 +minecraft:lime_candle[candles=3,lit=false,waterlogged=true] 98 171 22 20 78 136 17 20 49 85 11 20 39 68 8 20 +minecraft:lime_candle[candles=3,lit=false,waterlogged=false] 98 171 22 20 78 136 17 20 49 85 11 20 39 68 8 20 +minecraft:lime_candle[candles=4,lit=true,waterlogged=true] 124 181 30 20 99 144 24 20 62 90 15 20 49 72 12 20 +minecraft:lime_candle[candles=4,lit=true,waterlogged=false] 124 181 30 20 99 144 24 20 62 90 15 20 49 72 12 20 +minecraft:lime_candle[candles=4,lit=false,waterlogged=true] 98 171 22 20 78 136 17 20 49 85 11 20 39 68 8 20 +minecraft:lime_candle[candles=4,lit=false,waterlogged=false] 98 171 22 20 78 136 17 20 49 85 11 20 39 68 8 20 +minecraft:pink_candle 217 131 150 20 173 104 120 20 108 65 75 20 86 52 60 20 +minecraft:pink_candle[candles=1,lit=true,waterlogged=false] 217 131 150 20 173 104 120 20 108 65 75 20 86 52 60 20 +minecraft:pink_candle[candles=1,lit=false,waterlogged=true] 208 101 142 20 166 80 113 20 104 50 71 20 83 40 56 20 +minecraft:pink_candle[candles=1,lit=false,waterlogged=false] 208 101 142 20 166 80 113 20 104 50 71 20 83 40 56 20 +minecraft:pink_candle[candles=2,lit=true,waterlogged=true] 217 131 150 20 173 104 120 20 108 65 75 20 86 52 60 20 +minecraft:pink_candle[candles=2,lit=true,waterlogged=false] 217 131 150 20 173 104 120 20 108 65 75 20 86 52 60 20 +minecraft:pink_candle[candles=2,lit=false,waterlogged=true] 208 101 142 20 166 80 113 20 104 50 71 20 83 40 56 20 +minecraft:pink_candle[candles=2,lit=false,waterlogged=false] 208 101 142 20 166 80 113 20 104 50 71 20 83 40 56 20 +minecraft:pink_candle[candles=3,lit=true,waterlogged=true] 217 131 150 20 173 104 120 20 108 65 75 20 86 52 60 20 +minecraft:pink_candle[candles=3,lit=true,waterlogged=false] 217 131 150 20 173 104 120 20 108 65 75 20 86 52 60 20 +minecraft:pink_candle[candles=3,lit=false,waterlogged=true] 208 101 142 20 166 80 113 20 104 50 71 20 83 40 56 20 +minecraft:pink_candle[candles=3,lit=false,waterlogged=false] 208 101 142 20 166 80 113 20 104 50 71 20 83 40 56 20 +minecraft:pink_candle[candles=4,lit=true,waterlogged=true] 217 131 150 20 173 104 120 20 108 65 75 20 86 52 60 20 +minecraft:pink_candle[candles=4,lit=true,waterlogged=false] 217 131 150 20 173 104 120 20 108 65 75 20 86 52 60 20 +minecraft:pink_candle[candles=4,lit=false,waterlogged=true] 208 101 142 20 166 80 113 20 104 50 71 20 83 40 56 20 +minecraft:pink_candle[candles=4,lit=false,waterlogged=false] 208 101 142 20 166 80 113 20 104 50 71 20 83 40 56 20 +minecraft:gray_candle 118 122 108 20 94 97 86 20 59 61 54 20 47 48 43 20 +minecraft:gray_candle[candles=1,lit=true,waterlogged=false] 118 122 108 20 94 97 86 20 59 61 54 20 47 48 43 20 +minecraft:gray_candle[candles=1,lit=false,waterlogged=true] 80 94 96 20 64 75 76 20 40 47 48 20 32 37 38 20 +minecraft:gray_candle[candles=1,lit=false,waterlogged=false] 80 94 96 20 64 75 76 20 40 47 48 20 32 37 38 20 +minecraft:gray_candle[candles=2,lit=true,waterlogged=true] 118 122 108 20 94 97 86 20 59 61 54 20 47 48 43 20 +minecraft:gray_candle[candles=2,lit=true,waterlogged=false] 118 122 108 20 94 97 86 20 59 61 54 20 47 48 43 20 +minecraft:gray_candle[candles=2,lit=false,waterlogged=true] 80 94 96 20 64 75 76 20 40 47 48 20 32 37 38 20 +minecraft:gray_candle[candles=2,lit=false,waterlogged=false] 80 94 96 20 64 75 76 20 40 47 48 20 32 37 38 20 +minecraft:gray_candle[candles=3,lit=true,waterlogged=true] 118 122 108 20 94 97 86 20 59 61 54 20 47 48 43 20 +minecraft:gray_candle[candles=3,lit=true,waterlogged=false] 118 122 108 20 94 97 86 20 59 61 54 20 47 48 43 20 +minecraft:gray_candle[candles=3,lit=false,waterlogged=true] 80 94 96 20 64 75 76 20 40 47 48 20 32 37 38 20 +minecraft:gray_candle[candles=3,lit=false,waterlogged=false] 80 94 96 20 64 75 76 20 40 47 48 20 32 37 38 20 +minecraft:gray_candle[candles=4,lit=true,waterlogged=true] 118 122 108 20 94 97 86 20 59 61 54 20 47 48 43 20 +minecraft:gray_candle[candles=4,lit=true,waterlogged=false] 118 122 108 20 94 97 86 20 59 61 54 20 47 48 43 20 +minecraft:gray_candle[candles=4,lit=false,waterlogged=true] 80 94 96 20 64 75 76 20 40 47 48 20 32 37 38 20 +minecraft:gray_candle[candles=4,lit=false,waterlogged=false] 80 94 96 20 64 75 76 20 40 47 48 20 32 37 38 20 +minecraft:light_gray_candle 151 147 126 20 120 117 100 20 75 73 63 20 60 58 50 20 +minecraft:light_gray_candle[candles=1,lit=true,waterlogged=false] 151 147 126 20 120 117 100 20 75 73 63 20 60 58 50 20 +minecraft:light_gray_candle[candles=1,lit=false,waterlogged=true] 118 120 112 20 94 96 89 20 59 60 56 20 47 48 44 20 +minecraft:light_gray_candle[candles=1,lit=false,waterlogged=false] 118 120 112 20 94 96 89 20 59 60 56 20 47 48 44 20 +minecraft:light_gray_candle[candles=2,lit=true,waterlogged=true] 151 147 126 20 120 117 100 20 75 73 63 20 60 58 50 20 +minecraft:light_gray_candle[candles=2,lit=true,waterlogged=false] 151 147 126 20 120 117 100 20 75 73 63 20 60 58 50 20 +minecraft:light_gray_candle[candles=2,lit=false,waterlogged=true] 118 120 112 20 94 96 89 20 59 60 56 20 47 48 44 20 +minecraft:light_gray_candle[candles=2,lit=false,waterlogged=false] 118 120 112 20 94 96 89 20 59 60 56 20 47 48 44 20 +minecraft:light_gray_candle[candles=3,lit=true,waterlogged=true] 151 147 126 20 120 117 100 20 75 73 63 20 60 58 50 20 +minecraft:light_gray_candle[candles=3,lit=true,waterlogged=false] 151 147 126 20 120 117 100 20 75 73 63 20 60 58 50 20 +minecraft:light_gray_candle[candles=3,lit=false,waterlogged=true] 118 120 112 20 94 96 89 20 59 60 56 20 47 48 44 20 +minecraft:light_gray_candle[candles=3,lit=false,waterlogged=false] 118 120 112 20 94 96 89 20 59 60 56 20 47 48 44 20 +minecraft:light_gray_candle[candles=4,lit=true,waterlogged=true] 151 147 126 20 120 117 100 20 75 73 63 20 60 58 50 20 +minecraft:light_gray_candle[candles=4,lit=true,waterlogged=false] 151 147 126 20 120 117 100 20 75 73 63 20 60 58 50 20 +minecraft:light_gray_candle[candles=4,lit=false,waterlogged=true] 118 120 112 20 94 96 89 20 59 60 56 20 47 48 44 20 +minecraft:light_gray_candle[candles=4,lit=false,waterlogged=false] 118 120 112 20 94 96 89 20 59 60 56 20 47 48 44 20 +minecraft:cyan_candle 43 146 134 20 34 116 107 20 21 73 67 20 17 58 53 20 +minecraft:cyan_candle[candles=1,lit=true,waterlogged=false] 43 146 134 20 34 116 107 20 21 73 67 20 17 58 53 20 +minecraft:cyan_candle[candles=1,lit=false,waterlogged=true] 17 123 123 20 13 98 98 20 8 61 61 20 6 49 49 20 +minecraft:cyan_candle[candles=1,lit=false,waterlogged=false] 17 123 123 20 13 98 98 20 8 61 61 20 6 49 49 20 +minecraft:cyan_candle[candles=2,lit=true,waterlogged=true] 43 146 134 20 34 116 107 20 21 73 67 20 17 58 53 20 +minecraft:cyan_candle[candles=2,lit=true,waterlogged=false] 43 146 134 20 34 116 107 20 21 73 67 20 17 58 53 20 +minecraft:cyan_candle[candles=2,lit=false,waterlogged=true] 17 123 123 20 13 98 98 20 8 61 61 20 6 49 49 20 +minecraft:cyan_candle[candles=2,lit=false,waterlogged=false] 17 123 123 20 13 98 98 20 8 61 61 20 6 49 49 20 +minecraft:cyan_candle[candles=3,lit=true,waterlogged=true] 43 146 134 20 34 116 107 20 21 73 67 20 17 58 53 20 +minecraft:cyan_candle[candles=3,lit=true,waterlogged=false] 43 146 134 20 34 116 107 20 21 73 67 20 17 58 53 20 +minecraft:cyan_candle[candles=3,lit=false,waterlogged=true] 17 123 123 20 13 98 98 20 8 61 61 20 6 49 49 20 +minecraft:cyan_candle[candles=3,lit=false,waterlogged=false] 17 123 123 20 13 98 98 20 8 61 61 20 6 49 49 20 +minecraft:cyan_candle[candles=4,lit=true,waterlogged=true] 43 146 134 20 34 116 107 20 21 73 67 20 17 58 53 20 +minecraft:cyan_candle[candles=4,lit=true,waterlogged=false] 43 146 134 20 34 116 107 20 21 73 67 20 17 58 53 20 +minecraft:cyan_candle[candles=4,lit=false,waterlogged=true] 17 123 123 20 13 98 98 20 8 61 61 20 6 49 49 20 +minecraft:cyan_candle[candles=4,lit=false,waterlogged=false] 17 123 123 20 13 98 98 20 8 61 61 20 6 49 49 20 +minecraft:purple_candle 124 33 144 20 99 26 115 20 62 16 72 20 49 13 57 20 +minecraft:purple_candle[candles=1,lit=true,waterlogged=false] 124 33 144 20 99 26 115 20 62 16 72 20 49 13 57 20 +minecraft:purple_candle[candles=1,lit=false,waterlogged=true] 105 34 159 20 84 27 127 20 52 17 79 20 42 13 63 20 +minecraft:purple_candle[candles=1,lit=false,waterlogged=false] 105 34 159 20 84 27 127 20 52 17 79 20 42 13 63 20 +minecraft:purple_candle[candles=2,lit=true,waterlogged=true] 124 33 144 20 99 26 115 20 62 16 72 20 49 13 57 20 +minecraft:purple_candle[candles=2,lit=true,waterlogged=false] 124 33 144 20 99 26 115 20 62 16 72 20 49 13 57 20 +minecraft:purple_candle[candles=2,lit=false,waterlogged=true] 105 34 159 20 84 27 127 20 52 17 79 20 42 13 63 20 +minecraft:purple_candle[candles=2,lit=false,waterlogged=false] 105 34 159 20 84 27 127 20 52 17 79 20 42 13 63 20 +minecraft:purple_candle[candles=3,lit=true,waterlogged=true] 124 33 144 20 99 26 115 20 62 16 72 20 49 13 57 20 +minecraft:purple_candle[candles=3,lit=true,waterlogged=false] 124 33 144 20 99 26 115 20 62 16 72 20 49 13 57 20 +minecraft:purple_candle[candles=3,lit=false,waterlogged=true] 105 34 159 20 84 27 127 20 52 17 79 20 42 13 63 20 +minecraft:purple_candle[candles=3,lit=false,waterlogged=false] 105 34 159 20 84 27 127 20 52 17 79 20 42 13 63 20 +minecraft:purple_candle[candles=4,lit=true,waterlogged=true] 124 33 144 20 99 26 115 20 62 16 72 20 49 13 57 20 +minecraft:purple_candle[candles=4,lit=true,waterlogged=false] 124 33 144 20 99 26 115 20 62 16 72 20 49 13 57 20 +minecraft:purple_candle[candles=4,lit=false,waterlogged=true] 105 34 159 20 84 27 127 20 52 17 79 20 42 13 63 20 +minecraft:purple_candle[candles=4,lit=false,waterlogged=false] 105 34 159 20 84 27 127 20 52 17 79 20 42 13 63 20 +minecraft:blue_candle 64 84 179 20 51 67 143 20 32 42 89 20 25 33 71 20 +minecraft:blue_candle[candles=1,lit=true,waterlogged=false] 64 84 179 20 51 67 143 20 32 42 89 20 25 33 71 20 +minecraft:blue_candle[candles=1,lit=false,waterlogged=true] 57 76 161 20 45 60 128 20 28 38 80 20 22 30 64 20 +minecraft:blue_candle[candles=1,lit=false,waterlogged=false] 57 76 161 20 45 60 128 20 28 38 80 20 22 30 64 20 +minecraft:blue_candle[candles=2,lit=true,waterlogged=true] 64 84 179 20 51 67 143 20 32 42 89 20 25 33 71 20 +minecraft:blue_candle[candles=2,lit=true,waterlogged=false] 64 84 179 20 51 67 143 20 32 42 89 20 25 33 71 20 +minecraft:blue_candle[candles=2,lit=false,waterlogged=true] 57 76 161 20 45 60 128 20 28 38 80 20 22 30 64 20 +minecraft:blue_candle[candles=2,lit=false,waterlogged=false] 57 76 161 20 45 60 128 20 28 38 80 20 22 30 64 20 +minecraft:blue_candle[candles=3,lit=true,waterlogged=true] 64 84 179 20 51 67 143 20 32 42 89 20 25 33 71 20 +minecraft:blue_candle[candles=3,lit=true,waterlogged=false] 64 84 179 20 51 67 143 20 32 42 89 20 25 33 71 20 +minecraft:blue_candle[candles=3,lit=false,waterlogged=true] 57 76 161 20 45 60 128 20 28 38 80 20 22 30 64 20 +minecraft:blue_candle[candles=3,lit=false,waterlogged=false] 57 76 161 20 45 60 128 20 28 38 80 20 22 30 64 20 +minecraft:blue_candle[candles=4,lit=true,waterlogged=true] 64 84 179 20 51 67 143 20 32 42 89 20 25 33 71 20 +minecraft:blue_candle[candles=4,lit=true,waterlogged=false] 64 84 179 20 51 67 143 20 32 42 89 20 25 33 71 20 +minecraft:blue_candle[candles=4,lit=false,waterlogged=true] 57 76 161 20 45 60 128 20 28 38 80 20 22 30 64 20 +minecraft:blue_candle[candles=4,lit=false,waterlogged=false] 57 76 161 20 45 60 128 20 28 38 80 20 22 30 64 20 +minecraft:brown_candle 147 96 51 20 117 76 40 20 73 48 25 20 58 38 20 20 +minecraft:brown_candle[candles=1,lit=true,waterlogged=false] 147 96 51 20 117 76 40 20 73 48 25 20 58 38 20 20 +minecraft:brown_candle[candles=1,lit=false,waterlogged=true] 111 70 41 20 88 56 32 20 55 35 20 20 44 28 16 20 +minecraft:brown_candle[candles=1,lit=false,waterlogged=false] 111 70 41 20 88 56 32 20 55 35 20 20 44 28 16 20 +minecraft:brown_candle[candles=2,lit=true,waterlogged=true] 147 96 51 20 117 76 40 20 73 48 25 20 58 38 20 20 +minecraft:brown_candle[candles=2,lit=true,waterlogged=false] 147 96 51 20 117 76 40 20 73 48 25 20 58 38 20 20 +minecraft:brown_candle[candles=2,lit=false,waterlogged=true] 111 70 41 20 88 56 32 20 55 35 20 20 44 28 16 20 +minecraft:brown_candle[candles=2,lit=false,waterlogged=false] 111 70 41 20 88 56 32 20 55 35 20 20 44 28 16 20 +minecraft:brown_candle[candles=3,lit=true,waterlogged=true] 147 96 51 20 117 76 40 20 73 48 25 20 58 38 20 20 +minecraft:brown_candle[candles=3,lit=true,waterlogged=false] 147 96 51 20 117 76 40 20 73 48 25 20 58 38 20 20 +minecraft:brown_candle[candles=3,lit=false,waterlogged=true] 111 70 41 20 88 56 32 20 55 35 20 20 44 28 16 20 +minecraft:brown_candle[candles=3,lit=false,waterlogged=false] 111 70 41 20 88 56 32 20 55 35 20 20 44 28 16 20 +minecraft:brown_candle[candles=4,lit=true,waterlogged=true] 147 96 51 20 117 76 40 20 73 48 25 20 58 38 20 20 +minecraft:brown_candle[candles=4,lit=true,waterlogged=false] 147 96 51 20 117 76 40 20 73 48 25 20 58 38 20 20 +minecraft:brown_candle[candles=4,lit=false,waterlogged=true] 111 70 41 20 88 56 32 20 55 35 20 20 44 28 16 20 +minecraft:brown_candle[candles=4,lit=false,waterlogged=false] 111 70 41 20 88 56 32 20 55 35 20 20 44 28 16 20 +minecraft:green_candle 100 115 22 20 80 92 17 20 50 57 11 20 40 46 8 20 +minecraft:green_candle[candles=1,lit=true,waterlogged=false] 100 115 22 20 80 92 17 20 50 57 11 20 40 46 8 20 +minecraft:green_candle[candles=1,lit=false,waterlogged=true] 72 96 20 20 57 76 16 20 36 48 10 20 28 38 8 20 +minecraft:green_candle[candles=1,lit=false,waterlogged=false] 72 96 20 20 57 76 16 20 36 48 10 20 28 38 8 20 +minecraft:green_candle[candles=2,lit=true,waterlogged=true] 100 115 22 20 80 92 17 20 50 57 11 20 40 46 8 20 +minecraft:green_candle[candles=2,lit=true,waterlogged=false] 100 115 22 20 80 92 17 20 50 57 11 20 40 46 8 20 +minecraft:green_candle[candles=2,lit=false,waterlogged=true] 72 96 20 20 57 76 16 20 36 48 10 20 28 38 8 20 +minecraft:green_candle[candles=2,lit=false,waterlogged=false] 72 96 20 20 57 76 16 20 36 48 10 20 28 38 8 20 +minecraft:green_candle[candles=3,lit=true,waterlogged=true] 100 115 22 20 80 92 17 20 50 57 11 20 40 46 8 20 +minecraft:green_candle[candles=3,lit=true,waterlogged=false] 100 115 22 20 80 92 17 20 50 57 11 20 40 46 8 20 +minecraft:green_candle[candles=3,lit=false,waterlogged=true] 72 96 20 20 57 76 16 20 36 48 10 20 28 38 8 20 +minecraft:green_candle[candles=3,lit=false,waterlogged=false] 72 96 20 20 57 76 16 20 36 48 10 20 28 38 8 20 +minecraft:green_candle[candles=4,lit=true,waterlogged=true] 100 115 22 20 80 92 17 20 50 57 11 20 40 46 8 20 +minecraft:green_candle[candles=4,lit=true,waterlogged=false] 100 115 22 20 80 92 17 20 50 57 11 20 40 46 8 20 +minecraft:green_candle[candles=4,lit=false,waterlogged=true] 72 96 20 20 57 76 16 20 36 48 10 20 28 38 8 20 +minecraft:green_candle[candles=4,lit=false,waterlogged=false] 72 96 20 20 57 76 16 20 36 48 10 20 28 38 8 20 +minecraft:red_candle 180 65 47 20 144 52 37 20 90 32 23 20 72 26 18 20 +minecraft:red_candle[candles=1,lit=true,waterlogged=false] 180 65 47 20 144 52 37 20 90 32 23 20 72 26 18 20 +minecraft:red_candle[candles=1,lit=false,waterlogged=true] 153 38 36 20 122 30 28 20 76 19 18 20 61 15 14 20 +minecraft:red_candle[candles=1,lit=false,waterlogged=false] 153 38 36 20 122 30 28 20 76 19 18 20 61 15 14 20 +minecraft:red_candle[candles=2,lit=true,waterlogged=true] 180 65 47 20 144 52 37 20 90 32 23 20 72 26 18 20 +minecraft:red_candle[candles=2,lit=true,waterlogged=false] 180 65 47 20 144 52 37 20 90 32 23 20 72 26 18 20 +minecraft:red_candle[candles=2,lit=false,waterlogged=true] 153 38 36 20 122 30 28 20 76 19 18 20 61 15 14 20 +minecraft:red_candle[candles=2,lit=false,waterlogged=false] 153 38 36 20 122 30 28 20 76 19 18 20 61 15 14 20 +minecraft:red_candle[candles=3,lit=true,waterlogged=true] 180 65 47 20 144 52 37 20 90 32 23 20 72 26 18 20 +minecraft:red_candle[candles=3,lit=true,waterlogged=false] 180 65 47 20 144 52 37 20 90 32 23 20 72 26 18 20 +minecraft:red_candle[candles=3,lit=false,waterlogged=true] 153 38 36 20 122 30 28 20 76 19 18 20 61 15 14 20 +minecraft:red_candle[candles=3,lit=false,waterlogged=false] 153 38 36 20 122 30 28 20 76 19 18 20 61 15 14 20 +minecraft:red_candle[candles=4,lit=true,waterlogged=true] 180 65 47 20 144 52 37 20 90 32 23 20 72 26 18 20 +minecraft:red_candle[candles=4,lit=true,waterlogged=false] 180 65 47 20 144 52 37 20 90 32 23 20 72 26 18 20 +minecraft:red_candle[candles=4,lit=false,waterlogged=true] 153 38 36 20 122 30 28 20 76 19 18 20 61 15 14 20 +minecraft:red_candle[candles=4,lit=false,waterlogged=false] 153 38 36 20 122 30 28 20 76 19 18 20 61 15 14 20 +minecraft:black_candle 73 48 51 20 58 38 40 20 36 24 25 20 29 19 20 20 +minecraft:black_candle[candles=1,lit=true,waterlogged=false] 73 48 51 20 58 38 40 20 36 24 25 20 29 19 20 20 +minecraft:black_candle[candles=1,lit=false,waterlogged=true] 38 36 57 20 30 28 45 20 19 18 28 20 15 14 22 20 +minecraft:black_candle[candles=1,lit=false,waterlogged=false] 38 36 57 20 30 28 45 20 19 18 28 20 15 14 22 20 +minecraft:black_candle[candles=2,lit=true,waterlogged=true] 73 48 51 20 58 38 40 20 36 24 25 20 29 19 20 20 +minecraft:black_candle[candles=2,lit=true,waterlogged=false] 73 48 51 20 58 38 40 20 36 24 25 20 29 19 20 20 +minecraft:black_candle[candles=2,lit=false,waterlogged=true] 38 36 57 20 30 28 45 20 19 18 28 20 15 14 22 20 +minecraft:black_candle[candles=2,lit=false,waterlogged=false] 38 36 57 20 30 28 45 20 19 18 28 20 15 14 22 20 +minecraft:black_candle[candles=3,lit=true,waterlogged=true] 73 48 51 20 58 38 40 20 36 24 25 20 29 19 20 20 +minecraft:black_candle[candles=3,lit=true,waterlogged=false] 73 48 51 20 58 38 40 20 36 24 25 20 29 19 20 20 +minecraft:black_candle[candles=3,lit=false,waterlogged=true] 38 36 57 20 30 28 45 20 19 18 28 20 15 14 22 20 +minecraft:black_candle[candles=3,lit=false,waterlogged=false] 38 36 57 20 30 28 45 20 19 18 28 20 15 14 22 20 +minecraft:black_candle[candles=4,lit=true,waterlogged=true] 73 48 51 20 58 38 40 20 36 24 25 20 29 19 20 20 +minecraft:black_candle[candles=4,lit=true,waterlogged=false] 73 48 51 20 58 38 40 20 36 24 25 20 29 19 20 20 +minecraft:black_candle[candles=4,lit=false,waterlogged=true] 38 36 57 20 30 28 45 20 19 18 28 20 15 14 22 20 +minecraft:black_candle[candles=4,lit=false,waterlogged=false] 38 36 57 20 30 28 45 20 19 18 28 20 15 14 22 20 +minecraft:candle_cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:candle_cake[lit=false] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:white_candle_cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:white_candle_cake[lit=false] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:orange_candle_cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:orange_candle_cake[lit=false] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:magenta_candle_cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:magenta_candle_cake[lit=false] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:light_blue_candle_cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:light_blue_candle_cake[lit=false] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:yellow_candle_cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:yellow_candle_cake[lit=false] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:lime_candle_cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:lime_candle_cake[lit=false] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:pink_candle_cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:pink_candle_cake[lit=false] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:gray_candle_cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:gray_candle_cake[lit=false] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:light_gray_candle_cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:light_gray_candle_cake[lit=false] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:cyan_candle_cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:cyan_candle_cake[lit=false] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:purple_candle_cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:purple_candle_cake[lit=false] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:blue_candle_cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:blue_candle_cake[lit=false] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:brown_candle_cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:brown_candle_cake[lit=false] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:green_candle_cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:green_candle_cake[lit=false] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:red_candle_cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:red_candle_cake[lit=false] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:black_candle_cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:black_candle_cake[lit=false] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:amethyst_block 133 97 191 255 106 77 152 255 66 48 95 255 53 38 76 255 +minecraft:budding_amethyst 132 96 186 255 105 76 148 255 66 48 93 255 52 38 74 255 +minecraft:amethyst_cluster 163 126 207 139 130 100 165 139 81 63 103 139 65 50 82 139 +minecraft:amethyst_cluster[facing=north,waterlogged=false] 163 126 207 139 130 100 165 139 81 63 103 139 65 50 82 139 +minecraft:amethyst_cluster[facing=east,waterlogged=true] 163 126 207 139 130 100 165 139 81 63 103 139 65 50 82 139 +minecraft:amethyst_cluster[facing=east,waterlogged=false] 163 126 207 139 130 100 165 139 81 63 103 139 65 50 82 139 +minecraft:amethyst_cluster[facing=south,waterlogged=true] 163 126 207 139 130 100 165 139 81 63 103 139 65 50 82 139 +minecraft:amethyst_cluster[facing=south,waterlogged=false] 163 126 207 139 130 100 165 139 81 63 103 139 65 50 82 139 +minecraft:amethyst_cluster[facing=west,waterlogged=true] 163 126 207 139 130 100 165 139 81 63 103 139 65 50 82 139 +minecraft:amethyst_cluster[facing=west,waterlogged=false] 163 126 207 139 130 100 165 139 81 63 103 139 65 50 82 139 +minecraft:amethyst_cluster[facing=up,waterlogged=true] 163 126 207 139 130 100 165 139 81 63 103 139 65 50 82 139 +minecraft:amethyst_cluster[facing=up,waterlogged=false] 163 126 207 139 130 100 165 139 81 63 103 139 65 50 82 139 +minecraft:amethyst_cluster[facing=down,waterlogged=true] 163 126 207 139 130 100 165 139 81 63 103 139 65 50 82 139 +minecraft:amethyst_cluster[facing=down,waterlogged=false] 163 126 207 139 130 100 165 139 81 63 103 139 65 50 82 139 +minecraft:large_amethyst_bud 161 126 202 77 128 100 161 77 80 63 101 77 64 50 80 77 +minecraft:large_amethyst_bud[facing=north,waterlogged=false] 161 126 202 77 128 100 161 77 80 63 101 77 64 50 80 77 +minecraft:large_amethyst_bud[facing=east,waterlogged=true] 161 126 202 77 128 100 161 77 80 63 101 77 64 50 80 77 +minecraft:large_amethyst_bud[facing=east,waterlogged=false] 161 126 202 77 128 100 161 77 80 63 101 77 64 50 80 77 +minecraft:large_amethyst_bud[facing=south,waterlogged=true] 161 126 202 77 128 100 161 77 80 63 101 77 64 50 80 77 +minecraft:large_amethyst_bud[facing=south,waterlogged=false] 161 126 202 77 128 100 161 77 80 63 101 77 64 50 80 77 +minecraft:large_amethyst_bud[facing=west,waterlogged=true] 161 126 202 77 128 100 161 77 80 63 101 77 64 50 80 77 +minecraft:large_amethyst_bud[facing=west,waterlogged=false] 161 126 202 77 128 100 161 77 80 63 101 77 64 50 80 77 +minecraft:large_amethyst_bud[facing=up,waterlogged=true] 161 126 202 77 128 100 161 77 80 63 101 77 64 50 80 77 +minecraft:large_amethyst_bud[facing=up,waterlogged=false] 161 126 202 77 128 100 161 77 80 63 101 77 64 50 80 77 +minecraft:large_amethyst_bud[facing=down,waterlogged=true] 161 126 202 77 128 100 161 77 80 63 101 77 64 50 80 77 +minecraft:large_amethyst_bud[facing=down,waterlogged=false] 161 126 202 77 128 100 161 77 80 63 101 77 64 50 80 77 +minecraft:medium_amethyst_bud 158 120 201 50 126 96 160 50 79 60 100 50 63 48 80 50 +minecraft:medium_amethyst_bud[facing=north,waterlogged=false] 158 120 201 50 126 96 160 50 79 60 100 50 63 48 80 50 +minecraft:medium_amethyst_bud[facing=east,waterlogged=true] 158 120 201 50 126 96 160 50 79 60 100 50 63 48 80 50 +minecraft:medium_amethyst_bud[facing=east,waterlogged=false] 158 120 201 50 126 96 160 50 79 60 100 50 63 48 80 50 +minecraft:medium_amethyst_bud[facing=south,waterlogged=true] 158 120 201 50 126 96 160 50 79 60 100 50 63 48 80 50 +minecraft:medium_amethyst_bud[facing=south,waterlogged=false] 158 120 201 50 126 96 160 50 79 60 100 50 63 48 80 50 +minecraft:medium_amethyst_bud[facing=west,waterlogged=true] 158 120 201 50 126 96 160 50 79 60 100 50 63 48 80 50 +minecraft:medium_amethyst_bud[facing=west,waterlogged=false] 158 120 201 50 126 96 160 50 79 60 100 50 63 48 80 50 +minecraft:medium_amethyst_bud[facing=up,waterlogged=true] 158 120 201 50 126 96 160 50 79 60 100 50 63 48 80 50 +minecraft:medium_amethyst_bud[facing=up,waterlogged=false] 158 120 201 50 126 96 160 50 79 60 100 50 63 48 80 50 +minecraft:medium_amethyst_bud[facing=down,waterlogged=true] 158 120 201 50 126 96 160 50 79 60 100 50 63 48 80 50 +minecraft:medium_amethyst_bud[facing=down,waterlogged=false] 158 120 201 50 126 96 160 50 79 60 100 50 63 48 80 50 +minecraft:small_amethyst_bud 131 99 192 31 104 79 153 31 65 49 96 31 52 39 76 31 +minecraft:small_amethyst_bud[facing=north,waterlogged=false] 131 99 192 31 104 79 153 31 65 49 96 31 52 39 76 31 +minecraft:small_amethyst_bud[facing=east,waterlogged=true] 131 99 192 31 104 79 153 31 65 49 96 31 52 39 76 31 +minecraft:small_amethyst_bud[facing=east,waterlogged=false] 131 99 192 31 104 79 153 31 65 49 96 31 52 39 76 31 +minecraft:small_amethyst_bud[facing=south,waterlogged=true] 131 99 192 31 104 79 153 31 65 49 96 31 52 39 76 31 +minecraft:small_amethyst_bud[facing=south,waterlogged=false] 131 99 192 31 104 79 153 31 65 49 96 31 52 39 76 31 +minecraft:small_amethyst_bud[facing=west,waterlogged=true] 131 99 192 31 104 79 153 31 65 49 96 31 52 39 76 31 +minecraft:small_amethyst_bud[facing=west,waterlogged=false] 131 99 192 31 104 79 153 31 65 49 96 31 52 39 76 31 +minecraft:small_amethyst_bud[facing=up,waterlogged=true] 131 99 192 31 104 79 153 31 65 49 96 31 52 39 76 31 +minecraft:small_amethyst_bud[facing=up,waterlogged=false] 131 99 192 31 104 79 153 31 65 49 96 31 52 39 76 31 +minecraft:small_amethyst_bud[facing=down,waterlogged=true] 131 99 192 31 104 79 153 31 65 49 96 31 52 39 76 31 +minecraft:small_amethyst_bud[facing=down,waterlogged=false] 131 99 192 31 104 79 153 31 65 49 96 31 52 39 76 31 +minecraft:tuff 108 109 102 255 86 87 81 255 54 54 51 255 43 43 40 255 +minecraft:calcite 223 224 220 255 178 179 176 255 111 112 110 255 89 89 88 255 +minecraft:tinted_glass 44 38 46 131 35 30 36 131 22 19 23 131 17 15 18 131 +minecraft:powder_snow 248 253 253 255 198 202 202 255 124 126 126 255 99 101 101 255 +minecraft:sculk_sensor 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 +minecraft:sculk_sensor[power=0,sculk_sensor_phase=inactive,waterlogged=false] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 +minecraft:sculk_sensor[power=0,sculk_sensor_phase=active,waterlogged=true] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 +minecraft:sculk_sensor[power=0,sculk_sensor_phase=active,waterlogged=false] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 +minecraft:sculk_sensor[power=0,sculk_sensor_phase=cooldown,waterlogged=true] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 +minecraft:sculk_sensor[power=0,sculk_sensor_phase=cooldown,waterlogged=false] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 +minecraft:sculk_sensor[power=1,sculk_sensor_phase=inactive,waterlogged=true] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 +minecraft:sculk_sensor[power=1,sculk_sensor_phase=inactive,waterlogged=false] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 +minecraft:sculk_sensor[power=1,sculk_sensor_phase=active,waterlogged=true] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 +minecraft:sculk_sensor[power=1,sculk_sensor_phase=active,waterlogged=false] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 +minecraft:sculk_sensor[power=1,sculk_sensor_phase=cooldown,waterlogged=true] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 +minecraft:sculk_sensor[power=1,sculk_sensor_phase=cooldown,waterlogged=false] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 +minecraft:sculk_sensor[power=2,sculk_sensor_phase=inactive,waterlogged=true] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 +minecraft:sculk_sensor[power=2,sculk_sensor_phase=inactive,waterlogged=false] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 +minecraft:sculk_sensor[power=2,sculk_sensor_phase=active,waterlogged=true] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 +minecraft:sculk_sensor[power=2,sculk_sensor_phase=active,waterlogged=false] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 +minecraft:oxidized_copper 82 162 132 255 65 129 105 255 41 81 66 255 32 64 52 255 +minecraft:weathered_copper 108 153 110 255 86 122 88 255 54 76 55 255 43 61 44 255 +minecraft:exposed_copper 161 125 103 255 128 100 82 255 80 62 51 255 64 50 41 255 +minecraft:copper_block 192 107 79 255 153 85 63 255 96 53 39 255 76 42 31 255 +minecraft:copper_ore 124 125 120 255 99 100 96 255 62 62 60 255 49 50 48 255 +minecraft:deepslate_copper_ore 92 93 89 255 73 74 71 255 46 46 44 255 36 37 35 255 +minecraft:oxidized_cut_copper 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:weathered_cut_copper 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:exposed_cut_copper 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:cut_copper 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:oxidized_cut_copper_stairs 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:weathered_cut_copper_stairs 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:exposed_cut_copper_stairs 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:cut_copper_stairs 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:oxidized_cut_copper_slab 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_slab[type=top,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_slab[type=bottom,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_slab[type=bottom,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_slab[type=double,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_slab[type=double,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:weathered_cut_copper_slab 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_slab[type=top,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_slab[type=bottom,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_slab[type=bottom,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_slab[type=double,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_slab[type=double,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:exposed_cut_copper_slab 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_slab[type=top,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_slab[type=bottom,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_slab[type=bottom,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_slab[type=double,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_slab[type=double,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:cut_copper_slab 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_slab[type=top,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_slab[type=bottom,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_slab[type=bottom,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_slab[type=double,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_slab[type=double,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_copper_block 192 107 79 255 153 85 63 255 96 53 39 255 76 42 31 255 +minecraft:waxed_weathered_copper 108 153 110 255 86 122 88 255 54 76 55 255 43 61 44 255 +minecraft:waxed_exposed_copper 161 125 103 255 128 100 82 255 80 62 51 255 64 50 41 255 +minecraft:waxed_oxidized_copper 82 162 132 255 65 129 105 255 41 81 66 255 32 64 52 255 +minecraft:waxed_oxidized_cut_copper 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_weathered_cut_copper 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_exposed_cut_copper 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_cut_copper 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_oxidized_cut_copper_stairs 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_weathered_cut_copper_stairs 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_exposed_cut_copper_stairs 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_cut_copper_stairs 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_oxidized_cut_copper_slab 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_slab[type=top,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_slab[type=bottom,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_slab[type=bottom,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_slab[type=double,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_slab[type=double,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_weathered_cut_copper_slab 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_slab[type=top,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_slab[type=bottom,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_slab[type=bottom,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_slab[type=double,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_slab[type=double,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_exposed_cut_copper_slab 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_slab[type=top,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_slab[type=bottom,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_slab[type=bottom,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_slab[type=double,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_slab[type=double,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_cut_copper_slab 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_slab[type=top,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_slab[type=bottom,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_slab[type=bottom,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_slab[type=double,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_slab[type=double,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:pointed_dripstone 138 111 95 85 110 88 76 85 69 55 47 85 55 44 38 85 +minecraft:pointed_dripstone[thickness=tip_merge,vertical_direction=up,waterlogged=false] 138 111 95 85 110 88 76 85 69 55 47 85 55 44 38 85 +minecraft:pointed_dripstone[thickness=tip_merge,vertical_direction=down,waterlogged=true] 138 111 95 85 110 88 76 85 69 55 47 85 55 44 38 85 +minecraft:pointed_dripstone[thickness=tip_merge,vertical_direction=down,waterlogged=false] 138 111 95 85 110 88 76 85 69 55 47 85 55 44 38 85 +minecraft:pointed_dripstone[thickness=tip,vertical_direction=up,waterlogged=true] 136 109 93 52 108 87 74 52 68 54 46 52 54 43 37 52 +minecraft:pointed_dripstone[thickness=tip,vertical_direction=up,waterlogged=false] 136 109 93 52 108 87 74 52 68 54 46 52 54 43 37 52 +minecraft:pointed_dripstone[thickness=tip,vertical_direction=down,waterlogged=true] 136 109 93 52 108 87 74 52 68 54 46 52 54 43 37 52 +minecraft:pointed_dripstone[thickness=tip,vertical_direction=down,waterlogged=false] 136 109 93 52 108 87 74 52 68 54 46 52 54 43 37 52 +minecraft:pointed_dripstone[thickness=frustum,vertical_direction=up,waterlogged=true] 128 102 89 165 102 81 71 165 64 51 44 165 51 40 35 165 +minecraft:pointed_dripstone[thickness=frustum,vertical_direction=up,waterlogged=false] 128 102 89 165 102 81 71 165 64 51 44 165 51 40 35 165 +minecraft:pointed_dripstone[thickness=frustum,vertical_direction=down,waterlogged=true] 128 102 89 165 102 81 71 165 64 51 44 165 51 40 35 165 +minecraft:pointed_dripstone[thickness=frustum,vertical_direction=down,waterlogged=false] 128 102 89 165 102 81 71 165 64 51 44 165 51 40 35 165 +minecraft:pointed_dripstone[thickness=middle,vertical_direction=up,waterlogged=true] 130 103 90 185 104 82 72 185 65 51 45 185 52 41 36 185 +minecraft:pointed_dripstone[thickness=middle,vertical_direction=up,waterlogged=false] 130 103 90 185 104 82 72 185 65 51 45 185 52 41 36 185 +minecraft:pointed_dripstone[thickness=middle,vertical_direction=down,waterlogged=true] 130 103 90 185 104 82 72 185 65 51 45 185 52 41 36 185 +minecraft:pointed_dripstone[thickness=middle,vertical_direction=down,waterlogged=false] 130 103 90 185 104 82 72 185 65 51 45 185 52 41 36 185 +minecraft:pointed_dripstone[thickness=base,vertical_direction=up,waterlogged=true] 129 102 89 229 103 81 71 229 64 51 44 229 51 40 35 229 +minecraft:pointed_dripstone[thickness=base,vertical_direction=up,waterlogged=false] 129 102 89 229 103 81 71 229 64 51 44 229 51 40 35 229 +minecraft:pointed_dripstone[thickness=base,vertical_direction=down,waterlogged=true] 129 102 89 229 103 81 71 229 64 51 44 229 51 40 35 229 +minecraft:pointed_dripstone[thickness=base,vertical_direction=down,waterlogged=false] 129 102 89 229 103 81 71 229 64 51 44 229 51 40 35 229 +minecraft:dripstone_block 134 107 92 255 107 85 73 255 67 53 46 255 53 42 36 255 +minecraft:cave_vines 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=0,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=1,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=1,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=2,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=2,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=3,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=3,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=4,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=4,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=5,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=5,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=6,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=6,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=7,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=7,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=8,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=8,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=9,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=9,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=10,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=10,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=11,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=11,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=12,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=12,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=13,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=13,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=14,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=14,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=15,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=15,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=16,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=16,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=17,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=17,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=18,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=18,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=19,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=19,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=20,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=20,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=21,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=21,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=22,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=22,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=23,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=23,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=24,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=24,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=25,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=25,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines_plant 105 107 40 159 84 85 32 159 52 53 20 159 42 42 16 159 +minecraft:cave_vines_plant[berries=false] 88 101 38 143 70 80 30 143 44 50 19 143 35 40 15 143 +minecraft:spore_blossom 206 96 158 123 164 76 126 123 103 48 79 123 82 38 63 123 +minecraft:azalea 93 117 45 153 74 93 36 153 46 58 22 153 37 46 18 153 +minecraft:flowering_azalea 111 113 73 153 88 90 58 153 55 56 36 153 44 45 29 153 +minecraft:moss_carpet 89 109 45 255 71 87 36 255 44 54 22 255 35 43 18 255 +minecraft:moss_block 89 109 45 255 71 87 36 255 44 54 22 255 35 43 18 255 +minecraft:big_dripleaf_stem 91 115 45 83 72 92 36 83 45 57 22 83 36 46 18 83 +minecraft:big_dripleaf_stem[facing=north,waterlogged=false] 91 115 45 83 72 92 36 83 45 57 22 83 36 46 18 83 +minecraft:big_dripleaf_stem[facing=south,waterlogged=true] 91 115 45 83 72 92 36 83 45 57 22 83 36 46 18 83 +minecraft:big_dripleaf_stem[facing=south,waterlogged=false] 91 115 45 83 72 92 36 83 45 57 22 83 36 46 18 83 +minecraft:big_dripleaf_stem[facing=west,waterlogged=true] 91 115 45 83 72 92 36 83 45 57 22 83 36 46 18 83 +minecraft:big_dripleaf_stem[facing=west,waterlogged=false] 91 115 45 83 72 92 36 83 45 57 22 83 36 46 18 83 +minecraft:big_dripleaf_stem[facing=east,waterlogged=true] 91 115 45 83 72 92 36 83 45 57 22 83 36 46 18 83 +minecraft:big_dripleaf_stem[facing=east,waterlogged=false] 91 115 45 83 72 92 36 83 45 57 22 83 36 46 18 83 +minecraft:small_dripleaf 94 119 45 63 75 95 36 63 47 59 22 63 37 47 18 63 +minecraft:small_dripleaf[facing=north,half=upper,waterlogged=false] 94 119 45 63 75 95 36 63 47 59 22 63 37 47 18 63 +minecraft:small_dripleaf[facing=north,half=lower,waterlogged=true] 94 122 45 42 75 97 36 42 47 61 22 42 37 48 18 42 +minecraft:small_dripleaf[facing=north,half=lower,waterlogged=false] 94 122 45 42 75 97 36 42 47 61 22 42 37 48 18 42 +minecraft:small_dripleaf[facing=south,half=upper,waterlogged=true] 94 119 45 63 75 95 36 63 47 59 22 63 37 47 18 63 +minecraft:small_dripleaf[facing=south,half=upper,waterlogged=false] 94 119 45 63 75 95 36 63 47 59 22 63 37 47 18 63 +minecraft:small_dripleaf[facing=south,half=lower,waterlogged=true] 94 122 45 42 75 97 36 42 47 61 22 42 37 48 18 42 +minecraft:small_dripleaf[facing=south,half=lower,waterlogged=false] 94 122 45 42 75 97 36 42 47 61 22 42 37 48 18 42 +minecraft:small_dripleaf[facing=west,half=upper,waterlogged=true] 94 119 45 63 75 95 36 63 47 59 22 63 37 47 18 63 +minecraft:small_dripleaf[facing=west,half=upper,waterlogged=false] 94 119 45 63 75 95 36 63 47 59 22 63 37 47 18 63 +minecraft:small_dripleaf[facing=west,half=lower,waterlogged=true] 94 122 45 42 75 97 36 42 47 61 22 42 37 48 18 42 +minecraft:small_dripleaf[facing=west,half=lower,waterlogged=false] 94 122 45 42 75 97 36 42 47 61 22 42 37 48 18 42 +minecraft:small_dripleaf[facing=east,half=upper,waterlogged=true] 94 119 45 63 75 95 36 63 47 59 22 63 37 47 18 63 +minecraft:small_dripleaf[facing=east,half=upper,waterlogged=false] 94 119 45 63 75 95 36 63 47 59 22 63 37 47 18 63 +minecraft:small_dripleaf[facing=east,half=lower,waterlogged=true] 94 122 45 42 75 97 36 42 47 61 22 42 37 48 18 42 +minecraft:small_dripleaf[facing=east,half=lower,waterlogged=false] 94 122 45 42 75 97 36 42 47 61 22 42 37 48 18 42 +minecraft:hanging_roots 161 115 91 74 128 92 72 74 80 57 45 74 64 46 36 74 +minecraft:hanging_roots[waterlogged=false] 161 115 91 74 128 92 72 74 80 57 45 74 64 46 36 74 +minecraft:rooted_dirt 144 103 76 255 115 82 60 255 72 51 38 255 57 41 30 255 +minecraft:deepslate 80 80 82 255 64 64 65 255 40 40 41 255 32 32 32 255 +minecraft:deepslate[axis=y] 87 87 89 255 69 69 71 255 43 43 44 255 34 34 35 255 +minecraft:deepslate[axis=z] 80 80 82 255 64 64 65 255 40 40 41 255 32 32 32 255 +minecraft:cobbled_deepslate 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=straight,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=straight,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=straight,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=straight,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=straight,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=straight,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=straight,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_slab 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_slab[type=top,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_slab[type=bottom,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_slab[type=bottom,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_slab[type=double,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_slab[type=double,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:polished_deepslate 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=north,half=top,shape=straight,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=south,half=top,shape=straight,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=south,half=top,shape=straight,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=west,half=top,shape=straight,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=west,half=top,shape=straight,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=east,half=top,shape=straight,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=east,half=top,shape=straight,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_slab 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_slab[type=top,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_slab[type=bottom,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_slab[type=bottom,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_slab[type=double,waterlogged=true] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_slab[type=double,waterlogged=false] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 72 72 73 255 57 57 58 255 36 36 36 255 28 28 29 255 +minecraft:deepslate_tiles 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=north,half=top,shape=straight,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=south,half=top,shape=straight,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=south,half=top,shape=straight,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=west,half=top,shape=straight,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=west,half=top,shape=straight,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=east,half=top,shape=straight,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=east,half=top,shape=straight,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_slab 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_slab[type=top,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_slab[type=bottom,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_slab[type=bottom,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_slab[type=double,waterlogged=true] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_slab[type=double,waterlogged=false] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 54 54 55 255 43 43 44 255 27 27 27 255 21 21 22 255 +minecraft:deepslate_bricks 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_slab 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_slab[type=top,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_slab[type=bottom,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_slab[type=bottom,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_slab[type=double,waterlogged=true] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_slab[type=double,waterlogged=false] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 70 70 71 255 56 56 56 255 35 35 35 255 28 28 28 255 +minecraft:chiseled_deepslate 54 54 54 255 43 43 43 255 27 27 27 255 21 21 21 255 +minecraft:cracked_deepslate_bricks 64 64 65 255 51 51 52 255 32 32 32 255 25 25 26 255 +minecraft:cracked_deepslate_tiles 52 52 52 255 41 41 41 255 26 26 26 255 20 20 20 255 +minecraft:infested_deepslate 80 80 82 255 64 64 65 255 40 40 41 255 32 32 32 255 +minecraft:infested_deepslate[axis=y] 87 87 89 255 69 69 71 255 43 43 44 255 34 34 35 255 +minecraft:infested_deepslate[axis=z] 80 80 82 255 64 64 65 255 40 40 41 255 32 32 32 255 +minecraft:smooth_basalt 72 72 78 255 57 57 62 255 36 36 39 255 28 28 31 255 +minecraft:raw_iron_block 166 135 107 255 132 108 85 255 83 67 53 255 66 54 42 255 +minecraft:raw_copper_block 154 105 79 255 123 84 63 255 77 52 39 255 61 42 31 255 +minecraft:raw_gold_block 221 169 46 255 176 135 36 255 110 84 23 255 88 67 18 255 diff --git a/DynmapCore/src/main/resources/extracted/colorschemes/misa.txt b/DynmapCore/src/main/resources/extracted/colorschemes/misa.txt index 50e36022..5e765d3b 100644 --- a/DynmapCore/src/main/resources/extracted/colorschemes/misa.txt +++ b/DynmapCore/src/main/resources/extracted/colorschemes/misa.txt @@ -31,7 +31,22 @@ minecraft:acacia_sapling[stage=1] 88 93 51 64 70 74 40 64 44 46 25 64 35 37 20 6 minecraft:dark_oak_sapling 40 45 32 110 32 36 25 110 20 22 16 110 16 18 12 110 minecraft:dark_oak_sapling[stage=1] 40 45 32 110 32 36 25 110 20 22 16 110 16 18 12 110 minecraft:bedrock 65 60 56 255 52 48 44 255 32 30 28 255 26 24 22 255 -minecraft:water 47 67 244 179 37 53 195 179 23 33 122 179 18 26 97 179 +minecraft:water 154 154 154 218 123 123 123 218 77 77 77 218 61 61 61 218 +minecraft:water[level=1] 154 154 154 218 123 123 123 218 77 77 77 218 61 61 61 218 +minecraft:water[level=2] 154 154 154 218 123 123 123 218 77 77 77 218 61 61 61 218 +minecraft:water[level=3] 154 154 154 218 123 123 123 218 77 77 77 218 61 61 61 218 +minecraft:water[level=4] 154 154 154 218 123 123 123 218 77 77 77 218 61 61 61 218 +minecraft:water[level=5] 154 154 154 218 123 123 123 218 77 77 77 218 61 61 61 218 +minecraft:water[level=6] 154 154 154 218 123 123 123 218 77 77 77 218 61 61 61 218 +minecraft:water[level=7] 154 154 154 218 123 123 123 218 77 77 77 218 61 61 61 218 +minecraft:water[level=8] 154 154 154 218 123 123 123 218 77 77 77 218 61 61 61 218 +minecraft:water[level=9] 154 154 154 218 123 123 123 218 77 77 77 218 61 61 61 218 +minecraft:water[level=10] 154 154 154 218 123 123 123 218 77 77 77 218 61 61 61 218 +minecraft:water[level=11] 154 154 154 218 123 123 123 218 77 77 77 218 61 61 61 218 +minecraft:water[level=12] 154 154 154 218 123 123 123 218 77 77 77 218 61 61 61 218 +minecraft:water[level=13] 154 154 154 218 123 123 123 218 77 77 77 218 61 61 61 218 +minecraft:water[level=14] 154 154 154 218 123 123 123 218 77 77 77 218 61 61 61 218 +minecraft:water[level=15] 154 154 154 218 123 123 123 218 77 77 77 218 61 61 61 218 minecraft:lava 200 63 39 255 160 50 31 255 100 31 19 255 80 25 15 255 minecraft:lava[level=1] 200 63 39 255 160 50 31 255 100 31 19 255 80 25 15 255 minecraft:lava[level=2] 200 63 39 255 160 50 31 255 100 31 19 255 80 25 15 255 @@ -1111,18 +1126,18 @@ minecraft:detector_rail[powered=false,shape=ascending_north,waterlogged=true] 75 minecraft:detector_rail[powered=false,shape=ascending_north,waterlogged=false] 75 74 73 160 60 59 58 160 37 37 36 160 30 29 29 160 minecraft:detector_rail[powered=false,shape=ascending_south,waterlogged=true] 75 74 73 160 60 59 58 160 37 37 36 160 30 29 29 160 minecraft:detector_rail[powered=false,shape=ascending_south,waterlogged=false] 75 74 73 160 60 59 58 160 37 37 36 160 30 29 29 160 -minecraft:sticky_piston 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255 -minecraft:sticky_piston[extended=true,facing=east] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255 -minecraft:sticky_piston[extended=true,facing=south] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255 -minecraft:sticky_piston[extended=true,facing=west] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255 -minecraft:sticky_piston[extended=true,facing=up] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255 -minecraft:sticky_piston[extended=true,facing=down] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255 -minecraft:sticky_piston[extended=false,facing=north] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255 -minecraft:sticky_piston[extended=false,facing=east] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255 -minecraft:sticky_piston[extended=false,facing=south] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255 -minecraft:sticky_piston[extended=false,facing=west] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255 -minecraft:sticky_piston[extended=false,facing=up] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255 -minecraft:sticky_piston[extended=false,facing=down] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255 +minecraft:sticky_piston 95 86 83 15 76 68 66 15 47 43 41 15 38 34 33 15 +minecraft:sticky_piston[extended=true,facing=east] 95 86 83 15 76 68 66 15 47 43 41 15 38 34 33 15 +minecraft:sticky_piston[extended=true,facing=south] 95 86 83 15 76 68 66 15 47 43 41 15 38 34 33 15 +minecraft:sticky_piston[extended=true,facing=west] 95 86 83 15 76 68 66 15 47 43 41 15 38 34 33 15 +minecraft:sticky_piston[extended=true,facing=up] 95 86 83 15 76 68 66 15 47 43 41 15 38 34 33 15 +minecraft:sticky_piston[extended=true,facing=down] 95 86 83 15 76 68 66 15 47 43 41 15 38 34 33 15 +minecraft:sticky_piston[extended=false,facing=north] 95 86 83 15 76 68 66 15 47 43 41 15 38 34 33 15 +minecraft:sticky_piston[extended=false,facing=east] 95 86 83 15 76 68 66 15 47 43 41 15 38 34 33 15 +minecraft:sticky_piston[extended=false,facing=south] 95 86 83 15 76 68 66 15 47 43 41 15 38 34 33 15 +minecraft:sticky_piston[extended=false,facing=west] 95 86 83 15 76 68 66 15 47 43 41 15 38 34 33 15 +minecraft:sticky_piston[extended=false,facing=up] 95 86 83 15 76 68 66 15 47 43 41 15 38 34 33 15 +minecraft:sticky_piston[extended=false,facing=down] 95 86 83 15 76 68 66 15 47 43 41 15 38 34 33 15 minecraft:cobweb 170 162 169 44 136 129 135 44 85 81 84 44 68 64 67 44 minecraft:grass 53 72 32 116 42 57 25 116 26 36 16 116 21 28 12 116 minecraft:fern 44 64 32 88 35 51 25 88 22 32 16 88 17 25 12 88 @@ -1130,42 +1145,42 @@ minecraft:dead_bush 96 81 66 69 76 64 52 69 48 40 33 69 38 32 26 69 minecraft:seagrass 20 37 12 69 16 29 9 69 10 18 6 69 8 14 4 69 minecraft:tall_seagrass 11 35 10 41 8 28 8 41 5 17 5 41 4 14 4 41 minecraft:tall_seagrass[half=lower] 17 34 11 132 13 27 8 132 8 17 5 132 6 13 4 132 -minecraft:piston 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255 -minecraft:piston[extended=true,facing=east] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255 -minecraft:piston[extended=true,facing=south] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255 -minecraft:piston[extended=true,facing=west] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255 -minecraft:piston[extended=true,facing=up] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255 -minecraft:piston[extended=true,facing=down] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255 -minecraft:piston[extended=false,facing=north] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255 -minecraft:piston[extended=false,facing=east] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255 -minecraft:piston[extended=false,facing=south] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255 -minecraft:piston[extended=false,facing=west] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255 -minecraft:piston[extended=false,facing=up] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255 -minecraft:piston[extended=false,facing=down] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255 -minecraft:piston_head 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255 -minecraft:piston_head[facing=north,short=true,type=sticky] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255 -minecraft:piston_head[facing=north,short=false,type=normal] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255 -minecraft:piston_head[facing=north,short=false,type=sticky] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255 -minecraft:piston_head[facing=east,short=true,type=normal] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255 -minecraft:piston_head[facing=east,short=true,type=sticky] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255 -minecraft:piston_head[facing=east,short=false,type=normal] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255 -minecraft:piston_head[facing=east,short=false,type=sticky] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255 -minecraft:piston_head[facing=south,short=true,type=normal] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255 -minecraft:piston_head[facing=south,short=true,type=sticky] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255 -minecraft:piston_head[facing=south,short=false,type=normal] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255 -minecraft:piston_head[facing=south,short=false,type=sticky] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255 -minecraft:piston_head[facing=west,short=true,type=normal] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255 -minecraft:piston_head[facing=west,short=true,type=sticky] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255 -minecraft:piston_head[facing=west,short=false,type=normal] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255 -minecraft:piston_head[facing=west,short=false,type=sticky] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255 -minecraft:piston_head[facing=up,short=true,type=normal] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255 -minecraft:piston_head[facing=up,short=true,type=sticky] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255 -minecraft:piston_head[facing=up,short=false,type=normal] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255 -minecraft:piston_head[facing=up,short=false,type=sticky] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255 -minecraft:piston_head[facing=down,short=true,type=normal] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255 -minecraft:piston_head[facing=down,short=true,type=sticky] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255 -minecraft:piston_head[facing=down,short=false,type=normal] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255 -minecraft:piston_head[facing=down,short=false,type=sticky] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255 +minecraft:piston 95 86 83 15 76 68 66 15 47 43 41 15 38 34 33 15 +minecraft:piston[extended=true,facing=east] 95 86 83 15 76 68 66 15 47 43 41 15 38 34 33 15 +minecraft:piston[extended=true,facing=south] 95 86 83 15 76 68 66 15 47 43 41 15 38 34 33 15 +minecraft:piston[extended=true,facing=west] 95 86 83 15 76 68 66 15 47 43 41 15 38 34 33 15 +minecraft:piston[extended=true,facing=up] 95 86 83 15 76 68 66 15 47 43 41 15 38 34 33 15 +minecraft:piston[extended=true,facing=down] 95 86 83 15 76 68 66 15 47 43 41 15 38 34 33 15 +minecraft:piston[extended=false,facing=north] 95 86 83 15 76 68 66 15 47 43 41 15 38 34 33 15 +minecraft:piston[extended=false,facing=east] 95 86 83 15 76 68 66 15 47 43 41 15 38 34 33 15 +minecraft:piston[extended=false,facing=south] 95 86 83 15 76 68 66 15 47 43 41 15 38 34 33 15 +minecraft:piston[extended=false,facing=west] 95 86 83 15 76 68 66 15 47 43 41 15 38 34 33 15 +minecraft:piston[extended=false,facing=up] 95 86 83 15 76 68 66 15 47 43 41 15 38 34 33 15 +minecraft:piston[extended=false,facing=down] 95 86 83 15 76 68 66 15 47 43 41 15 38 34 33 15 +minecraft:piston_head 95 86 83 47 76 68 66 47 47 43 41 47 38 34 33 47 +minecraft:piston_head[facing=north,short=true,type=sticky] 95 86 83 47 76 68 66 47 47 43 41 47 38 34 33 47 +minecraft:piston_head[facing=north,short=false,type=normal] 95 86 83 47 76 68 66 47 47 43 41 47 38 34 33 47 +minecraft:piston_head[facing=north,short=false,type=sticky] 95 86 83 47 76 68 66 47 47 43 41 47 38 34 33 47 +minecraft:piston_head[facing=east,short=true,type=normal] 95 86 83 47 76 68 66 47 47 43 41 47 38 34 33 47 +minecraft:piston_head[facing=east,short=true,type=sticky] 95 86 83 47 76 68 66 47 47 43 41 47 38 34 33 47 +minecraft:piston_head[facing=east,short=false,type=normal] 95 86 83 47 76 68 66 47 47 43 41 47 38 34 33 47 +minecraft:piston_head[facing=east,short=false,type=sticky] 95 86 83 47 76 68 66 47 47 43 41 47 38 34 33 47 +minecraft:piston_head[facing=south,short=true,type=normal] 95 86 83 47 76 68 66 47 47 43 41 47 38 34 33 47 +minecraft:piston_head[facing=south,short=true,type=sticky] 95 86 83 47 76 68 66 47 47 43 41 47 38 34 33 47 +minecraft:piston_head[facing=south,short=false,type=normal] 95 86 83 47 76 68 66 47 47 43 41 47 38 34 33 47 +minecraft:piston_head[facing=south,short=false,type=sticky] 95 86 83 47 76 68 66 47 47 43 41 47 38 34 33 47 +minecraft:piston_head[facing=west,short=true,type=normal] 95 86 83 47 76 68 66 47 47 43 41 47 38 34 33 47 +minecraft:piston_head[facing=west,short=true,type=sticky] 95 86 83 47 76 68 66 47 47 43 41 47 38 34 33 47 +minecraft:piston_head[facing=west,short=false,type=normal] 95 86 83 47 76 68 66 47 47 43 41 47 38 34 33 47 +minecraft:piston_head[facing=west,short=false,type=sticky] 95 86 83 47 76 68 66 47 47 43 41 47 38 34 33 47 +minecraft:piston_head[facing=up,short=true,type=normal] 95 86 83 47 76 68 66 47 47 43 41 47 38 34 33 47 +minecraft:piston_head[facing=up,short=true,type=sticky] 95 86 83 47 76 68 66 47 47 43 41 47 38 34 33 47 +minecraft:piston_head[facing=up,short=false,type=normal] 95 86 83 47 76 68 66 47 47 43 41 47 38 34 33 47 +minecraft:piston_head[facing=up,short=false,type=sticky] 95 86 83 47 76 68 66 47 47 43 41 47 38 34 33 47 +minecraft:piston_head[facing=down,short=true,type=normal] 95 86 83 47 76 68 66 47 47 43 41 47 38 34 33 47 +minecraft:piston_head[facing=down,short=true,type=sticky] 95 86 83 47 76 68 66 47 47 43 41 47 38 34 33 47 +minecraft:piston_head[facing=down,short=false,type=normal] 95 86 83 47 76 68 66 47 47 43 41 47 38 34 33 47 +minecraft:piston_head[facing=down,short=false,type=sticky] 95 86 83 47 76 68 66 47 47 43 41 47 38 34 33 47 minecraft:white_wool 215 212 209 255 172 169 167 255 107 106 104 255 86 84 83 255 minecraft:orange_wool 175 104 51 255 140 83 40 255 87 52 25 255 70 41 20 255 minecraft:magenta_wool 156 87 129 255 124 69 103 255 78 43 64 255 62 34 51 255 @@ -3665,10 +3680,10 @@ minecraft:acacia_pressure_plate 134 72 49 255 107 57 39 255 67 36 24 255 53 28 1 minecraft:acacia_pressure_plate[powered=false] 134 72 49 255 107 57 39 255 67 36 24 255 53 28 19 255 minecraft:dark_oak_pressure_plate 54 41 31 255 43 32 24 255 27 20 15 255 21 16 12 255 minecraft:dark_oak_pressure_plate[powered=false] 54 41 31 255 43 32 24 255 27 20 15 255 21 16 12 255 -minecraft:redstone_ore 108 74 75 255 86 59 60 255 54 37 37 255 43 29 30 255 -minecraft:redstone_ore[lit=false] 108 74 75 255 86 59 60 255 54 37 37 255 43 29 30 255 -minecraft:deepslate_redstone_ore 77 51 52 255 61 40 41 255 38 25 26 255 30 20 20 255 -minecraft:deepslate_redstone_ore[lit=false] 77 51 52 255 61 40 41 255 38 25 26 255 30 20 20 255 +minecraft:redstone_ore 114 75 75 255 91 60 60 255 57 37 37 255 45 30 30 255 +minecraft:redstone_ore[lit=false] 114 75 75 255 91 60 60 255 57 37 37 255 45 30 30 255 +minecraft:deepslate_redstone_ore 85 52 52 255 68 41 41 255 42 26 26 255 34 20 20 255 +minecraft:deepslate_redstone_ore[lit=false] 85 52 52 255 68 41 41 255 42 26 26 255 34 20 20 255 minecraft:redstone_torch 111 22 13 24 88 17 10 24 55 11 6 24 44 8 5 24 minecraft:redstone_torch[lit=false] 51 22 13 24 40 17 10 24 25 11 6 24 20 8 5 24 minecraft:redstone_wall_torch 111 22 13 24 88 17 10 24 55 11 6 24 44 8 5 24 @@ -5064,14 +5079,14 @@ minecraft:powder_snow_cauldron 39 36 36 111 31 28 28 111 19 18 18 111 15 14 14 1 minecraft:powder_snow_cauldron[level=2] 39 36 36 111 31 28 28 111 19 18 18 111 15 14 14 111 minecraft:powder_snow_cauldron[level=3] 39 36 36 111 31 28 28 111 19 18 18 111 15 14 14 111 minecraft:end_portal 45 56 50 255 36 44 40 255 22 28 25 255 18 22 20 255 -minecraft:end_portal_frame 45 47 50 255 36 37 40 255 22 23 25 255 18 18 20 255 -minecraft:end_portal_frame[eye=true,facing=south] 45 47 50 255 36 37 40 255 22 23 25 255 18 18 20 255 -minecraft:end_portal_frame[eye=true,facing=west] 45 47 50 255 36 37 40 255 22 23 25 255 18 18 20 255 -minecraft:end_portal_frame[eye=true,facing=east] 45 47 50 255 36 37 40 255 22 23 25 255 18 18 20 255 -minecraft:end_portal_frame[eye=false,facing=north] 102 121 109 95 81 96 87 95 51 60 54 95 40 48 43 95 -minecraft:end_portal_frame[eye=false,facing=south] 102 121 109 95 81 96 87 95 51 60 54 95 40 48 43 95 -minecraft:end_portal_frame[eye=false,facing=west] 102 121 109 95 81 96 87 95 51 60 54 95 40 48 43 95 -minecraft:end_portal_frame[eye=false,facing=east] 102 121 109 95 81 96 87 95 51 60 54 95 40 48 43 95 +minecraft:end_portal_frame 163 157 141 255 130 125 112 255 81 78 70 255 65 62 56 255 +minecraft:end_portal_frame[eye=true,facing=south] 163 157 141 255 130 125 112 255 81 78 70 255 65 62 56 255 +minecraft:end_portal_frame[eye=true,facing=west] 163 157 141 255 130 125 112 255 81 78 70 255 65 62 56 255 +minecraft:end_portal_frame[eye=true,facing=east] 163 157 141 255 130 125 112 255 81 78 70 255 65 62 56 255 +minecraft:end_portal_frame[eye=false,facing=north] 163 157 141 255 130 125 112 255 81 78 70 255 65 62 56 255 +minecraft:end_portal_frame[eye=false,facing=south] 163 157 141 255 130 125 112 255 81 78 70 255 65 62 56 255 +minecraft:end_portal_frame[eye=false,facing=west] 163 157 141 255 130 125 112 255 81 78 70 255 65 62 56 255 +minecraft:end_portal_frame[eye=false,facing=east] 163 157 141 255 130 125 112 255 81 78 70 255 65 62 56 255 minecraft:end_stone 163 157 141 255 130 125 112 255 81 78 70 255 65 62 56 255 minecraft:dragon_egg 69 61 67 255 55 48 53 255 34 30 33 255 27 24 26 255 minecraft:redstone_lamp 124 108 72 255 99 86 57 255 62 54 36 255 49 43 28 255 @@ -14683,14 +14698,14 @@ minecraft:bell[attachment=double_wall,facing=west,powered=true] 252 229 96 57 20 minecraft:bell[attachment=double_wall,facing=west,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 minecraft:bell[attachment=double_wall,facing=east,powered=true] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 minecraft:bell[attachment=double_wall,facing=east,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 -minecraft:lantern 101 90 64 46 80 72 51 46 50 45 32 46 40 36 25 46 -minecraft:lantern[hanging=true,waterlogged=false] 101 90 64 46 80 72 51 46 50 45 32 46 40 36 25 46 -minecraft:lantern[hanging=false,waterlogged=true] 101 90 64 46 80 72 51 46 50 45 32 46 40 36 25 46 -minecraft:lantern[hanging=false,waterlogged=false] 101 90 64 46 80 72 51 46 50 45 32 46 40 36 25 46 -minecraft:soul_lantern 45 77 135 37 36 61 108 37 22 38 67 37 18 30 54 37 -minecraft:soul_lantern[hanging=true,waterlogged=false] 45 77 135 37 36 61 108 37 22 38 67 37 18 30 54 37 -minecraft:soul_lantern[hanging=false,waterlogged=true] 45 77 135 37 36 61 108 37 22 38 67 37 18 30 54 37 -minecraft:soul_lantern[hanging=false,waterlogged=false] 45 77 135 37 36 61 108 37 22 38 67 37 18 30 54 37 +minecraft:lantern 153 128 84 10 122 102 67 10 76 64 42 10 61 51 33 10 +minecraft:lantern[hanging=true,waterlogged=false] 153 128 84 10 122 102 67 10 76 64 42 10 61 51 33 10 +minecraft:lantern[hanging=false,waterlogged=true] 153 128 84 10 122 102 67 10 76 64 42 10 61 51 33 10 +minecraft:lantern[hanging=false,waterlogged=false] 153 128 84 10 122 102 67 10 76 64 42 10 61 51 33 10 +minecraft:soul_lantern 45 67 118 8 36 53 94 8 22 33 59 8 18 26 47 8 +minecraft:soul_lantern[hanging=true,waterlogged=false] 45 67 118 8 36 53 94 8 22 33 59 8 18 26 47 8 +minecraft:soul_lantern[hanging=false,waterlogged=true] 45 67 118 8 36 53 94 8 22 33 59 8 18 26 47 8 +minecraft:soul_lantern[hanging=false,waterlogged=false] 45 67 118 8 36 53 94 8 22 33 59 8 18 26 47 8 minecraft:campfire 57 58 62 207 45 46 49 207 28 29 31 207 22 23 24 207 minecraft:campfire[facing=north,lit=true,signal_fire=true,waterlogged=false] 57 58 62 207 45 46 49 207 28 29 31 207 22 23 24 207 minecraft:campfire[facing=north,lit=true,signal_fire=false,waterlogged=true] 57 58 62 207 45 46 49 207 28 29 31 207 22 23 24 207 @@ -15526,15 +15541,15 @@ minecraft:jigsaw[orientation=west_up] 58 58 65 255 46 46 52 255 29 29 32 255 23 minecraft:jigsaw[orientation=east_up] 58 58 65 255 46 46 52 255 29 29 32 255 23 23 26 255 minecraft:jigsaw[orientation=north_up] 58 58 65 255 46 46 52 255 29 29 32 255 23 23 26 255 minecraft:jigsaw[orientation=south_up] 58 58 65 255 46 46 52 255 29 29 32 255 23 23 26 255 -minecraft:composter 123 86 61 111 98 68 48 111 61 43 30 111 49 34 24 111 -minecraft:composter[level=1] 123 86 61 111 98 68 48 111 61 43 30 111 49 34 24 111 -minecraft:composter[level=2] 123 86 61 111 98 68 48 111 61 43 30 111 49 34 24 111 -minecraft:composter[level=3] 123 86 61 111 98 68 48 111 61 43 30 111 49 34 24 111 -minecraft:composter[level=4] 123 86 61 111 98 68 48 111 61 43 30 111 49 34 24 111 -minecraft:composter[level=5] 123 86 61 111 98 68 48 111 61 43 30 111 49 34 24 111 -minecraft:composter[level=6] 123 86 61 111 98 68 48 111 61 43 30 111 49 34 24 111 -minecraft:composter[level=7] 123 86 61 111 98 68 48 111 61 43 30 111 49 34 24 111 -minecraft:composter[level=8] 123 86 61 111 98 68 48 111 61 43 30 111 49 34 24 111 +minecraft:composter 79 53 35 143 63 42 28 143 39 26 17 143 31 21 14 143 +minecraft:composter[level=1] 79 53 35 143 63 42 28 143 39 26 17 143 31 21 14 143 +minecraft:composter[level=2] 79 53 35 143 63 42 28 143 39 26 17 143 31 21 14 143 +minecraft:composter[level=3] 79 53 35 143 63 42 28 143 39 26 17 143 31 21 14 143 +minecraft:composter[level=4] 79 53 35 143 63 42 28 143 39 26 17 143 31 21 14 143 +minecraft:composter[level=5] 79 53 35 143 63 42 28 143 39 26 17 143 31 21 14 143 +minecraft:composter[level=6] 79 53 35 143 63 42 28 143 39 26 17 143 31 21 14 143 +minecraft:composter[level=7] 79 53 35 143 63 42 28 143 39 26 17 143 31 21 14 143 +minecraft:composter[level=8] 79 53 35 143 63 42 28 143 39 26 17 143 31 21 14 143 minecraft:target 165 124 106 255 132 99 84 255 82 62 53 255 66 49 42 255 minecraft:target[power=1] 165 124 106 255 132 99 84 255 82 62 53 255 66 49 42 255 minecraft:target[power=2] 165 124 106 255 132 99 84 255 82 62 53 255 66 49 42 255 @@ -17961,27 +17976,27 @@ minecraft:waxed_cut_copper_slab[type=bottom,waterlogged=true] 155 93 70 255 124 minecraft:waxed_cut_copper_slab[type=bottom,waterlogged=false] 155 93 70 255 124 74 56 255 77 46 35 255 62 37 28 255 minecraft:waxed_cut_copper_slab[type=double,waterlogged=true] 155 93 70 255 124 74 56 255 77 46 35 255 62 37 28 255 minecraft:waxed_cut_copper_slab[type=double,waterlogged=false] 155 93 70 255 124 74 56 255 77 46 35 255 62 37 28 255 -minecraft:pointed_dripstone 136 106 56 73 108 84 44 73 68 53 28 73 54 42 22 73 -minecraft:pointed_dripstone[thickness=tip_merge,vertical_direction=up,waterlogged=false] 136 106 56 73 108 84 44 73 68 53 28 73 54 42 22 73 -minecraft:pointed_dripstone[thickness=tip_merge,vertical_direction=down,waterlogged=true] 153 123 76 56 122 98 60 56 76 61 38 56 61 49 30 56 -minecraft:pointed_dripstone[thickness=tip_merge,vertical_direction=down,waterlogged=false] 153 123 76 56 122 98 60 56 76 61 38 56 61 49 30 56 -minecraft:pointed_dripstone[thickness=tip,vertical_direction=up,waterlogged=true] 139 108 58 37 111 86 46 37 69 54 29 37 55 43 23 37 -minecraft:pointed_dripstone[thickness=tip,vertical_direction=up,waterlogged=false] 139 108 58 37 111 86 46 37 69 54 29 37 55 43 23 37 -minecraft:pointed_dripstone[thickness=tip,vertical_direction=down,waterlogged=true] 152 122 75 31 121 97 60 31 76 61 37 31 60 48 30 31 -minecraft:pointed_dripstone[thickness=tip,vertical_direction=down,waterlogged=false] 152 122 75 31 121 97 60 31 76 61 37 31 60 48 30 31 -minecraft:pointed_dripstone[thickness=frustum,vertical_direction=up,waterlogged=true] 151 121 71 119 120 96 56 119 75 60 35 119 60 48 28 119 -minecraft:pointed_dripstone[thickness=frustum,vertical_direction=up,waterlogged=false] 151 121 71 119 120 96 56 119 75 60 35 119 60 48 28 119 -minecraft:pointed_dripstone[thickness=frustum,vertical_direction=down,waterlogged=true] 145 115 67 129 116 92 53 129 72 57 33 129 58 46 26 129 -minecraft:pointed_dripstone[thickness=frustum,vertical_direction=down,waterlogged=false] 145 115 67 129 116 92 53 129 72 57 33 129 58 46 26 129 -minecraft:pointed_dripstone[thickness=middle,vertical_direction=up,waterlogged=true] 147 118 71 158 117 94 56 158 73 59 35 158 58 47 28 158 -minecraft:pointed_dripstone[thickness=middle,vertical_direction=up,waterlogged=false] 147 118 71 158 117 94 56 158 73 59 35 158 58 47 28 158 -minecraft:pointed_dripstone[thickness=middle,vertical_direction=down,waterlogged=true] 166 136 87 160 132 108 69 160 83 68 43 160 66 54 34 160 -minecraft:pointed_dripstone[thickness=middle,vertical_direction=down,waterlogged=false] 166 136 87 160 132 108 69 160 83 68 43 160 66 54 34 160 -minecraft:pointed_dripstone[thickness=base,vertical_direction=up,waterlogged=true] 156 127 79 222 124 101 63 222 78 63 39 222 62 50 31 222 -minecraft:pointed_dripstone[thickness=base,vertical_direction=up,waterlogged=false] 156 127 79 222 124 101 63 222 78 63 39 222 62 50 31 222 -minecraft:pointed_dripstone[thickness=base,vertical_direction=down,waterlogged=true] 166 138 93 206 132 110 74 206 83 69 46 206 66 55 37 206 -minecraft:pointed_dripstone[thickness=base,vertical_direction=down,waterlogged=false] 166 138 93 206 132 110 74 206 83 69 46 206 66 55 37 206 -minecraft:dripstone_block 176 145 89 255 140 116 71 255 88 72 44 255 70 58 35 255 +minecraft:pointed_dripstone 114 91 60 73 91 72 48 73 57 45 30 73 45 36 24 73 +minecraft:pointed_dripstone[thickness=tip_merge,vertical_direction=up,waterlogged=false] 114 91 60 73 91 72 48 73 57 45 30 73 45 36 24 73 +minecraft:pointed_dripstone[thickness=tip_merge,vertical_direction=down,waterlogged=true] 132 109 78 56 105 87 62 56 66 54 39 56 52 43 31 56 +minecraft:pointed_dripstone[thickness=tip_merge,vertical_direction=down,waterlogged=false] 132 109 78 56 105 87 62 56 66 54 39 56 52 43 31 56 +minecraft:pointed_dripstone[thickness=tip,vertical_direction=up,waterlogged=true] 117 94 62 37 93 75 49 37 58 47 31 37 46 37 24 37 +minecraft:pointed_dripstone[thickness=tip,vertical_direction=up,waterlogged=false] 117 94 62 37 93 75 49 37 58 47 31 37 46 37 24 37 +minecraft:pointed_dripstone[thickness=tip,vertical_direction=down,waterlogged=true] 130 107 77 31 104 85 61 31 65 53 38 31 52 42 30 31 +minecraft:pointed_dripstone[thickness=tip,vertical_direction=down,waterlogged=false] 130 107 77 31 104 85 61 31 65 53 38 31 52 42 30 31 +minecraft:pointed_dripstone[thickness=frustum,vertical_direction=up,waterlogged=true] 129 106 74 119 103 84 59 119 64 53 37 119 51 42 29 119 +minecraft:pointed_dripstone[thickness=frustum,vertical_direction=up,waterlogged=false] 129 106 74 119 103 84 59 119 64 53 37 119 51 42 29 119 +minecraft:pointed_dripstone[thickness=frustum,vertical_direction=down,waterlogged=true] 123 100 70 129 98 80 56 129 61 50 35 129 49 40 28 129 +minecraft:pointed_dripstone[thickness=frustum,vertical_direction=down,waterlogged=false] 123 100 70 129 98 80 56 129 61 50 35 129 49 40 28 129 +minecraft:pointed_dripstone[thickness=middle,vertical_direction=up,waterlogged=true] 126 103 73 158 100 82 58 158 63 51 36 158 50 41 29 158 +minecraft:pointed_dripstone[thickness=middle,vertical_direction=up,waterlogged=false] 126 103 73 158 100 82 58 158 63 51 36 158 50 41 29 158 +minecraft:pointed_dripstone[thickness=middle,vertical_direction=down,waterlogged=true] 145 121 89 160 116 96 71 160 72 60 44 160 58 48 35 160 +minecraft:pointed_dripstone[thickness=middle,vertical_direction=down,waterlogged=false] 145 121 89 160 116 96 71 160 72 60 44 160 58 48 35 160 +minecraft:pointed_dripstone[thickness=base,vertical_direction=up,waterlogged=true] 134 112 81 223 107 89 64 223 67 56 40 223 53 44 32 223 +minecraft:pointed_dripstone[thickness=base,vertical_direction=up,waterlogged=false] 134 112 81 223 107 89 64 223 67 56 40 223 53 44 32 223 +minecraft:pointed_dripstone[thickness=base,vertical_direction=down,waterlogged=true] 146 123 93 206 116 98 74 206 73 61 46 206 58 49 37 206 +minecraft:pointed_dripstone[thickness=base,vertical_direction=down,waterlogged=false] 146 123 93 206 116 98 74 206 73 61 46 206 58 49 37 206 +minecraft:dripstone_block 109 89 65 255 87 71 52 255 54 44 32 255 43 35 26 255 minecraft:cave_vines 123 116 25 106 98 92 20 106 61 58 12 106 49 46 10 106 minecraft:cave_vines[age=0,berries=false] 67 82 29 93 53 65 23 93 33 41 14 93 26 32 11 93 minecraft:cave_vines[age=1,berries=true] 123 116 25 106 98 92 20 106 61 58 12 106 49 46 10 106 diff --git a/DynmapCore/src/main/resources/extracted/colorschemes/ovocean.txt b/DynmapCore/src/main/resources/extracted/colorschemes/ovocean.txt index f0e19dc8..39261596 100644 --- a/DynmapCore/src/main/resources/extracted/colorschemes/ovocean.txt +++ b/DynmapCore/src/main/resources/extracted/colorschemes/ovocean.txt @@ -1,613 +1,18473 @@ -1 112 110 107 255 89 88 85 255 56 55 53 255 44 44 42 255 -2 47 99 42 251 37 79 33 251 23 49 21 251 18 39 16 251 -3 138 104 73 255 110 83 58 255 69 52 36 255 55 41 29 255 -3:2 90 63 28 255 72 50 22 255 45 31 14 255 36 25 11 255 -4 136 129 119 255 108 103 95 255 68 64 59 255 54 51 47 255 -5 98 80 60 255 78 64 48 255 49 40 30 255 39 32 24 255 -5:1 62 44 29 255 49 35 23 255 31 22 14 255 24 17 11 255 -5:2 154 127 89 255 123 101 71 255 77 63 44 255 61 50 35 255 -5:3 132 90 63 255 105 72 50 255 66 45 31 255 52 36 25 255 -5:4 157 113 75 255 125 90 60 255 78 56 37 255 62 45 30 255 -5:5 63 49 35 255 50 39 28 255 31 24 17 255 25 19 14 255 -6 41 83 30 123 32 66 24 123 20 41 15 123 16 33 12 123 -6:1 16 58 30 69 12 46 24 69 8 29 15 69 6 23 12 69 -6:2 68 111 62 73 54 88 49 73 34 55 31 73 27 44 24 73 -6:3 41 68 21 75 32 54 16 75 20 34 10 75 16 27 8 75 -6:4 66 83 38 74 52 66 30 74 33 41 19 74 26 33 15 74 -6:5 42 83 30 145 33 66 24 145 21 41 15 145 16 33 12 145 -6:9 16 58 30 69 12 46 24 69 8 29 15 69 6 23 12 69 -6:10 68 111 62 73 54 88 49 73 34 55 31 73 27 44 24 73 -6:11 41 68 21 75 32 54 16 75 20 34 10 75 16 27 8 75 -6:12 66 83 38 74 52 66 30 74 33 41 19 74 26 33 15 74 -6:13 42 83 30 145 33 66 24 145 21 41 15 145 16 33 12 145 -7 61 58 58 255 48 46 46 255 30 29 29 255 24 23 23 255 -8 52 97 140 157 41 77 112 157 26 48 70 157 20 38 56 157 -9 56 95 144 159 44 76 115 159 28 47 72 159 22 38 57 159 -9:1 52 97 140 157 41 77 112 157 26 48 70 157 20 38 56 157 -9:2 52 97 140 157 41 77 112 157 26 48 70 157 20 38 56 157 -9:3 52 97 140 157 41 77 112 157 26 48 70 157 20 38 56 157 -9:4 52 97 140 157 41 77 112 157 26 48 70 157 20 38 56 157 -9:5 52 97 140 157 41 77 112 157 26 48 70 157 20 38 56 157 -9:6 52 97 140 157 41 77 112 157 26 48 70 157 20 38 56 157 -9:7 52 97 140 157 41 77 112 157 26 48 70 157 20 38 56 157 -10 211 92 15 255 168 73 12 255 105 46 7 255 84 36 6 255 -11 206 86 14 255 164 68 11 255 103 43 7 255 82 34 5 255 -12 240 221 162 255 192 176 129 255 120 110 81 255 96 88 64 255 -12:1 169 88 33 255 135 70 26 255 84 44 16 255 67 35 13 255 -13 114 101 95 255 91 80 76 255 57 50 47 255 45 40 38 255 -14 109 104 89 255 87 83 71 255 54 52 44 255 43 41 35 255 -15 102 100 97 255 81 80 77 255 51 50 48 255 40 40 38 255 -16 78 77 75 255 62 61 60 255 39 38 37 255 31 30 30 255 -17 151 129 94 255 120 103 75 255 75 64 47 255 60 51 37 255 -17:4 84 67 50 255 67 53 40 255 42 33 25 255 33 26 20 255 -17:5 56 46 34 255 44 36 27 255 28 23 17 255 22 18 13 255 -17:6 193 192 186 255 154 153 148 255 96 96 93 255 77 76 74 255 -17:7 84 65 40 255 67 52 32 255 42 32 20 255 33 26 16 255 -17:8 84 67 50 255 67 53 40 255 42 33 25 255 33 26 20 255 -17:9 56 46 34 255 44 36 27 255 28 23 17 255 22 18 13 255 -17:10 193 192 186 255 154 153 148 255 96 96 93 255 77 76 74 255 -17:11 84 65 40 255 67 52 32 255 42 32 20 255 33 26 16 255 -17:12 84 67 50 255 67 53 40 255 42 33 25 255 33 26 20 255 -17:13 56 46 34 255 44 36 27 255 28 23 17 255 22 18 13 255 -17:14 193 192 186 255 154 153 148 255 96 96 93 255 77 76 74 255 -17:15 84 65 40 255 67 52 32 255 42 32 20 255 33 26 16 255 -18 54 95 45 206 43 76 36 206 27 47 22 206 21 38 18 206 -18:1 48 76 48 0 38 60 38 0 24 38 24 0 19 30 19 0 -18:2 85 111 57 0 68 88 45 0 42 55 28 0 34 44 22 0 -18:3 50 88 42 161 40 70 33 161 25 44 21 161 20 35 16 161 -18:5 48 76 48 0 38 60 38 0 24 38 24 0 19 30 19 0 -18:6 85 111 57 0 68 88 45 0 42 55 28 0 34 44 22 0 -18:7 50 88 42 161 40 70 33 161 25 44 21 161 20 35 16 161 -18:9 48 76 48 0 38 60 38 0 24 38 24 0 19 30 19 0 -18:10 85 111 57 0 68 88 45 0 42 55 28 0 34 44 22 0 -18:11 50 88 42 161 40 70 33 161 25 44 21 161 20 35 16 161 -18:13 48 76 48 0 38 60 38 0 24 38 24 0 19 30 19 0 -18:14 85 111 57 0 68 88 45 0 42 55 28 0 34 44 22 0 -18:15 50 88 42 161 40 70 33 161 25 44 21 161 20 35 16 161 -19 192 168 95 255 153 134 76 255 96 84 47 255 76 67 38 255 -20 88 72 57 58 70 57 45 58 44 36 28 58 35 28 22 58 -21 83 93 117 255 66 74 93 255 41 46 58 255 33 37 46 255 -22 49 80 151 255 39 64 120 255 24 40 75 255 19 32 60 255 -23 125 118 111 255 100 94 88 255 62 59 55 255 50 47 44 255 -23:1 138 131 121 255 110 104 96 255 69 65 60 255 55 52 48 255 -23:9 138 131 121 255 110 104 96 255 69 65 60 255 55 52 48 255 -24 224 206 157 255 179 164 125 255 112 103 78 255 89 82 62 255 -25 106 84 68 255 84 67 54 255 53 42 34 255 42 33 27 255 -26 71 102 50 255 56 81 40 255 35 51 25 255 28 40 20 255 -26:8 103 98 68 255 82 78 54 255 51 49 34 255 41 39 27 255 -26:9 103 98 68 255 82 78 54 255 51 49 34 255 41 39 27 255 -26:10 103 98 68 255 82 78 54 255 51 49 34 255 41 39 27 255 -26:11 103 98 68 255 82 78 54 255 51 49 34 255 41 39 27 255 -27 141 121 69 165 112 96 55 165 70 60 34 165 56 48 27 165 -27:8 150 123 71 165 120 98 56 165 75 61 35 165 60 49 28 165 -27:9 150 123 71 165 120 98 56 165 75 61 35 165 60 49 28 165 -27:10 150 123 71 165 120 98 56 165 75 61 35 165 60 49 28 165 -27:11 150 123 71 165 120 98 56 165 75 61 35 165 60 49 28 165 -27:12 150 123 71 165 120 98 56 165 75 61 35 165 60 49 28 165 -27:13 150 123 71 165 120 98 56 165 75 61 35 165 60 49 28 165 -28 89 79 72 160 71 63 57 160 44 39 36 160 35 31 28 160 -29 145 137 127 255 116 109 101 255 72 68 63 255 58 54 50 255 -29:1 97 81 56 255 77 64 44 255 48 40 28 255 38 32 22 255 -29:2 133 121 109 255 106 96 87 255 66 60 54 255 53 48 43 255 -29:3 133 121 109 255 106 96 87 255 66 60 54 255 53 48 43 255 -29:4 133 121 109 255 106 96 87 255 66 60 54 255 53 48 43 255 -29:5 133 121 109 255 106 96 87 255 66 60 54 255 53 48 43 255 -29:9 134 127 118 255 107 101 94 255 67 63 59 255 53 50 47 255 -29:10 141 132 122 207 112 105 97 207 70 66 61 207 56 52 48 207 -29:11 141 132 122 207 112 105 97 207 70 66 61 207 56 52 48 207 -29:12 141 132 122 207 112 105 97 207 70 66 61 207 56 52 48 207 -29:13 141 132 122 207 112 105 97 207 70 66 61 207 56 52 48 207 -30 110 107 103 63 88 85 82 63 55 53 51 63 44 42 41 63 -31 121 91 64 24 96 72 51 24 60 45 32 24 48 36 25 24 -31:1 49 102 43 109 39 81 34 109 24 51 21 109 19 40 17 109 -31:2 48 101 43 71 38 80 34 71 24 50 21 71 19 40 17 71 -32 121 91 64 24 96 72 51 24 60 45 32 24 48 36 25 24 -33 145 137 127 255 116 109 101 255 72 68 63 255 58 54 50 255 -33:1 96 72 54 255 76 57 43 255 48 36 27 255 38 28 21 255 -33:2 133 121 109 255 106 96 87 255 66 60 54 255 53 48 43 255 -33:3 133 121 109 255 106 96 87 255 66 60 54 255 53 48 43 255 -33:4 133 121 109 255 106 96 87 255 66 60 54 255 53 48 43 255 -33:5 133 121 109 255 106 96 87 255 66 60 54 255 53 48 43 255 -33:9 134 127 118 255 107 101 94 255 67 63 59 255 53 50 47 255 -33:10 141 132 122 207 112 105 97 207 70 66 61 207 56 52 48 207 -33:11 141 132 122 207 112 105 97 207 70 66 61 207 56 52 48 207 -33:12 141 132 122 207 112 105 97 207 70 66 61 207 56 52 48 207 -33:13 141 132 122 207 112 105 97 207 70 66 61 207 56 52 48 207 -34 134 127 118 255 107 101 94 255 67 63 59 255 53 50 47 255 -34:1 96 72 54 255 76 57 43 255 48 36 27 255 38 28 21 255 -34:2 96 73 54 111 76 58 43 111 48 36 27 111 38 29 21 111 -34:3 96 73 54 111 76 58 43 111 48 36 27 111 38 29 21 111 -34:4 96 73 54 111 76 58 43 111 48 36 27 111 38 29 21 111 -34:5 96 73 54 111 76 58 43 111 48 36 27 111 38 29 21 111 -34:9 97 81 56 255 77 64 44 255 48 40 28 255 38 32 22 255 -34:10 96 73 54 111 76 58 43 111 48 36 27 111 38 29 21 111 -34:11 96 73 54 111 76 58 43 111 48 36 27 111 38 29 21 111 -34:12 96 73 54 111 76 58 43 111 48 36 27 111 38 29 21 111 -34:13 96 73 54 111 76 58 43 111 48 36 27 111 38 29 21 111 -35 229 228 220 255 183 182 176 255 114 114 110 255 91 91 88 255 -35:1 225 120 49 255 180 96 39 255 112 60 24 255 90 48 19 255 -35:2 184 76 172 255 147 60 137 255 92 38 86 255 73 30 68 255 -35:3 112 160 204 255 89 128 163 255 56 80 102 255 44 64 81 255 -35:4 223 197 54 255 178 157 43 255 111 98 27 255 89 78 21 255 -35:5 111 184 67 255 88 147 53 255 55 92 33 255 44 73 26 255 -35:6 228 177 195 255 182 141 156 255 114 88 97 255 91 70 78 255 -35:7 85 83 78 255 68 66 62 255 42 41 39 255 34 33 31 255 -35:8 169 167 165 255 135 133 132 255 84 83 82 255 67 66 66 255 -35:9 55 133 147 255 44 106 117 255 27 66 73 255 22 53 58 255 -35:10 101 54 143 255 80 43 114 255 50 27 71 255 40 21 57 255 -35:11 59 75 156 255 47 60 124 255 29 37 78 255 23 30 62 255 -35:12 76 58 39 255 60 46 31 255 38 29 19 255 30 23 15 255 -35:13 54 91 39 255 43 72 31 255 27 45 19 255 21 36 15 255 -35:14 128 42 35 255 102 33 28 255 64 21 17 255 51 16 14 255 -35:15 37 35 32 255 29 28 25 255 18 17 16 255 14 14 12 255 -37 127 138 38 27 101 110 30 27 63 69 19 27 50 55 15 27 -38 107 56 27 18 85 44 21 18 53 28 13 18 42 22 10 18 -38:1 40 99 66 71 32 79 52 71 20 49 33 71 16 39 26 71 -38:2 177 141 211 38 141 112 168 38 88 70 105 38 70 56 84 38 -38:3 162 191 138 42 129 152 110 42 81 95 69 42 64 76 55 42 -38:4 103 135 38 48 82 108 30 48 51 67 19 48 41 54 15 48 -38:5 95 134 32 49 76 107 25 49 47 67 16 49 38 53 12 49 -38:6 94 153 65 48 75 122 52 48 47 76 32 48 37 61 26 48 -38:7 101 150 73 47 80 120 58 47 50 75 36 47 40 60 29 47 -38:8 176 197 139 43 140 157 111 43 88 98 69 43 70 78 55 43 -39 91 70 45 22 72 56 36 22 45 35 22 22 36 28 18 22 -40 170 73 65 19 136 58 52 19 85 36 32 19 68 29 26 19 -41 236 220 84 255 188 176 67 255 118 110 42 255 94 88 33 255 -42 181 179 175 255 144 143 140 255 90 89 87 255 72 71 70 255 -43 194 187 174 255 155 149 139 255 97 93 87 255 77 74 69 255 -43:1 224 206 157 255 179 164 125 255 112 103 78 255 89 82 62 255 -43:2 98 80 60 255 78 64 48 255 49 40 30 255 39 32 24 255 -43:3 136 129 119 255 108 103 95 255 68 64 59 255 54 51 47 255 -43:4 139 99 90 255 111 79 72 255 69 49 45 255 55 39 36 255 -43:5 156 150 140 255 124 120 112 255 78 75 70 255 62 60 56 255 -43:6 53 26 31 255 42 20 24 255 26 13 15 255 21 10 12 255 -43:7 228 223 212 253 182 178 169 253 114 111 106 253 91 89 84 253 -43:9 224 206 157 255 179 164 125 255 112 103 78 255 89 82 62 255 -43:10 98 80 60 255 78 64 48 255 49 40 30 255 39 32 24 255 -43:11 136 129 119 255 108 103 95 255 68 64 59 255 54 51 47 255 -43:12 139 99 90 255 111 79 72 255 69 49 45 255 55 39 36 255 -43:13 156 150 140 255 124 120 112 255 78 75 70 255 62 60 56 255 -43:14 53 26 31 255 42 20 24 255 26 13 15 255 21 10 12 255 -43:15 228 223 212 253 182 178 169 253 114 111 106 253 91 89 84 253 -44 194 187 174 255 155 149 139 255 97 93 87 255 77 74 69 255 -44:1 224 206 157 255 179 164 125 255 112 103 78 255 89 82 62 255 -44:2 98 80 60 255 78 64 48 255 49 40 30 255 39 32 24 255 -44:3 136 129 119 255 108 103 95 255 68 64 59 255 54 51 47 255 -44:4 139 99 90 255 111 79 72 255 69 49 45 255 55 39 36 255 -44:5 156 150 140 255 124 120 112 255 78 75 70 255 62 60 56 255 -44:6 53 26 31 255 42 20 24 255 26 13 15 255 21 10 12 255 -44:7 228 223 212 253 182 178 169 253 114 111 106 253 91 89 84 253 -44:9 224 206 157 255 179 164 125 255 112 103 78 255 89 82 62 255 -44:10 98 80 60 255 78 64 48 255 49 40 30 255 39 32 24 255 -44:11 136 129 119 255 108 103 95 255 68 64 59 255 54 51 47 255 -44:12 139 99 90 255 111 79 72 255 69 49 45 255 55 39 36 255 -44:13 156 150 140 255 124 120 112 255 78 75 70 255 62 60 56 255 -44:14 53 26 31 255 42 20 24 255 26 13 15 255 21 10 12 255 -44:15 228 223 212 253 182 178 169 253 114 111 106 253 91 89 84 253 -45 139 99 90 255 111 79 72 255 69 49 45 255 55 39 36 255 -46 92 69 54 255 73 55 43 255 46 34 27 255 36 27 21 255 -47 98 80 60 255 78 64 48 255 49 40 30 255 39 32 24 255 -48 122 122 99 255 97 97 79 255 61 61 49 255 48 48 39 255 -49 41 29 56 255 32 23 44 255 20 14 28 255 16 11 22 255 -50 67 61 49 27 53 48 39 27 33 30 24 27 26 24 19 27 -51 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 -52 109 106 90 198 87 84 72 198 54 53 45 198 43 42 36 198 -53 98 80 60 255 78 64 48 255 49 40 30 255 39 32 24 255 -54 140 122 103 195 112 97 82 195 70 61 51 195 56 48 41 195 -54:4 140 122 102 209 112 97 81 209 70 61 51 209 56 48 40 209 -54:5 140 122 102 209 112 97 81 209 70 61 51 209 56 48 40 209 -54:6 140 122 102 209 112 97 81 209 70 61 51 209 56 48 40 209 -54:7 140 122 102 209 112 97 81 209 70 61 51 209 56 48 40 209 -54:8 140 122 102 209 112 97 81 209 70 61 51 209 56 48 40 209 -54:9 140 122 102 209 112 97 81 209 70 61 51 209 56 48 40 209 -54:10 140 122 102 209 112 97 81 209 70 61 51 209 56 48 40 209 -54:11 140 122 102 209 112 97 81 209 70 61 51 209 56 48 40 209 -55 227 227 227 26 181 181 181 26 113 113 113 26 90 90 90 26 -56 109 112 108 255 87 89 86 255 54 56 54 255 43 44 43 255 -57 60 195 211 255 48 156 168 255 30 97 105 255 24 78 84 255 -58 176 145 103 255 140 116 82 255 88 72 51 255 70 58 41 255 -59 67 119 28 9 53 95 22 9 33 59 14 9 26 47 11 9 -59:1 73 123 31 16 58 98 24 16 36 61 15 16 29 49 12 16 -59:2 84 129 29 21 67 103 23 21 42 64 14 21 33 51 11 21 -59:3 91 128 30 33 72 102 24 33 45 64 15 33 36 51 12 33 -59:4 98 132 33 47 78 105 26 47 49 66 16 47 39 52 13 47 -59:5 101 127 41 60 80 101 32 60 50 63 20 60 40 50 16 60 -59:6 107 131 49 72 85 104 39 72 53 65 24 72 42 52 19 72 -59:7 171 155 74 80 136 124 59 80 85 77 37 80 68 62 29 80 -59:8 171 155 74 80 136 124 59 80 85 77 37 80 68 62 29 80 -59:9 171 155 74 80 136 124 59 80 85 77 37 80 68 62 29 80 -59:10 171 155 74 80 136 124 59 80 85 77 37 80 68 62 29 80 -59:11 171 155 74 80 136 124 59 80 85 77 37 80 68 62 29 80 -59:12 171 155 74 80 136 124 59 80 85 77 37 80 68 62 29 80 -59:13 171 155 74 80 136 124 59 80 85 77 37 80 68 62 29 80 -59:14 171 155 74 80 136 124 59 80 85 77 37 80 68 62 29 80 -59:15 171 155 74 80 136 124 59 80 85 77 37 80 68 62 29 80 -60 105 80 59 255 84 64 47 255 52 40 29 255 42 32 23 255 -60:1 65 50 36 255 52 40 28 255 32 25 18 255 26 20 14 255 -60:2 65 50 36 255 52 40 28 255 32 25 18 255 26 20 14 255 -60:3 65 50 36 255 52 40 28 255 32 25 18 255 26 20 14 255 -60:4 65 50 36 255 52 40 28 255 32 25 18 255 26 20 14 255 -60:5 65 50 36 255 52 40 28 255 32 25 18 255 26 20 14 255 -60:6 65 50 36 255 52 40 28 255 32 25 18 255 26 20 14 255 -60:7 65 50 36 255 52 40 28 255 32 25 18 255 26 20 14 255 -60:8 65 50 36 255 52 40 28 255 32 25 18 255 26 20 14 255 -60:9 65 50 36 255 52 40 28 255 32 25 18 255 26 20 14 255 -60:10 65 50 36 255 52 40 28 255 32 25 18 255 26 20 14 255 -60:11 65 50 36 255 52 40 28 255 32 25 18 255 26 20 14 255 -60:12 65 50 36 255 52 40 28 255 32 25 18 255 26 20 14 255 -60:13 65 50 36 255 52 40 28 255 32 25 18 255 26 20 14 255 -60:14 65 50 36 255 52 40 28 255 32 25 18 255 26 20 14 255 -60:15 65 50 36 255 52 40 28 255 32 25 18 255 26 20 14 255 -61:2 125 118 111 255 100 94 88 255 62 59 55 255 50 47 44 255 -61:3 125 118 111 255 100 94 88 255 62 59 55 255 50 47 44 255 -61:4 125 118 111 255 100 94 88 255 62 59 55 255 50 47 44 255 -61:5 125 118 111 255 100 94 88 255 62 59 55 255 50 47 44 255 -62:2 125 118 111 255 100 94 88 255 62 59 55 255 50 47 44 255 -62:3 125 118 111 255 100 94 88 255 62 59 55 255 50 47 44 255 -62:4 125 118 111 255 100 94 88 255 62 59 55 255 50 47 44 255 -62:5 125 118 111 255 100 94 88 255 62 59 55 255 50 47 44 255 -63 85 69 51 10 68 55 40 10 42 34 25 10 34 27 20 10 -64 93 77 59 255 74 61 47 255 46 38 29 255 37 30 23 255 -64:8 94 78 60 237 75 62 48 237 47 39 30 237 37 31 24 237 -64:9 94 78 60 237 75 62 48 237 47 39 30 237 37 31 24 237 -64:10 94 78 60 237 75 62 48 237 47 39 30 237 37 31 24 237 -64:11 94 78 60 237 75 62 48 237 47 39 30 237 37 31 24 237 -64:12 94 78 60 237 75 62 48 237 47 39 30 237 37 31 24 237 -64:13 94 78 60 237 75 62 48 237 47 39 30 237 37 31 24 237 -64:14 94 78 60 237 75 62 48 237 47 39 30 237 37 31 24 237 -64:15 94 78 60 237 75 62 48 237 47 39 30 237 37 31 24 237 -65 103 85 66 72 82 68 52 72 51 42 33 72 41 34 26 72 -66 90 81 73 134 72 64 58 134 45 40 36 134 36 32 29 134 -66:6 91 83 75 118 72 66 60 118 45 41 37 118 36 33 30 118 -66:7 91 83 75 118 72 66 60 118 45 41 37 118 36 33 30 118 -66:8 91 83 75 118 72 66 60 118 45 41 37 118 36 33 30 118 -66:9 91 83 75 118 72 66 60 118 45 41 37 118 36 33 30 118 -67 136 129 119 255 108 103 95 255 68 64 59 255 54 51 47 255 -68 85 69 51 10 68 55 40 10 42 34 25 10 34 27 20 10 -69 136 129 119 255 108 103 95 255 68 64 59 255 54 51 47 255 -70 112 110 107 255 89 88 85 255 56 55 53 255 44 44 42 255 -71 78 76 71 255 62 60 56 255 39 38 35 255 31 30 28 255 -71:8 77 76 71 221 61 60 56 221 38 38 35 221 30 30 28 221 -71:9 77 76 71 221 61 60 56 221 38 38 35 221 30 30 28 221 -71:10 77 76 71 221 61 60 56 221 38 38 35 221 30 30 28 221 -71:11 77 76 71 221 61 60 56 221 38 38 35 221 30 30 28 221 -71:12 77 76 71 221 61 60 56 221 38 38 35 221 30 30 28 221 -71:13 77 76 71 221 61 60 56 221 38 38 35 221 30 30 28 221 -71:14 77 76 71 221 61 60 56 221 38 38 35 221 30 30 28 221 -71:15 77 76 71 221 61 60 56 221 38 38 35 221 30 30 28 221 -72 98 80 60 255 78 64 48 255 49 40 30 255 39 32 24 255 -73 129 94 87 255 103 75 69 255 64 47 43 255 51 37 34 255 -74 129 94 87 255 103 75 69 255 64 47 43 255 51 37 34 255 -75:1 74 37 31 21 59 29 24 21 37 18 15 21 29 14 12 21 -75:2 74 37 31 21 59 29 24 21 37 18 15 21 29 14 12 21 -75:3 74 37 31 21 59 29 24 21 37 18 15 21 29 14 12 21 -75:4 74 37 31 21 59 29 24 21 37 18 15 21 29 14 12 21 -75:5 74 37 31 21 59 29 24 21 37 18 15 21 29 14 12 21 -76:1 88 26 18 31 70 20 14 31 44 13 9 31 35 10 7 31 -76:2 88 26 18 31 70 20 14 31 44 13 9 31 35 10 7 31 -76:3 88 26 18 31 70 20 14 31 44 13 9 31 35 10 7 31 -76:4 88 26 18 31 70 20 14 31 44 13 9 31 35 10 7 31 -76:5 88 26 18 31 70 20 14 31 44 13 9 31 35 10 7 31 -77 112 110 107 255 89 88 85 255 56 55 53 255 44 44 42 255 -78 236 238 242 255 188 190 193 255 118 119 121 255 94 95 96 255 -79 180 221 246 159 144 176 196 159 90 110 123 159 72 88 98 159 -80 236 238 242 255 188 190 193 255 118 119 121 255 94 95 96 255 -81 87 121 67 195 69 96 53 195 43 60 33 195 34 48 26 195 -82 154 154 150 255 123 123 120 255 77 77 75 255 61 61 60 255 -83 121 158 67 90 96 126 53 90 60 79 33 90 48 63 26 90 -84 95 86 78 255 76 68 62 255 47 43 39 255 38 34 31 255 -85 98 80 60 255 78 64 48 255 49 40 30 255 39 32 24 255 -86 161 98 19 255 128 78 15 255 80 49 9 255 64 39 7 255 -87 139 66 70 255 111 52 56 255 69 33 35 255 55 26 28 255 -88 97 68 59 255 77 54 47 255 48 34 29 255 38 27 23 255 -89 224 192 118 255 179 153 94 255 112 96 59 255 89 76 47 255 -90 69 0 105 163 55 0 84 163 34 0 52 163 27 0 42 163 -91 161 98 19 255 128 78 15 255 80 49 9 255 64 39 7 255 -92 239 220 218 195 191 176 174 195 119 110 109 195 95 88 87 195 -93 152 143 135 255 121 114 108 255 76 71 67 255 60 57 54 255 -94 156 144 135 255 124 115 108 255 78 72 67 255 62 57 54 255 -95 193 187 182 156 154 149 145 156 96 93 91 156 77 74 72 156 -95:1 189 119 39 156 151 95 31 156 94 59 19 156 75 47 15 156 -95:2 182 26 109 156 145 20 87 156 91 13 54 156 72 10 43 156 -95:3 75 114 149 156 60 91 119 156 37 57 74 156 30 45 59 156 -95:4 193 179 21 156 154 143 16 156 96 89 10 156 77 71 8 156 -95:5 121 152 61 156 96 121 48 156 60 76 30 156 48 60 24 156 -95:6 185 25 111 166 148 20 88 166 92 12 55 166 74 10 44 166 -95:7 119 113 107 156 95 90 85 156 59 56 53 156 47 45 42 156 -95:8 126 120 115 156 100 96 92 156 63 60 57 156 50 48 46 156 -95:9 32 187 182 156 25 149 145 156 16 93 91 156 12 74 72 156 -95:10 64 26 68 156 51 20 54 156 32 13 34 156 25 10 27 156 -95:11 41 26 69 156 32 20 55 156 20 13 34 156 16 10 27 156 -95:12 111 72 21 156 88 57 16 156 55 36 10 156 44 28 8 156 -95:13 32 131 72 156 25 104 57 156 16 65 36 156 12 52 28 156 -95:14 193 26 21 156 154 20 16 156 96 13 10 156 77 10 8 156 -95:15 32 26 21 156 25 20 16 156 16 13 10 156 12 10 8 156 -96 125 113 101 242 100 90 80 242 62 56 50 242 50 45 40 242 -97 112 110 107 255 89 88 85 255 56 55 53 255 44 44 42 255 -97:1 136 129 119 255 108 103 95 255 68 64 59 255 54 51 47 255 -97:2 156 150 140 255 124 120 112 255 78 75 70 255 62 60 56 255 -98 156 150 140 255 124 120 112 255 78 75 70 255 62 60 56 255 -98:1 146 145 128 255 116 116 102 255 73 72 64 255 58 58 51 255 -98:2 147 140 131 255 117 112 104 255 73 70 65 255 58 56 52 255 -98:3 142 136 127 255 113 108 101 255 71 68 63 255 56 54 50 255 -99 227 196 126 255 181 156 100 255 113 98 63 255 90 78 50 255 -99:1 153 112 69 255 122 89 55 255 76 56 34 255 61 44 27 255 -99:2 153 112 69 255 122 89 55 255 76 56 34 255 61 44 27 255 -99:3 153 112 69 255 122 89 55 255 76 56 34 255 61 44 27 255 -99:4 153 112 69 255 122 89 55 255 76 56 34 255 61 44 27 255 -99:5 153 112 69 255 122 89 55 255 76 56 34 255 61 44 27 255 -99:6 153 112 69 255 122 89 55 255 76 56 34 255 61 44 27 255 -99:7 153 112 69 255 122 89 55 255 76 56 34 255 61 44 27 255 -99:8 153 112 69 255 122 89 55 255 76 56 34 255 61 44 27 255 -99:9 153 112 69 255 122 89 55 255 76 56 34 255 61 44 27 255 -99:14 153 112 69 255 122 89 55 255 76 56 34 255 61 44 27 255 -99:15 236 224 201 255 188 179 160 255 118 112 100 255 94 89 80 255 -100 227 196 126 255 181 156 100 255 113 98 63 255 90 78 50 255 -100:1 129 78 70 255 103 62 56 255 64 39 35 255 51 31 28 255 -100:2 129 78 70 255 103 62 56 255 64 39 35 255 51 31 28 255 -100:3 129 78 70 255 103 62 56 255 64 39 35 255 51 31 28 255 -100:4 129 78 70 255 103 62 56 255 64 39 35 255 51 31 28 255 -100:5 129 78 70 255 103 62 56 255 64 39 35 255 51 31 28 255 -100:6 129 78 70 255 103 62 56 255 64 39 35 255 51 31 28 255 -100:7 129 78 70 255 103 62 56 255 64 39 35 255 51 31 28 255 -100:8 129 78 70 255 103 62 56 255 64 39 35 255 51 31 28 255 -100:9 129 78 70 255 103 62 56 255 64 39 35 255 51 31 28 255 -100:14 129 78 70 255 103 62 56 255 64 39 35 255 51 31 28 255 -100:15 236 224 201 255 188 179 160 255 118 112 100 255 94 89 80 255 -101 65 64 61 110 52 51 48 110 32 32 30 110 26 25 24 110 -102 88 72 57 58 70 57 45 58 44 36 28 58 35 28 22 58 -103 52 82 33 255 41 65 26 255 26 41 16 255 20 32 13 255 -104 25 81 31 35 20 64 24 35 12 40 15 35 10 32 12 35 -105 25 81 31 35 20 64 24 35 12 40 15 35 10 32 12 35 -106 49 86 41 104 39 68 32 104 24 43 20 104 19 34 16 104 -107 98 80 60 255 78 64 48 255 49 40 30 255 39 32 24 255 -108 139 99 90 255 111 79 72 255 69 49 45 255 55 39 36 255 -109 156 150 140 255 124 120 112 255 78 75 70 255 62 60 56 255 -110 98 88 99 255 78 70 79 255 49 44 49 255 39 35 39 255 -111 16 64 24 0 12 51 19 0 8 32 12 0 6 25 9 0 -112 53 26 31 255 42 20 24 255 26 13 15 255 21 10 12 255 -113 53 26 31 255 42 20 24 255 26 13 15 255 21 10 12 255 -114 53 26 31 255 42 20 24 255 26 13 15 255 21 10 12 255 -115 64 30 31 52 51 24 24 52 32 15 15 52 25 12 12 52 -115:1 68 35 35 92 54 28 28 92 34 17 17 92 27 14 14 92 -115:2 68 35 35 92 54 28 28 92 34 17 17 92 27 14 14 92 -115:3 75 45 43 113 60 36 34 113 37 22 21 113 30 18 17 113 -115:4 75 45 43 113 60 36 34 113 37 22 21 113 30 18 17 113 -115:5 75 45 43 113 60 36 34 113 37 22 21 113 30 18 17 113 -115:6 75 45 43 113 60 36 34 113 37 22 21 113 30 18 17 113 -115:7 75 45 43 113 60 36 34 113 37 22 21 113 30 18 17 113 -116 92 35 30 255 73 28 24 255 46 17 15 255 36 14 12 255 -117 67 72 72 77 53 57 57 77 33 36 36 77 26 28 28 77 -118 64 64 64 111 51 51 51 111 32 32 32 111 25 25 25 111 -119 41 29 56 255 32 23 44 255 20 14 28 255 16 11 22 255 -120 84 131 102 255 67 104 81 255 42 65 51 255 33 52 40 255 -120:4 67 101 71 95 53 80 56 95 33 50 35 95 26 40 28 95 -120:5 67 101 71 95 53 80 56 95 33 50 35 95 26 40 28 95 -120:6 67 101 71 95 53 80 56 95 33 50 35 95 26 40 28 95 -120:7 67 101 71 95 53 80 56 95 33 50 35 95 26 40 28 95 -121 238 236 193 255 190 188 154 255 119 118 96 255 95 94 77 255 -122 12 0 24 255 9 0 19 255 6 0 12 255 4 0 9 255 -123 87 71 56 255 69 56 44 255 43 35 28 255 34 28 22 255 -124 125 110 78 255 100 88 62 255 62 55 39 255 50 44 31 255 -125 98 80 60 255 78 64 48 255 49 40 30 255 39 32 24 255 -125:1 62 44 29 255 49 35 23 255 31 22 14 255 24 17 11 255 -125:2 154 127 89 255 123 101 71 255 77 63 44 255 61 50 35 255 -125:3 132 90 63 255 105 72 50 255 66 45 31 255 52 36 25 255 -125:4 157 113 75 255 125 90 60 255 78 56 37 255 62 45 30 255 -125:5 63 49 35 255 50 39 28 255 31 24 17 255 25 19 14 255 -125:9 62 44 29 255 49 35 23 255 31 22 14 255 24 17 11 255 -125:10 154 127 89 255 123 101 71 255 77 63 44 255 61 50 35 255 -125:11 132 90 63 255 105 72 50 255 66 45 31 255 52 36 25 255 -125:12 157 113 75 255 125 90 60 255 78 56 37 255 62 45 30 255 -125:13 63 49 35 255 50 39 28 255 31 24 17 255 25 19 14 255 -126 98 80 60 255 78 64 48 255 49 40 30 255 39 32 24 255 -126:1 62 44 29 255 49 35 23 255 31 22 14 255 24 17 11 255 -126:2 154 127 89 255 123 101 71 255 77 63 44 255 61 50 35 255 -126:3 132 90 63 255 105 72 50 255 66 45 31 255 52 36 25 255 -126:4 157 113 75 255 125 90 60 255 78 56 37 255 62 45 30 255 -126:5 63 49 35 255 50 39 28 255 31 24 17 255 25 19 14 255 -126:9 62 44 29 255 49 35 23 255 31 22 14 255 24 17 11 255 -126:10 154 127 89 255 123 101 71 255 77 63 44 255 61 50 35 255 -126:11 132 90 63 255 105 72 50 255 66 45 31 255 52 36 25 255 -126:12 157 113 75 255 125 90 60 255 78 56 37 255 62 45 30 255 -126:13 63 49 35 255 50 39 28 255 31 24 17 255 25 19 14 255 -127 151 66 46 129 120 52 36 129 75 33 23 129 60 26 18 129 -128 212 189 139 255 169 151 111 255 106 94 69 255 84 75 55 255 -129 92 105 89 255 73 84 71 255 46 52 44 255 36 42 35 255 -130:2 75 75 75 195 60 60 60 195 37 37 37 195 30 30 30 195 -130:3 75 75 75 195 60 60 60 195 37 37 37 195 30 30 30 195 -130:4 75 75 75 195 60 60 60 195 37 37 37 195 30 30 30 195 -130:5 75 75 75 195 60 60 60 195 37 37 37 195 30 30 30 195 -131 136 129 119 255 108 103 95 255 68 64 59 255 54 51 47 255 -133 38 161 73 255 30 128 58 255 19 80 36 255 15 64 29 255 -134 62 44 29 255 49 35 23 255 31 22 14 255 24 17 11 255 -135 154 127 89 255 123 101 71 255 77 63 44 255 61 50 35 255 -136 132 90 63 255 105 72 50 255 66 45 31 255 52 36 25 255 -137 98 94 89 255 78 75 71 255 49 47 44 255 39 37 35 255 -138 88 72 57 58 70 57 45 58 44 36 28 58 35 28 22 58 -139 136 129 119 255 108 103 95 255 68 64 59 255 54 51 47 255 -139:1 122 122 99 255 97 97 79 255 61 61 49 255 48 48 39 255 -140 135 77 66 49 108 61 52 49 67 38 33 49 54 30 26 49 -141 87 132 66 6 69 105 52 6 43 66 33 6 34 52 26 6 -141:2 94 140 70 16 75 112 56 16 47 70 35 16 37 56 28 16 -141:3 94 140 70 16 75 112 56 16 47 70 35 16 37 56 28 16 -141:4 92 138 68 23 73 110 54 23 46 69 34 23 36 55 27 23 -141:5 92 138 68 23 73 110 54 23 46 69 34 23 36 55 27 23 -141:6 92 138 68 23 73 110 54 23 46 69 34 23 36 55 27 23 -141:7 126 146 13 60 100 116 10 60 63 73 6 60 50 58 5 60 -142 87 132 66 6 69 105 52 6 43 66 33 6 34 52 26 6 -142:2 94 140 70 16 75 112 56 16 47 70 35 16 37 56 28 16 -142:3 94 140 70 16 75 112 56 16 47 70 35 16 37 56 28 16 -142:4 92 138 68 23 73 110 54 23 46 69 34 23 36 55 27 23 -142:5 92 138 68 23 73 110 54 23 46 69 34 23 36 55 27 23 -142:6 92 138 68 23 73 110 54 23 46 69 34 23 36 55 27 23 -142:7 84 132 69 67 67 105 55 67 42 66 34 67 33 52 27 67 -143 98 80 60 255 78 64 48 255 49 40 30 255 39 32 24 255 -145 39 39 39 255 31 31 31 255 19 19 19 255 15 15 15 255 -146 140 122 103 195 112 97 82 195 70 61 51 195 56 48 41 195 -146:4 140 122 102 209 112 97 81 209 70 61 51 209 56 48 40 209 -146:5 140 122 102 209 112 97 81 209 70 61 51 209 56 48 40 209 -146:6 140 122 102 209 112 97 81 209 70 61 51 209 56 48 40 209 -146:7 140 122 102 209 112 97 81 209 70 61 51 209 56 48 40 209 -146:8 140 122 102 209 112 97 81 209 70 61 51 209 56 48 40 209 -146:9 140 122 102 209 112 97 81 209 70 61 51 209 56 48 40 209 -146:10 140 122 102 209 112 97 81 209 70 61 51 209 56 48 40 209 -146:11 140 122 102 209 112 97 81 209 70 61 51 209 56 48 40 209 -147 236 220 84 255 188 176 67 255 118 110 42 255 94 88 33 255 -148 181 179 175 255 144 143 140 255 90 89 87 255 72 71 70 255 -149 141 132 124 255 112 105 99 255 70 66 62 255 56 52 49 255 -150 145 134 125 255 116 107 100 255 72 67 62 255 58 53 50 255 -151 163 152 139 255 130 121 111 255 81 76 69 255 65 60 55 255 -152 163 4 21 255 130 3 16 255 81 2 10 255 65 1 8 255 -153 143 86 86 255 114 68 68 255 71 43 43 255 57 34 34 255 -154 31 31 31 255 24 24 24 255 15 15 15 255 12 12 12 255 -155 228 223 212 253 182 178 169 253 114 111 106 253 91 89 84 253 -155:1 225 221 207 254 180 176 165 254 112 110 103 254 90 88 82 254 -155:2 221 216 201 254 176 172 160 254 110 108 100 254 88 86 80 254 -155:3 224 218 205 255 179 174 164 255 112 109 102 255 89 87 82 255 -155:4 224 218 205 255 179 174 164 255 112 109 102 255 89 87 82 255 -156 228 223 212 253 182 178 169 253 114 111 106 253 91 89 84 253 -157 101 88 84 161 80 70 67 161 50 44 42 161 40 35 33 161 -157:8 93 82 78 161 74 65 62 161 46 41 39 161 37 32 31 161 -157:9 93 82 78 161 74 65 62 161 46 41 39 161 37 32 31 161 -157:10 93 82 78 161 74 65 62 161 46 41 39 161 37 32 31 161 -157:11 93 82 78 161 74 65 62 161 46 41 39 161 37 32 31 161 -157:12 93 82 78 161 74 65 62 161 46 41 39 161 37 32 31 161 -157:13 93 82 78 161 74 65 62 161 46 41 39 161 37 32 31 161 -158 125 118 111 255 100 94 88 255 62 59 55 255 50 47 44 255 -158:1 135 128 118 255 108 102 94 255 67 64 59 255 54 51 47 255 -159 207 182 167 255 165 145 133 255 103 91 83 255 82 72 66 255 -159:1 155 80 36 255 124 64 28 255 77 40 18 255 62 32 14 255 -159:2 153 82 107 255 122 65 85 255 76 41 53 255 61 32 42 255 -159:3 113 107 152 255 90 85 121 255 56 53 76 255 45 42 60 255 -159:4 189 132 64 255 151 105 51 255 94 66 32 255 75 52 25 255 -159:5 100 119 58 255 80 95 46 255 50 59 29 255 40 47 23 255 -159:6 153 82 81 255 122 65 64 255 76 41 40 255 61 32 32 255 -159:7 61 38 35 255 48 30 28 255 30 19 17 255 24 15 14 255 -159:8 136 103 99 255 108 82 79 255 68 51 49 255 54 41 39 255 -159:9 79 89 95 255 63 71 76 255 39 44 47 255 31 35 38 255 -159:10 118 64 87 255 94 51 69 255 59 32 43 255 47 25 34 255 -159:11 73 58 88 255 58 46 70 255 36 29 44 255 29 23 35 255 -159:12 77 48 43 255 61 38 34 255 38 24 21 255 30 19 17 255 -159:13 72 79 50 255 57 63 40 255 36 39 25 255 28 31 20 255 -159:14 141 53 55 255 112 42 44 255 70 26 27 255 56 21 22 255 -159:15 40 20 18 255 32 16 14 255 20 10 9 255 16 8 7 255 -160 193 187 182 156 154 149 145 156 96 93 91 156 77 74 72 156 -160:1 189 119 39 156 151 95 31 156 94 59 19 156 75 47 15 156 -160:2 182 26 109 156 145 20 87 156 91 13 54 156 72 10 43 156 -160:3 75 114 149 156 60 91 119 156 37 57 74 156 30 45 59 156 -160:4 193 179 21 156 154 143 16 156 96 89 10 156 77 71 8 156 -160:5 121 152 61 156 96 121 48 156 60 76 30 156 48 60 24 156 -160:6 185 25 111 166 148 20 88 166 92 12 55 166 74 10 44 166 -160:7 119 113 107 156 95 90 85 156 59 56 53 156 47 45 42 156 -160:8 126 120 115 156 100 96 92 156 63 60 57 156 50 48 46 156 -160:9 32 187 182 156 25 149 145 156 16 93 91 156 12 74 72 156 -160:10 64 26 68 156 51 20 54 156 32 13 34 156 25 10 27 156 -160:11 41 26 69 156 32 20 55 156 20 13 34 156 16 10 27 156 -160:12 111 72 21 156 88 57 16 156 55 36 10 156 44 28 8 156 -160:13 32 131 72 156 25 104 57 156 16 65 36 156 12 52 28 156 -160:14 193 26 21 156 154 20 16 156 96 13 10 156 77 10 8 156 -160:15 32 26 21 156 25 20 16 156 16 13 10 156 12 10 8 156 -161 42 75 36 154 33 60 28 154 21 37 18 154 16 30 14 154 -162 168 125 101 255 134 100 80 255 84 62 50 255 67 50 40 255 -162:1 151 129 94 255 120 103 75 255 75 64 47 255 60 51 37 255 -162:4 92 86 75 255 73 68 60 255 46 43 37 255 36 34 30 255 -162:5 56 46 34 255 44 36 27 255 28 23 17 255 22 18 13 255 -162:8 92 86 75 255 73 68 60 255 46 43 37 255 36 34 30 255 -162:9 56 46 34 255 44 36 27 255 28 23 17 255 22 18 13 255 -162:12 92 86 75 255 73 68 60 255 46 43 37 255 36 34 30 255 -162:13 56 46 34 255 44 36 27 255 28 23 17 255 22 18 13 255 -163 157 113 75 255 125 90 60 255 78 56 37 255 62 45 30 255 -164 63 49 35 255 50 39 28 255 31 24 17 255 25 19 14 255 -170 242 216 132 255 193 172 105 255 121 108 66 255 96 86 52 255 -171 229 228 220 255 183 182 176 255 114 114 110 255 91 91 88 255 -171:1 225 120 49 255 180 96 39 255 112 60 24 255 90 48 19 255 -171:2 184 76 172 255 147 60 137 255 92 38 86 255 73 30 68 255 -171:3 112 160 204 255 89 128 163 255 56 80 102 255 44 64 81 255 -171:4 223 197 54 255 178 157 43 255 111 98 27 255 89 78 21 255 -171:5 111 184 67 255 88 147 53 255 55 92 33 255 44 73 26 255 -171:6 228 177 195 255 182 141 156 255 114 88 97 255 91 70 78 255 -171:7 85 83 78 255 68 66 62 255 42 41 39 255 34 33 31 255 -171:8 169 167 165 255 135 133 132 255 84 83 82 255 67 66 66 255 -171:9 55 133 147 255 44 106 117 255 27 66 73 255 22 53 58 255 -171:10 101 54 143 255 80 43 114 255 50 27 71 255 40 21 57 255 -171:11 59 75 156 255 47 60 124 255 29 37 78 255 23 30 62 255 -171:12 76 58 39 255 60 46 31 255 38 29 19 255 30 23 15 255 -171:13 54 91 39 255 43 72 31 255 27 45 19 255 21 36 15 255 -171:14 128 42 35 255 102 33 28 255 64 21 17 255 51 16 14 255 -171:15 37 35 32 255 29 28 25 255 18 17 16 255 14 14 12 255 -172 146 78 70 255 116 62 56 255 73 39 35 255 58 31 28 255 -173 20 21 22 255 16 16 17 255 10 10 11 255 8 8 8 255 -174 190 225 247 255 152 180 197 255 95 112 123 255 76 90 98 255 -175 65 109 43 51 52 87 34 51 32 54 21 51 26 43 17 51 -175:1 142 148 132 86 113 118 105 86 71 74 66 86 56 59 52 86 -175:2 45 93 40 211 36 74 32 211 22 46 20 211 18 37 16 211 -175:3 51 107 46 143 40 85 36 143 25 53 23 143 20 42 18 143 -175:4 42 52 23 203 33 41 18 203 21 26 11 203 16 20 9 203 -175:5 54 88 59 147 43 70 47 147 27 44 29 147 21 35 23 147 -175:8 67 111 45 26 53 88 36 26 33 55 22 26 26 44 18 26 -175:9 148 148 140 83 118 118 112 83 74 74 70 83 59 59 56 83 -175:10 51 107 45 134 40 85 36 134 25 53 22 134 20 42 18 134 -175:11 56 118 50 44 44 94 40 44 28 59 25 44 22 47 20 44 -175:12 85 49 28 167 68 39 22 167 42 24 14 167 34 19 11 167 -175:13 132 133 141 129 105 106 112 129 66 66 70 129 52 53 56 129 -178 106 109 112 255 84 87 89 255 53 54 56 255 42 43 44 255 -179 166 85 29 255 132 68 23 255 83 42 14 255 66 34 11 255 -180 165 84 29 255 132 67 23 255 82 42 14 255 66 33 11 255 -181 166 85 29 255 132 68 23 255 83 42 14 255 66 34 11 255 -182 166 85 29 255 132 68 23 255 83 42 14 255 66 34 11 255 -183 103 77 46 255 82 61 36 255 51 38 23 255 41 30 18 255 -184 195 179 123 255 156 143 98 255 97 89 61 255 78 71 49 255 -185 154 110 77 255 123 88 61 255 77 55 38 255 61 44 30 255 -186 61 39 18 255 48 31 14 255 30 19 9 255 24 15 7 255 -187 169 91 51 255 135 72 40 255 84 45 25 255 67 36 20 255 -188 103 77 46 255 82 61 36 255 51 38 23 255 41 30 18 255 -189 195 179 123 255 156 143 98 255 97 89 61 255 78 71 49 255 -190 154 110 77 255 123 88 61 255 77 55 38 255 61 44 30 255 -191 61 39 18 255 48 31 14 255 30 19 9 255 24 15 7 255 -192 169 91 51 255 135 72 40 255 84 45 25 255 67 36 20 255 -193 96 74 49 255 76 59 39 255 48 37 24 255 38 29 19 255 -194 217 210 179 255 173 168 143 255 108 105 89 255 86 84 71 255 -195 151 113 85 207 120 90 68 207 75 56 42 207 60 45 34 207 -196 161 93 58 183 128 74 46 183 80 46 29 183 64 37 23 183 -197 69 47 25 255 55 37 20 255 34 23 12 255 27 18 10 255 - -Biome Mapping -[RAINFOREST] 49 67 21 255 39 54 17 255 25 34 11 255 20 27 8 255 -[SWAMPLAND] 64 128 0 255 51 102 0 255 32 64 0 255 26 51 0 255 -[SEASONAL_FOREST] 51 165 42 255 41 132 34 255 26 83 21 255 20 66 17 255 -[FOREST] 0 128 64 255 0 102 51 255 0 64 32 255 0 51 26 255 -[SAVANNA] 58 58 58 255 46 46 46 255 29 29 29 255 23 23 23 255 -[SHRUBLAND] 170 158 24 255 136 126 19 255 85 79 12 255 68 63 10 255 -[TAIGA] 204 255 102 255 163 204 82 255 102 128 51 255 82 102 41 255 -[DESERT] 255 255 102 255 204 204 82 255 128 128 51 255 102 102 41 255 -[PLAINS] 255 204 102 255 204 163 82 255 128 102 51 255 102 82 41 255 -[ICE_DESERT] 26 33 103 255 21 26 82 255 13 17 52 255 10 13 41 255 -[TUNDRA] 222 222 222 255 178 178 178 255 111 111 111 255 89 89 89 255 -[HELL] 255 0 0 255 204 0 0 255 128 0 0 255 102 0 0 255 -[SKY] 102 204 255 255 82 163 204 255 51 102 128 255 41 82 102 255 -[OCEAN] 0 0 255 255 0 0 204 255 0 0 128 255 0 0 102 255 -[RIVER] 0 128 255 255 0 102 204 255 0 64 128 255 0 51 102 255 -[EXTREME_HILLS] 128 64 0 255 102 51 0 255 64 32 0 255 51 26 0 255 -[FROZEN_OCEAN] 102 255 204 255 82 204 163 255 51 128 102 255 41 102 82 255 -[FROZEN_RIVER] 102 102 255 255 82 82 204 255 51 51 128 255 41 41 102 255 -[ICE_PLAINS] 102 255 255 255 82 204 204 255 51 128 128 255 41 102 102 255 -[ICE_MOUNTAINS] 255 255 255 255 204 204 204 255 128 128 128 255 102 102 102 255 -[MUSHROOM_ISLAND] 255 111 207 255 204 89 166 255 128 56 104 255 102 44 83 255 -[MUSHROOM_SHORE] 255 0 128 255 204 0 102 255 128 0 64 255 102 0 51 255 -[BEACH] 255 206 75 255 230 185 68 255 255 206 75 255 179 144 53 255 -[DESERT_HILLS] 255 146 51 255 230 131 46 255 255 146 51 255 179 102 36 255 -[FOREST_HILLS] 0 162 100 255 0 146 90 255 0 162 100 255 0 113 70 255 -[TAIGA_HILLS] 178 212 117 255 160 191 105 255 178 212 117 255 125 148 82 255 -[SMALL_MOUNTAINS] 184 103 33 255 166 93 30 255 184 103 33 255 129 72 23 255 -[JUNGLE] 49 67 21 255 39 54 17 255 25 34 11 255 20 27 8 255 -[JUNGLE_HILLS] 33 44 14 255 26 36 12 255 16 22 7 255 13 18 6 255 -Rainfall/Temperature Mapping -[RAINFALL-0.0] 120 120 120 255 96 96 96 255 60 60 60 255 48 48 48 255 -[RAINFALL-1.0] 38 92 255 255 30 73 204 255 19 46 127 255 15 36 102 255 -[TEMPERATURE-0.0] 38 92 255 255 30 73 204 255 19 46 127 255 15 36 102 255 -[TEMPERATURE-0.5] 91 121 185 255 73 96 147 255 46 61 92 255 36 48 73 255 -[TEMPERATURE-0.8] 51 165 42 255 41 131 33 255 26 82 21 255 20 65 17 255 -[TEMPERATURE-0.9] 170 158 24 255 135 126 19 255 85 79 12 255 67 62 10 255 -[TEMPERATURE-0.95] 204 111 48 255 162 89 38 255 102 56 24 255 81 44 19 255 -[TEMPERATURE-1.0] 143 39 36 255 114 31 28 255 71 20 18 255 57 16 14 255 +minecraft:stone 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:granite 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:polished_granite 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:diorite 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:polished_diorite 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:andesite 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:polished_andesite 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:grass_block 69 110 51 255 55 88 40 255 34 55 25 255 27 44 20 255 +minecraft:grass_block[snowy=false] 69 110 51 255 55 88 40 255 34 55 25 255 27 44 20 255 +minecraft:dirt 134 96 67 255 107 76 53 255 67 48 33 255 53 38 26 255 +minecraft:coarse_dirt 119 85 59 255 95 68 47 255 59 42 29 255 47 34 23 255 +minecraft:podzol 147 147 147 255 117 117 117 255 73 73 73 255 58 58 58 255 +minecraft:podzol[snowy=false] 91 63 24 255 72 50 19 255 45 31 12 255 36 25 9 255 +minecraft:cobblestone 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:oak_planks 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:spruce_planks 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:birch_planks 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:jungle_planks 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:acacia_planks 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:dark_oak_planks 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:oak_sapling 77 106 40 110 61 84 32 110 38 53 20 110 30 42 16 110 +minecraft:oak_sapling[stage=1] 77 106 40 110 61 84 32 110 38 53 20 110 30 42 16 110 +minecraft:spruce_sapling 44 60 36 82 35 48 28 82 22 30 18 82 17 24 14 82 +minecraft:spruce_sapling[stage=1] 44 60 36 82 35 48 28 82 22 30 18 82 17 24 14 82 +minecraft:birch_sapling 127 160 79 97 101 128 63 97 63 80 39 97 50 64 31 97 +minecraft:birch_sapling[stage=1] 127 160 79 97 101 128 63 97 63 80 39 97 50 64 31 97 +minecraft:jungle_sapling 47 81 16 85 37 64 12 85 23 40 8 85 18 32 6 85 +minecraft:jungle_sapling[stage=1] 47 81 16 85 37 64 12 85 23 40 8 85 18 32 6 85 +minecraft:acacia_sapling 118 117 23 110 94 93 18 110 59 58 11 110 47 46 9 110 +minecraft:acacia_sapling[stage=1] 118 117 23 110 94 93 18 110 59 58 11 110 47 46 9 110 +minecraft:dark_oak_sapling 61 90 30 109 48 72 24 109 30 45 15 109 24 36 12 109 +minecraft:dark_oak_sapling[stage=1] 61 90 30 109 48 72 24 109 30 45 15 109 24 36 12 109 +minecraft:bedrock 85 85 85 255 68 68 68 255 42 42 42 255 34 34 34 255 +minecraft:water 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=1] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=2] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=3] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=4] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=5] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=6] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=7] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=8] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=9] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=10] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=11] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=12] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=13] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=14] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:water[level=15] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180 +minecraft:lava 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 +minecraft:lava[level=1] 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 +minecraft:lava[level=2] 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 +minecraft:lava[level=3] 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 +minecraft:lava[level=4] 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 +minecraft:lava[level=5] 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 +minecraft:lava[level=6] 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 +minecraft:lava[level=7] 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 +minecraft:lava[level=8] 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 +minecraft:lava[level=9] 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 +minecraft:lava[level=10] 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 +minecraft:lava[level=11] 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 +minecraft:lava[level=12] 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 +minecraft:lava[level=13] 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 +minecraft:lava[level=14] 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 +minecraft:lava[level=15] 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255 +minecraft:sand 219 207 163 255 175 165 130 255 109 103 81 255 87 82 65 255 +minecraft:red_sand 190 102 33 255 152 81 26 255 95 51 16 255 76 40 13 255 +minecraft:gravel 131 127 126 255 104 101 100 255 65 63 63 255 52 50 50 255 +minecraft:gold_ore 145 133 106 255 116 106 84 255 72 66 53 255 58 53 42 255 +minecraft:deepslate_gold_ore 115 102 78 255 92 81 62 255 57 51 39 255 46 40 31 255 +minecraft:iron_ore 136 129 122 255 108 103 97 255 68 64 61 255 54 51 48 255 +minecraft:deepslate_iron_ore 106 99 94 255 84 79 75 255 53 49 47 255 42 39 37 255 +minecraft:coal_ore 105 105 105 255 84 84 84 255 52 52 52 255 42 42 42 255 +minecraft:deepslate_coal_ore 74 74 76 255 59 59 60 255 37 37 38 255 29 29 30 255 +minecraft:nether_gold_ore 115 54 42 255 92 43 33 255 57 27 21 255 46 21 16 255 +minecraft:oak_log 109 85 50 255 87 68 40 255 54 42 25 255 43 34 20 255 +minecraft:oak_log[axis=y] 151 121 73 255 120 96 58 255 75 60 36 255 60 48 29 255 +minecraft:oak_log[axis=z] 109 85 50 255 87 68 40 255 54 42 25 255 43 34 20 255 +minecraft:spruce_log 58 37 16 255 46 29 12 255 29 18 8 255 23 14 6 255 +minecraft:spruce_log[axis=y] 108 80 46 255 86 64 36 255 54 40 23 255 43 32 18 255 +minecraft:spruce_log[axis=z] 58 37 16 255 46 29 12 255 29 18 8 255 23 14 6 255 +minecraft:birch_log 216 215 210 255 172 172 168 255 108 107 105 255 86 86 84 255 +minecraft:birch_log[axis=y] 193 179 135 255 154 143 108 255 96 89 67 255 77 71 54 255 +minecraft:birch_log[axis=z] 216 215 210 255 172 172 168 255 108 107 105 255 86 86 84 255 +minecraft:jungle_log 85 67 25 255 68 53 20 255 42 33 12 255 34 26 10 255 +minecraft:jungle_log[axis=y] 149 109 70 255 119 87 56 255 74 54 35 255 59 43 28 255 +minecraft:jungle_log[axis=z] 85 67 25 255 68 53 20 255 42 33 12 255 34 26 10 255 +minecraft:acacia_log 103 96 86 255 82 76 68 255 51 48 43 255 41 38 34 255 +minecraft:acacia_log[axis=y] 150 88 55 255 120 70 44 255 75 44 27 255 60 35 22 255 +minecraft:acacia_log[axis=z] 103 96 86 255 82 76 68 255 51 48 43 255 41 38 34 255 +minecraft:dark_oak_log 60 46 26 255 48 36 20 255 30 23 13 255 24 18 10 255 +minecraft:dark_oak_log[axis=y] 64 42 21 255 51 33 16 255 32 21 10 255 25 16 8 255 +minecraft:dark_oak_log[axis=z] 60 46 26 255 48 36 20 255 30 23 13 255 24 18 10 255 +minecraft:stripped_spruce_log 115 89 52 255 92 71 41 255 57 44 26 255 46 35 20 255 +minecraft:stripped_spruce_log[axis=y] 105 80 46 255 84 64 36 255 52 40 23 255 42 32 18 255 +minecraft:stripped_spruce_log[axis=z] 115 89 52 255 92 71 41 255 57 44 26 255 46 35 20 255 +minecraft:stripped_birch_log 196 176 118 255 156 140 94 255 98 88 59 255 78 70 47 255 +minecraft:stripped_birch_log[axis=y] 191 171 116 255 152 136 92 255 95 85 58 255 76 68 46 255 +minecraft:stripped_birch_log[axis=z] 196 176 118 255 156 140 94 255 98 88 59 255 78 70 47 255 +minecraft:stripped_jungle_log 171 132 84 255 136 105 67 255 85 66 42 255 68 52 33 255 +minecraft:stripped_jungle_log[axis=y] 165 122 81 255 132 97 64 255 82 61 40 255 66 48 32 255 +minecraft:stripped_jungle_log[axis=z] 171 132 84 255 136 105 67 255 85 66 42 255 68 52 33 255 +minecraft:stripped_acacia_log 174 92 59 255 139 73 47 255 87 46 29 255 69 36 23 255 +minecraft:stripped_acacia_log[axis=y] 166 91 51 255 132 72 40 255 83 45 25 255 66 36 20 255 +minecraft:stripped_acacia_log[axis=z] 174 92 59 255 139 73 47 255 87 46 29 255 69 36 23 255 +minecraft:stripped_dark_oak_log 96 76 49 255 76 60 39 255 48 38 24 255 38 30 19 255 +minecraft:stripped_dark_oak_log[axis=y] 65 44 22 255 52 35 17 255 32 22 11 255 26 17 8 255 +minecraft:stripped_dark_oak_log[axis=z] 96 76 49 255 76 60 39 255 48 38 24 255 38 30 19 255 +minecraft:stripped_oak_log 177 144 86 255 141 115 68 255 88 72 43 255 70 57 34 255 +minecraft:stripped_oak_log[axis=y] 160 129 77 255 128 103 61 255 80 64 38 255 64 51 30 255 +minecraft:stripped_oak_log[axis=z] 177 144 86 255 141 115 68 255 88 72 43 255 70 57 34 255 +minecraft:oak_wood 109 85 50 255 87 68 40 255 54 42 25 255 43 34 20 255 +minecraft:oak_wood[axis=y] 109 85 50 255 87 68 40 255 54 42 25 255 43 34 20 255 +minecraft:oak_wood[axis=z] 109 85 50 255 87 68 40 255 54 42 25 255 43 34 20 255 +minecraft:spruce_wood 58 37 16 255 46 29 12 255 29 18 8 255 23 14 6 255 +minecraft:spruce_wood[axis=y] 58 37 16 255 46 29 12 255 29 18 8 255 23 14 6 255 +minecraft:spruce_wood[axis=z] 58 37 16 255 46 29 12 255 29 18 8 255 23 14 6 255 +minecraft:birch_wood 216 215 210 255 172 172 168 255 108 107 105 255 86 86 84 255 +minecraft:birch_wood[axis=y] 216 215 210 255 172 172 168 255 108 107 105 255 86 86 84 255 +minecraft:birch_wood[axis=z] 216 215 210 255 172 172 168 255 108 107 105 255 86 86 84 255 +minecraft:jungle_wood 85 67 25 255 68 53 20 255 42 33 12 255 34 26 10 255 +minecraft:jungle_wood[axis=y] 85 67 25 255 68 53 20 255 42 33 12 255 34 26 10 255 +minecraft:jungle_wood[axis=z] 85 67 25 255 68 53 20 255 42 33 12 255 34 26 10 255 +minecraft:acacia_wood 103 96 86 255 82 76 68 255 51 48 43 255 41 38 34 255 +minecraft:acacia_wood[axis=y] 103 96 86 255 82 76 68 255 51 48 43 255 41 38 34 255 +minecraft:acacia_wood[axis=z] 103 96 86 255 82 76 68 255 51 48 43 255 41 38 34 255 +minecraft:dark_oak_wood 60 46 26 255 48 36 20 255 30 23 13 255 24 18 10 255 +minecraft:dark_oak_wood[axis=y] 60 46 26 255 48 36 20 255 30 23 13 255 24 18 10 255 +minecraft:dark_oak_wood[axis=z] 60 46 26 255 48 36 20 255 30 23 13 255 24 18 10 255 +minecraft:stripped_oak_wood 177 144 86 255 141 115 68 255 88 72 43 255 70 57 34 255 +minecraft:stripped_oak_wood[axis=y] 177 144 86 255 141 115 68 255 88 72 43 255 70 57 34 255 +minecraft:stripped_oak_wood[axis=z] 177 144 86 255 141 115 68 255 88 72 43 255 70 57 34 255 +minecraft:stripped_spruce_wood 115 89 52 255 92 71 41 255 57 44 26 255 46 35 20 255 +minecraft:stripped_spruce_wood[axis=y] 115 89 52 255 92 71 41 255 57 44 26 255 46 35 20 255 +minecraft:stripped_spruce_wood[axis=z] 115 89 52 255 92 71 41 255 57 44 26 255 46 35 20 255 +minecraft:stripped_birch_wood 196 176 118 255 156 140 94 255 98 88 59 255 78 70 47 255 +minecraft:stripped_birch_wood[axis=y] 196 176 118 255 156 140 94 255 98 88 59 255 78 70 47 255 +minecraft:stripped_birch_wood[axis=z] 196 176 118 255 156 140 94 255 98 88 59 255 78 70 47 255 +minecraft:stripped_jungle_wood 171 132 84 255 136 105 67 255 85 66 42 255 68 52 33 255 +minecraft:stripped_jungle_wood[axis=y] 171 132 84 255 136 105 67 255 85 66 42 255 68 52 33 255 +minecraft:stripped_jungle_wood[axis=z] 171 132 84 255 136 105 67 255 85 66 42 255 68 52 33 255 +minecraft:stripped_acacia_wood 174 92 59 255 139 73 47 255 87 46 29 255 69 36 23 255 +minecraft:stripped_acacia_wood[axis=y] 174 92 59 255 139 73 47 255 87 46 29 255 69 36 23 255 +minecraft:stripped_acacia_wood[axis=z] 174 92 59 255 139 73 47 255 87 46 29 255 69 36 23 255 +minecraft:stripped_dark_oak_wood 96 76 49 255 76 60 39 255 48 38 24 255 38 30 19 255 +minecraft:stripped_dark_oak_wood[axis=y] 96 76 49 255 76 60 39 255 48 38 24 255 38 30 19 255 +minecraft:stripped_dark_oak_wood[axis=z] 96 76 49 255 76 60 39 255 48 38 24 255 38 30 19 255 +minecraft:oak_leaves 50 98 27 171 40 78 21 171 25 49 13 171 20 39 10 171 +minecraft:oak_leaves[distance=1,persistent=false] 50 98 27 171 40 78 21 171 25 49 13 171 20 39 10 171 +minecraft:oak_leaves[distance=2,persistent=true] 50 98 27 171 40 78 21 171 25 49 13 171 20 39 10 171 +minecraft:oak_leaves[distance=2,persistent=false] 50 98 27 171 40 78 21 171 25 49 13 171 20 39 10 171 +minecraft:oak_leaves[distance=3,persistent=true] 50 98 27 171 40 78 21 171 25 49 13 171 20 39 10 171 +minecraft:oak_leaves[distance=3,persistent=false] 50 98 27 171 40 78 21 171 25 49 13 171 20 39 10 171 +minecraft:oak_leaves[distance=4,persistent=true] 50 98 27 171 40 78 21 171 25 49 13 171 20 39 10 171 +minecraft:oak_leaves[distance=4,persistent=false] 50 98 27 171 40 78 21 171 25 49 13 171 20 39 10 171 +minecraft:oak_leaves[distance=5,persistent=true] 50 98 27 171 40 78 21 171 25 49 13 171 20 39 10 171 +minecraft:oak_leaves[distance=5,persistent=false] 50 98 27 171 40 78 21 171 25 49 13 171 20 39 10 171 +minecraft:oak_leaves[distance=6,persistent=true] 50 98 27 171 40 78 21 171 25 49 13 171 20 39 10 171 +minecraft:oak_leaves[distance=6,persistent=false] 50 98 27 171 40 78 21 171 25 49 13 171 20 39 10 171 +minecraft:oak_leaves[distance=7,persistent=true] 50 98 27 171 40 78 21 171 25 49 13 171 20 39 10 171 +minecraft:oak_leaves[distance=7,persistent=false] 50 98 27 171 40 78 21 171 25 49 13 171 20 39 10 171 +minecraft:spruce_leaves 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=1,persistent=false] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=2,persistent=true] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=2,persistent=false] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=3,persistent=true] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=3,persistent=false] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=4,persistent=true] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=4,persistent=false] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=5,persistent=true] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=5,persistent=false] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=6,persistent=true] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=6,persistent=false] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=7,persistent=true] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:spruce_leaves[distance=7,persistent=false] 47 75 47 159 37 60 37 159 23 37 23 159 18 30 18 159 +minecraft:birch_leaves 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=1,persistent=false] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=2,persistent=true] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=2,persistent=false] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=3,persistent=true] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=3,persistent=false] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=4,persistent=true] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=4,persistent=false] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=5,persistent=true] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=5,persistent=false] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=6,persistent=true] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=6,persistent=false] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=7,persistent=true] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:birch_leaves[distance=7,persistent=false] 65 84 43 143 52 67 34 143 32 42 21 143 26 33 17 143 +minecraft:jungle_leaves 54 105 26 177 43 84 20 177 27 52 13 177 21 42 10 177 +minecraft:jungle_leaves[distance=1,persistent=false] 54 105 26 177 43 84 20 177 27 52 13 177 21 42 10 177 +minecraft:jungle_leaves[distance=2,persistent=true] 54 105 26 177 43 84 20 177 27 52 13 177 21 42 10 177 +minecraft:jungle_leaves[distance=2,persistent=false] 54 105 26 177 43 84 20 177 27 52 13 177 21 42 10 177 +minecraft:jungle_leaves[distance=3,persistent=true] 54 105 26 177 43 84 20 177 27 52 13 177 21 42 10 177 +minecraft:jungle_leaves[distance=3,persistent=false] 54 105 26 177 43 84 20 177 27 52 13 177 21 42 10 177 +minecraft:jungle_leaves[distance=4,persistent=true] 54 105 26 177 43 84 20 177 27 52 13 177 21 42 10 177 +minecraft:jungle_leaves[distance=4,persistent=false] 54 105 26 177 43 84 20 177 27 52 13 177 21 42 10 177 +minecraft:jungle_leaves[distance=5,persistent=true] 54 105 26 177 43 84 20 177 27 52 13 177 21 42 10 177 +minecraft:jungle_leaves[distance=5,persistent=false] 54 105 26 177 43 84 20 177 27 52 13 177 21 42 10 177 +minecraft:jungle_leaves[distance=6,persistent=true] 54 105 26 177 43 84 20 177 27 52 13 177 21 42 10 177 +minecraft:jungle_leaves[distance=6,persistent=false] 54 105 26 177 43 84 20 177 27 52 13 177 21 42 10 177 +minecraft:jungle_leaves[distance=7,persistent=true] 54 105 26 177 43 84 20 177 27 52 13 177 21 42 10 177 +minecraft:jungle_leaves[distance=7,persistent=false] 54 105 26 177 43 84 20 177 27 52 13 177 21 42 10 177 +minecraft:acacia_leaves 52 100 27 147 41 80 21 147 26 50 13 147 20 40 10 147 +minecraft:acacia_leaves[distance=1,persistent=false] 52 100 27 147 41 80 21 147 26 50 13 147 20 40 10 147 +minecraft:acacia_leaves[distance=2,persistent=true] 52 100 27 147 41 80 21 147 26 50 13 147 20 40 10 147 +minecraft:acacia_leaves[distance=2,persistent=false] 52 100 27 147 41 80 21 147 26 50 13 147 20 40 10 147 +minecraft:acacia_leaves[distance=3,persistent=true] 52 100 27 147 41 80 21 147 26 50 13 147 20 40 10 147 +minecraft:acacia_leaves[distance=3,persistent=false] 52 100 27 147 41 80 21 147 26 50 13 147 20 40 10 147 +minecraft:acacia_leaves[distance=4,persistent=true] 52 100 27 147 41 80 21 147 26 50 13 147 20 40 10 147 +minecraft:acacia_leaves[distance=4,persistent=false] 52 100 27 147 41 80 21 147 26 50 13 147 20 40 10 147 +minecraft:acacia_leaves[distance=5,persistent=true] 52 100 27 147 41 80 21 147 26 50 13 147 20 40 10 147 +minecraft:acacia_leaves[distance=5,persistent=false] 52 100 27 147 41 80 21 147 26 50 13 147 20 40 10 147 +minecraft:acacia_leaves[distance=6,persistent=true] 52 100 27 147 41 80 21 147 26 50 13 147 20 40 10 147 +minecraft:acacia_leaves[distance=6,persistent=false] 52 100 27 147 41 80 21 147 26 50 13 147 20 40 10 147 +minecraft:acacia_leaves[distance=7,persistent=true] 52 100 27 147 41 80 21 147 26 50 13 147 20 40 10 147 +minecraft:acacia_leaves[distance=7,persistent=false] 52 100 27 147 41 80 21 147 26 50 13 147 20 40 10 147 +minecraft:dark_oak_leaves 52 102 28 178 41 81 22 178 26 51 14 178 20 40 11 178 +minecraft:dark_oak_leaves[distance=1,persistent=false] 52 102 28 178 41 81 22 178 26 51 14 178 20 40 11 178 +minecraft:dark_oak_leaves[distance=2,persistent=true] 52 102 28 178 41 81 22 178 26 51 14 178 20 40 11 178 +minecraft:dark_oak_leaves[distance=2,persistent=false] 52 102 28 178 41 81 22 178 26 51 14 178 20 40 11 178 +minecraft:dark_oak_leaves[distance=3,persistent=true] 52 102 28 178 41 81 22 178 26 51 14 178 20 40 11 178 +minecraft:dark_oak_leaves[distance=3,persistent=false] 52 102 28 178 41 81 22 178 26 51 14 178 20 40 11 178 +minecraft:dark_oak_leaves[distance=4,persistent=true] 52 102 28 178 41 81 22 178 26 51 14 178 20 40 11 178 +minecraft:dark_oak_leaves[distance=4,persistent=false] 52 102 28 178 41 81 22 178 26 51 14 178 20 40 11 178 +minecraft:dark_oak_leaves[distance=5,persistent=true] 52 102 28 178 41 81 22 178 26 51 14 178 20 40 11 178 +minecraft:dark_oak_leaves[distance=5,persistent=false] 52 102 28 178 41 81 22 178 26 51 14 178 20 40 11 178 +minecraft:dark_oak_leaves[distance=6,persistent=true] 52 102 28 178 41 81 22 178 26 51 14 178 20 40 11 178 +minecraft:dark_oak_leaves[distance=6,persistent=false] 52 102 28 178 41 81 22 178 26 51 14 178 20 40 11 178 +minecraft:dark_oak_leaves[distance=7,persistent=true] 52 102 28 178 41 81 22 178 26 51 14 178 20 40 11 178 +minecraft:dark_oak_leaves[distance=7,persistent=false] 52 102 28 178 41 81 22 178 26 51 14 178 20 40 11 178 +minecraft:azalea_leaves 31 77 8 196 24 61 6 196 15 38 4 196 12 30 3 196 +minecraft:azalea_leaves[distance=1,persistent=false] 31 77 8 196 24 61 6 196 15 38 4 196 12 30 3 196 +minecraft:azalea_leaves[distance=2,persistent=true] 31 77 8 196 24 61 6 196 15 38 4 196 12 30 3 196 +minecraft:azalea_leaves[distance=2,persistent=false] 31 77 8 196 24 61 6 196 15 38 4 196 12 30 3 196 +minecraft:azalea_leaves[distance=3,persistent=true] 31 77 8 196 24 61 6 196 15 38 4 196 12 30 3 196 +minecraft:azalea_leaves[distance=3,persistent=false] 31 77 8 196 24 61 6 196 15 38 4 196 12 30 3 196 +minecraft:azalea_leaves[distance=4,persistent=true] 31 77 8 196 24 61 6 196 15 38 4 196 12 30 3 196 +minecraft:azalea_leaves[distance=4,persistent=false] 31 77 8 196 24 61 6 196 15 38 4 196 12 30 3 196 +minecraft:azalea_leaves[distance=5,persistent=true] 31 77 8 196 24 61 6 196 15 38 4 196 12 30 3 196 +minecraft:azalea_leaves[distance=5,persistent=false] 31 77 8 196 24 61 6 196 15 38 4 196 12 30 3 196 +minecraft:azalea_leaves[distance=6,persistent=true] 31 77 8 196 24 61 6 196 15 38 4 196 12 30 3 196 +minecraft:azalea_leaves[distance=6,persistent=false] 31 77 8 196 24 61 6 196 15 38 4 196 12 30 3 196 +minecraft:azalea_leaves[distance=7,persistent=true] 31 77 8 196 24 61 6 196 15 38 4 196 12 30 3 196 +minecraft:azalea_leaves[distance=7,persistent=false] 31 77 8 196 24 61 6 196 15 38 4 196 12 30 3 196 +minecraft:flowering_azalea_leaves 34 75 11 204 27 60 8 204 17 37 5 204 13 30 4 204 +minecraft:flowering_azalea_leaves[distance=1,persistent=false] 34 75 11 204 27 60 8 204 17 37 5 204 13 30 4 204 +minecraft:flowering_azalea_leaves[distance=2,persistent=true] 34 75 11 204 27 60 8 204 17 37 5 204 13 30 4 204 +minecraft:flowering_azalea_leaves[distance=2,persistent=false] 34 75 11 204 27 60 8 204 17 37 5 204 13 30 4 204 +minecraft:flowering_azalea_leaves[distance=3,persistent=true] 34 75 11 204 27 60 8 204 17 37 5 204 13 30 4 204 +minecraft:flowering_azalea_leaves[distance=3,persistent=false] 34 75 11 204 27 60 8 204 17 37 5 204 13 30 4 204 +minecraft:flowering_azalea_leaves[distance=4,persistent=true] 34 75 11 204 27 60 8 204 17 37 5 204 13 30 4 204 +minecraft:flowering_azalea_leaves[distance=4,persistent=false] 34 75 11 204 27 60 8 204 17 37 5 204 13 30 4 204 +minecraft:flowering_azalea_leaves[distance=5,persistent=true] 34 75 11 204 27 60 8 204 17 37 5 204 13 30 4 204 +minecraft:flowering_azalea_leaves[distance=5,persistent=false] 34 75 11 204 27 60 8 204 17 37 5 204 13 30 4 204 +minecraft:flowering_azalea_leaves[distance=6,persistent=true] 34 75 11 204 27 60 8 204 17 37 5 204 13 30 4 204 +minecraft:flowering_azalea_leaves[distance=6,persistent=false] 34 75 11 204 27 60 8 204 17 37 5 204 13 30 4 204 +minecraft:flowering_azalea_leaves[distance=7,persistent=true] 34 75 11 204 27 60 8 204 17 37 5 204 13 30 4 204 +minecraft:flowering_azalea_leaves[distance=7,persistent=false] 34 75 11 204 27 60 8 204 17 37 5 204 13 30 4 204 +minecraft:sponge 195 192 74 255 156 153 59 255 97 96 37 255 78 76 29 255 +minecraft:wet_sponge 171 181 70 255 136 144 56 255 85 90 35 255 68 72 28 255 +minecraft:glass 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:lapis_ore 107 117 141 255 85 93 112 255 53 58 70 255 42 46 56 255 +minecraft:deepslate_lapis_ore 79 90 115 255 63 72 92 255 39 45 57 255 31 36 46 255 +minecraft:lapis_block 30 67 140 255 24 53 112 255 15 33 70 255 12 26 56 255 +minecraft:dispenser 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dispenser[facing=north,triggered=false] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dispenser[facing=east,triggered=true] 98 97 97 255 78 77 77 255 49 48 48 255 39 38 38 255 +minecraft:dispenser[facing=east,triggered=false] 98 97 97 255 78 77 77 255 49 48 48 255 39 38 38 255 +minecraft:dispenser[facing=south,triggered=true] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dispenser[facing=south,triggered=false] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dispenser[facing=west,triggered=true] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dispenser[facing=west,triggered=false] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dispenser[facing=up,triggered=true] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dispenser[facing=up,triggered=false] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dispenser[facing=down,triggered=true] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dispenser[facing=down,triggered=false] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:sandstone 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:chiseled_sandstone 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:cut_sandstone 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:note_block 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=0,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=1,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=1,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=2,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=2,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=3,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=3,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=4,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=4,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=5,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=5,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=6,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=6,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=7,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=7,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=8,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=8,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=9,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=9,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=10,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=10,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=11,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=11,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=12,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=12,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=13,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=13,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=14,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=14,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=15,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=15,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=16,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=16,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=17,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=17,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=18,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=18,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=19,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=19,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=20,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=20,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=21,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=21,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=22,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=22,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=23,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=23,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=24,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=harp,note=24,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=0,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=0,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=1,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=1,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=2,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=2,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=3,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=3,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=4,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=4,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=5,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=5,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=6,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=6,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=7,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=7,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=8,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=8,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=9,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=9,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=10,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=10,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=11,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=11,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=12,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=12,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=13,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=13,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=14,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=14,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=15,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=15,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=16,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=16,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=17,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=17,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=18,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=18,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=19,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=19,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=20,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=20,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=21,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=21,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=22,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=22,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=23,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=23,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=24,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=basedrum,note=24,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=0,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=0,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=1,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=1,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=2,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=2,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=3,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=3,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=4,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=4,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=5,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=5,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=6,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=6,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=7,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=7,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=8,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=8,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=9,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=9,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=10,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=10,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=11,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=11,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=12,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=12,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=13,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=13,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=14,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=14,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=15,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=15,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=16,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=16,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=17,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=17,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=18,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=18,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=19,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=19,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=20,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=20,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=21,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=21,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=22,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=22,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=23,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=23,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=24,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=snare,note=24,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=0,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=0,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=1,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=1,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=2,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=2,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=3,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=3,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=4,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=4,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=5,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=5,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=6,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=6,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=7,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=7,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=8,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=8,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=9,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=9,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=10,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=10,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=11,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=11,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=12,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=12,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=13,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=13,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=14,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=14,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=15,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=15,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=16,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=16,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=17,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=17,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=18,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=18,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=19,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=19,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=20,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=20,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=21,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=21,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=22,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=22,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=23,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=23,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=24,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=hat,note=24,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=0,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=0,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=1,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=1,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=2,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=2,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=3,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=3,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=4,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=4,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=5,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=5,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=6,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=6,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=7,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=7,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=8,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=8,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=9,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=9,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=10,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=10,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=11,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=11,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=12,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=12,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=13,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=13,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=14,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=14,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=15,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=15,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=16,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=16,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=17,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=17,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=18,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=18,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=19,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=19,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=20,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=20,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=21,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=21,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=22,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=22,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=23,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=23,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=24,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bass,note=24,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=0,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=0,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=1,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=1,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=2,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=2,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=3,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=3,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=4,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=4,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=5,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=5,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=6,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=6,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=7,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=7,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=8,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=8,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=9,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=9,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=10,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=10,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=11,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=11,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=12,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=12,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=13,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=13,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=14,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=14,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=15,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=15,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=16,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=16,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=17,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=17,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=18,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=18,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=19,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=19,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=20,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=20,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=21,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=21,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=22,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=22,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=23,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=23,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=24,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=flute,note=24,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=0,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=0,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=1,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=1,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=2,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=2,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=3,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=3,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=4,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=4,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=5,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=5,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=6,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=6,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=7,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=7,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=8,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=8,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=9,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=9,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=10,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=10,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=11,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=11,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=12,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=12,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=13,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=13,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=14,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=14,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=15,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=15,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=16,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=16,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=17,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=17,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=18,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=18,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=19,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=19,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=20,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=20,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=21,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=21,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=22,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=22,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=23,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=23,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=24,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bell,note=24,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=0,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=0,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=1,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=1,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=2,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=2,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=3,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=3,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=4,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=4,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=5,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=5,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=6,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=6,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=7,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=7,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=8,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=8,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=9,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=9,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=10,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=10,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=11,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=11,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=12,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=12,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=13,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=13,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=14,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=14,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=15,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=15,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=16,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=16,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=17,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=17,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=18,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=18,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=19,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=19,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=20,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=20,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=21,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=21,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=22,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=22,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=23,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=23,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=24,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=guitar,note=24,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=0,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=0,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=1,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=1,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=2,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=2,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=3,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=3,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=4,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=4,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=5,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=5,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=6,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=6,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=7,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=7,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=8,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=8,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=9,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=9,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=10,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=10,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=11,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=11,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=12,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=12,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=13,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=13,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=14,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=14,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=15,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=15,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=16,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=16,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=17,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=17,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=18,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=18,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=19,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=19,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=20,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=20,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=21,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=21,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=22,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=22,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=23,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=23,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=24,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=chime,note=24,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=0,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=0,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=1,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=1,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=2,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=2,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=3,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=3,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=4,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=4,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=5,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=5,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=6,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=6,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=7,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=7,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=8,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=8,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=9,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=9,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=10,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=10,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=11,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=11,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=12,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=12,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=13,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=13,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=14,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=14,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=15,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=15,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=16,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=16,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=17,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=17,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=18,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=18,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=19,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=19,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=20,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=20,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=21,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=21,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=22,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=22,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=23,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=23,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=24,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=xylophone,note=24,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=0,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=0,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=1,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=1,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=2,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=2,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=3,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=3,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=4,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=4,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=5,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=5,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=6,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=6,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=7,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=7,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=8,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=8,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=9,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=9,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=10,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=10,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=11,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=11,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=12,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=12,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=13,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=13,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=14,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=14,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=15,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=15,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=16,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=16,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=17,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=17,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=18,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=18,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=19,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=19,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=20,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=20,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=21,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=21,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=22,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=22,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=23,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=23,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=24,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=iron_xylophone,note=24,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=0,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=0,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=1,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=1,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=2,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=2,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=3,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=3,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=4,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=4,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=5,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=5,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=6,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=6,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=7,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=7,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=8,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=8,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=9,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=9,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=10,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=10,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=11,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=11,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=12,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=12,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=13,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=13,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=14,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=14,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=15,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=15,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=16,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=16,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=17,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=17,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=18,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=18,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=19,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=19,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=20,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=20,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=21,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=21,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=22,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=22,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=23,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=23,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=24,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=cow_bell,note=24,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=0,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=0,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=1,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=1,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=2,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=2,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=3,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=3,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=4,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=4,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=5,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=5,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=6,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=6,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=7,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=7,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=8,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=8,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=9,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=9,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=10,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=10,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=11,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=11,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=12,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=12,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=13,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=13,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=14,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=14,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=15,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=15,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=16,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=16,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=17,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=17,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=18,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=18,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=19,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=19,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=20,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=20,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=21,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=21,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=22,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=22,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=23,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=23,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=24,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=didgeridoo,note=24,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=0,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=0,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=1,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=1,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=2,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=2,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=3,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=3,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=4,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=4,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=5,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=5,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=6,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=6,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=7,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=7,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=8,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=8,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=9,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=9,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=10,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=10,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=11,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=11,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=12,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=12,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=13,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=13,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=14,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=14,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=15,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=15,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=16,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=16,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=17,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=17,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=18,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=18,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=19,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=19,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=20,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=20,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=21,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=21,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=22,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=22,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=23,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=23,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=24,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=bit,note=24,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=0,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=0,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=1,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=1,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=2,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=2,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=3,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=3,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=4,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=4,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=5,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=5,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=6,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=6,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=7,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=7,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=8,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=8,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=9,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=9,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=10,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=10,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=11,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=11,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=12,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=12,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=13,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=13,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=14,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=14,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=15,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=15,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=16,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=16,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=17,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=17,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=18,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=18,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=19,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=19,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=20,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=20,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=21,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=21,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=22,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=22,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=23,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=23,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=24,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=banjo,note=24,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=0,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=0,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=1,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=1,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=2,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=2,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=3,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=3,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=4,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=4,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=5,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=5,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=6,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=6,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=7,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=7,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=8,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=8,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=9,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=9,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=10,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=10,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=11,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=11,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=12,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=12,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=13,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=13,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=14,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=14,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=15,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=15,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=16,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=16,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=17,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=17,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=18,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=18,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=19,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=19,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=20,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=20,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=21,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=21,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=22,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=22,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=23,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=23,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=24,powered=true] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:note_block[instrument=pling,note=24,powered=false] 88 58 40 255 70 46 32 255 44 29 20 255 35 23 16 255 +minecraft:powered_rail 154 109 74 171 123 87 59 171 77 54 37 171 61 43 29 171 +minecraft:powered_rail[powered=true,shape=north_south,waterlogged=false] 154 109 74 171 123 87 59 171 77 54 37 171 61 43 29 171 +minecraft:powered_rail[powered=true,shape=east_west,waterlogged=true] 154 109 74 171 123 87 59 171 77 54 37 171 61 43 29 171 +minecraft:powered_rail[powered=true,shape=east_west,waterlogged=false] 154 109 74 171 123 87 59 171 77 54 37 171 61 43 29 171 +minecraft:powered_rail[powered=true,shape=ascending_east,waterlogged=true] 154 109 74 171 123 87 59 171 77 54 37 171 61 43 29 171 +minecraft:powered_rail[powered=true,shape=ascending_east,waterlogged=false] 154 109 74 171 123 87 59 171 77 54 37 171 61 43 29 171 +minecraft:powered_rail[powered=true,shape=ascending_west,waterlogged=true] 154 109 74 171 123 87 59 171 77 54 37 171 61 43 29 171 +minecraft:powered_rail[powered=true,shape=ascending_west,waterlogged=false] 154 109 74 171 123 87 59 171 77 54 37 171 61 43 29 171 +minecraft:powered_rail[powered=true,shape=ascending_north,waterlogged=true] 154 109 74 171 123 87 59 171 77 54 37 171 61 43 29 171 +minecraft:powered_rail[powered=true,shape=ascending_north,waterlogged=false] 154 109 74 171 123 87 59 171 77 54 37 171 61 43 29 171 +minecraft:powered_rail[powered=true,shape=ascending_south,waterlogged=true] 154 109 74 171 123 87 59 171 77 54 37 171 61 43 29 171 +minecraft:powered_rail[powered=true,shape=ascending_south,waterlogged=false] 154 109 74 171 123 87 59 171 77 54 37 171 61 43 29 171 +minecraft:powered_rail[powered=false,shape=north_south,waterlogged=true] 137 109 74 171 109 87 59 171 68 54 37 171 54 43 29 171 +minecraft:powered_rail[powered=false,shape=north_south,waterlogged=false] 137 109 74 171 109 87 59 171 68 54 37 171 54 43 29 171 +minecraft:powered_rail[powered=false,shape=east_west,waterlogged=true] 137 109 74 171 109 87 59 171 68 54 37 171 54 43 29 171 +minecraft:powered_rail[powered=false,shape=east_west,waterlogged=false] 137 109 74 171 109 87 59 171 68 54 37 171 54 43 29 171 +minecraft:powered_rail[powered=false,shape=ascending_east,waterlogged=true] 137 109 74 171 109 87 59 171 68 54 37 171 54 43 29 171 +minecraft:powered_rail[powered=false,shape=ascending_east,waterlogged=false] 137 109 74 171 109 87 59 171 68 54 37 171 54 43 29 171 +minecraft:powered_rail[powered=false,shape=ascending_west,waterlogged=true] 137 109 74 171 109 87 59 171 68 54 37 171 54 43 29 171 +minecraft:powered_rail[powered=false,shape=ascending_west,waterlogged=false] 137 109 74 171 109 87 59 171 68 54 37 171 54 43 29 171 +minecraft:powered_rail[powered=false,shape=ascending_north,waterlogged=true] 137 109 74 171 109 87 59 171 68 54 37 171 54 43 29 171 +minecraft:powered_rail[powered=false,shape=ascending_north,waterlogged=false] 137 109 74 171 109 87 59 171 68 54 37 171 54 43 29 171 +minecraft:powered_rail[powered=false,shape=ascending_south,waterlogged=true] 137 109 74 171 109 87 59 171 68 54 37 171 54 43 29 171 +minecraft:powered_rail[powered=false,shape=ascending_south,waterlogged=false] 137 109 74 171 109 87 59 171 68 54 37 171 54 43 29 171 +minecraft:detector_rail 137 103 89 155 109 82 71 155 68 51 44 155 54 41 35 155 +minecraft:detector_rail[powered=true,shape=north_south,waterlogged=false] 137 103 89 155 109 82 71 155 68 51 44 155 54 41 35 155 +minecraft:detector_rail[powered=true,shape=east_west,waterlogged=true] 137 103 89 155 109 82 71 155 68 51 44 155 54 41 35 155 +minecraft:detector_rail[powered=true,shape=east_west,waterlogged=false] 137 103 89 155 109 82 71 155 68 51 44 155 54 41 35 155 +minecraft:detector_rail[powered=true,shape=ascending_east,waterlogged=true] 137 103 89 155 109 82 71 155 68 51 44 155 54 41 35 155 +minecraft:detector_rail[powered=true,shape=ascending_east,waterlogged=false] 137 103 89 155 109 82 71 155 68 51 44 155 54 41 35 155 +minecraft:detector_rail[powered=true,shape=ascending_west,waterlogged=true] 137 103 89 155 109 82 71 155 68 51 44 155 54 41 35 155 +minecraft:detector_rail[powered=true,shape=ascending_west,waterlogged=false] 137 103 89 155 109 82 71 155 68 51 44 155 54 41 35 155 +minecraft:detector_rail[powered=true,shape=ascending_north,waterlogged=true] 137 103 89 155 109 82 71 155 68 51 44 155 54 41 35 155 +minecraft:detector_rail[powered=true,shape=ascending_north,waterlogged=false] 137 103 89 155 109 82 71 155 68 51 44 155 54 41 35 155 +minecraft:detector_rail[powered=true,shape=ascending_south,waterlogged=true] 137 103 89 155 109 82 71 155 68 51 44 155 54 41 35 155 +minecraft:detector_rail[powered=true,shape=ascending_south,waterlogged=false] 137 103 89 155 109 82 71 155 68 51 44 155 54 41 35 155 +minecraft:detector_rail[powered=false,shape=north_south,waterlogged=true] 123 104 90 155 98 83 72 155 61 52 45 155 49 41 36 155 +minecraft:detector_rail[powered=false,shape=north_south,waterlogged=false] 123 104 90 155 98 83 72 155 61 52 45 155 49 41 36 155 +minecraft:detector_rail[powered=false,shape=east_west,waterlogged=true] 123 104 90 155 98 83 72 155 61 52 45 155 49 41 36 155 +minecraft:detector_rail[powered=false,shape=east_west,waterlogged=false] 123 104 90 155 98 83 72 155 61 52 45 155 49 41 36 155 +minecraft:detector_rail[powered=false,shape=ascending_east,waterlogged=true] 123 104 90 155 98 83 72 155 61 52 45 155 49 41 36 155 +minecraft:detector_rail[powered=false,shape=ascending_east,waterlogged=false] 123 104 90 155 98 83 72 155 61 52 45 155 49 41 36 155 +minecraft:detector_rail[powered=false,shape=ascending_west,waterlogged=true] 123 104 90 155 98 83 72 155 61 52 45 155 49 41 36 155 +minecraft:detector_rail[powered=false,shape=ascending_west,waterlogged=false] 123 104 90 155 98 83 72 155 61 52 45 155 49 41 36 155 +minecraft:detector_rail[powered=false,shape=ascending_north,waterlogged=true] 123 104 90 155 98 83 72 155 61 52 45 155 49 41 36 155 +minecraft:detector_rail[powered=false,shape=ascending_north,waterlogged=false] 123 104 90 155 98 83 72 155 61 52 45 155 49 41 36 155 +minecraft:detector_rail[powered=false,shape=ascending_south,waterlogged=true] 123 104 90 155 98 83 72 155 61 52 45 155 49 41 36 155 +minecraft:detector_rail[powered=false,shape=ascending_south,waterlogged=false] 123 104 90 155 98 83 72 155 61 52 45 155 49 41 36 155 +minecraft:sticky_piston 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:sticky_piston[extended=true,facing=east] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:sticky_piston[extended=true,facing=south] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:sticky_piston[extended=true,facing=west] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:sticky_piston[extended=true,facing=up] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:sticky_piston[extended=true,facing=down] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:sticky_piston[extended=false,facing=north] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:sticky_piston[extended=false,facing=east] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:sticky_piston[extended=false,facing=south] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:sticky_piston[extended=false,facing=west] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:sticky_piston[extended=false,facing=up] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:sticky_piston[extended=false,facing=down] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:cobweb 228 233 234 104 182 186 187 104 114 116 117 104 91 93 93 104 +minecraft:grass 68 109 51 139 54 87 40 139 34 54 25 139 27 43 20 139 +minecraft:fern 58 93 43 88 46 74 34 88 29 46 21 88 23 37 17 88 +minecraft:dead_bush 107 78 40 77 85 62 32 77 53 39 20 77 42 31 16 77 +minecraft:seagrass 24 94 2 76 19 75 1 76 12 47 1 76 9 37 0 76 +minecraft:tall_seagrass 27 103 4 72 21 82 3 72 13 51 2 72 10 41 1 72 +minecraft:tall_seagrass[half=lower] 21 88 1 141 16 70 0 141 10 44 0 141 8 35 0 141 +minecraft:piston 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:piston[extended=true,facing=east] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:piston[extended=true,facing=south] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:piston[extended=true,facing=west] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:piston[extended=true,facing=up] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:piston[extended=true,facing=down] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:piston[extended=false,facing=north] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:piston[extended=false,facing=east] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:piston[extended=false,facing=south] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:piston[extended=false,facing=west] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:piston[extended=false,facing=up] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:piston[extended=false,facing=down] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15 +minecraft:piston_head 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=north,short=true,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=north,short=false,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=north,short=false,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=east,short=true,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=east,short=true,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=east,short=false,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=east,short=false,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=south,short=true,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=south,short=true,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=south,short=false,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=south,short=false,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=west,short=true,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=west,short=true,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=west,short=false,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=west,short=false,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=up,short=true,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=up,short=true,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=up,short=false,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=up,short=false,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=down,short=true,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=down,short=true,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=down,short=false,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:piston_head[facing=down,short=false,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47 +minecraft:white_wool 233 236 236 255 186 188 188 255 116 118 118 255 93 94 94 255 +minecraft:orange_wool 240 118 19 255 192 94 15 255 120 59 9 255 96 47 7 255 +minecraft:magenta_wool 189 68 179 255 151 54 143 255 94 34 89 255 75 27 71 255 +minecraft:light_blue_wool 58 175 217 255 46 140 173 255 29 87 108 255 23 70 86 255 +minecraft:yellow_wool 248 197 39 255 198 157 31 255 124 98 19 255 99 78 15 255 +minecraft:lime_wool 112 185 25 255 89 148 20 255 56 92 12 255 44 74 10 255 +minecraft:pink_wool 237 141 172 255 189 112 137 255 118 70 86 255 94 56 68 255 +minecraft:gray_wool 62 68 71 255 49 54 56 255 31 34 35 255 24 27 28 255 +minecraft:light_gray_wool 142 142 134 255 113 113 107 255 71 71 67 255 56 56 53 255 +minecraft:cyan_wool 21 137 145 255 16 109 116 255 10 68 72 255 8 54 58 255 +minecraft:purple_wool 121 42 172 255 96 33 137 255 60 21 86 255 48 16 68 255 +minecraft:blue_wool 53 57 157 255 42 45 125 255 26 28 78 255 21 22 62 255 +minecraft:brown_wool 114 71 40 255 91 56 32 255 57 35 20 255 45 28 16 255 +minecraft:green_wool 84 109 27 255 67 87 21 255 42 54 13 255 33 43 10 255 +minecraft:red_wool 160 39 34 255 128 31 27 255 80 19 17 255 64 15 13 255 +minecraft:black_wool 20 21 25 255 16 16 20 255 10 10 12 255 8 8 10 255 +minecraft:dandelion 147 172 43 31 117 137 34 31 73 86 21 31 58 68 17 31 +minecraft:poppy 128 64 37 34 102 51 29 34 64 32 18 34 51 25 14 34 +minecraft:blue_orchid 47 162 168 43 37 129 134 43 23 81 84 43 18 64 67 43 +minecraft:allium 158 137 183 37 126 109 146 37 79 68 91 37 63 54 73 37 +minecraft:azure_bluet 169 204 127 42 135 163 101 42 84 102 63 42 67 81 50 42 +minecraft:red_tulip 89 128 32 48 71 102 25 48 44 64 16 48 35 51 12 48 +minecraft:orange_tulip 93 142 30 40 74 113 24 40 46 71 15 40 37 56 12 40 +minecraft:white_tulip 93 164 71 44 74 131 56 44 46 82 35 44 37 65 28 44 +minecraft:pink_tulip 99 157 78 40 79 125 62 40 49 78 39 40 39 62 31 40 +minecraft:oxeye_daisy 179 202 143 50 143 161 114 50 89 101 71 50 71 80 57 50 +minecraft:cornflower 79 121 146 34 63 96 116 34 39 60 73 34 31 48 58 34 +minecraft:wither_rose 41 44 23 36 32 35 18 36 20 22 11 36 16 17 9 36 +minecraft:lily_of_the_valley 123 174 95 51 98 139 76 51 61 87 47 51 49 69 38 51 +minecraft:brown_mushroom 153 116 92 33 122 92 73 33 76 58 46 33 61 46 36 33 +minecraft:red_mushroom 216 75 67 31 172 60 53 31 108 37 33 31 86 30 26 31 +minecraft:gold_block 246 208 61 255 196 166 48 255 123 104 30 255 98 83 24 255 +minecraft:iron_block 220 220 220 255 176 176 176 255 110 110 110 255 88 88 88 255 +minecraft:bricks 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:tnt 142 62 53 255 113 49 42 255 71 31 26 255 56 24 21 255 +minecraft:tnt[unstable=false] 142 62 53 255 113 49 42 255 71 31 26 255 56 24 21 255 +minecraft:bookshelf 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:mossy_cobblestone 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:obsidian 15 10 24 255 12 8 19 255 7 5 12 255 6 4 9 255 +minecraft:torch 138 113 63 19 110 90 50 19 69 56 31 19 55 45 25 19 +minecraft:wall_torch 138 113 63 19 110 90 50 19 69 56 31 19 55 45 25 19 +minecraft:wall_torch[facing=south] 138 113 63 19 110 90 50 19 69 56 31 19 55 45 25 19 +minecraft:wall_torch[facing=west] 138 113 63 19 110 90 50 19 69 56 31 19 55 45 25 19 +minecraft:wall_torch[facing=east] 138 113 63 19 110 90 50 19 69 56 31 19 55 45 25 19 +minecraft:fire 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=true,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=true,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=true,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=true,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=true,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=true,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=true,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=true,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=true,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=true,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=true,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=true,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=true,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=true,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=true,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=false,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=false,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=false,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=false,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=false,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=false,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=false,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=false,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=false,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=false,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=false,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=false,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=false,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=false,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=false,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=0,east=false,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=true,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=true,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=true,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=true,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=true,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=true,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=true,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=true,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=true,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=true,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=true,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=true,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=true,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=true,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=true,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=true,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=false,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=false,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=false,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=false,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=false,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=false,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=false,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=false,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=false,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=false,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=false,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=false,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=false,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=false,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=false,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=1,east=false,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=true,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=true,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=true,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=true,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=true,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=true,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=true,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=true,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=true,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=true,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=true,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=true,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=true,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=true,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=true,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=true,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=false,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=false,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=false,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=false,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=false,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=false,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=false,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=false,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=false,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=false,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=false,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=false,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=false,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=false,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=false,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=2,east=false,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=true,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=true,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=true,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=true,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=true,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=true,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=true,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=true,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=true,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=true,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=true,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=true,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=true,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=true,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=true,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=true,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=false,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=false,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=false,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=false,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=false,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=false,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=false,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=false,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=false,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=false,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=false,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=false,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=false,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=false,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=false,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=3,east=false,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=true,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=true,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=true,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=true,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=true,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=true,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=true,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=true,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=true,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=true,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=true,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=true,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=true,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=true,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=true,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=true,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=false,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=false,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=false,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=false,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=false,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=false,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=false,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=false,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=false,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=false,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=false,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=false,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=false,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=false,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=false,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=4,east=false,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=true,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=true,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=true,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=true,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=true,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=true,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=true,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=true,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=true,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=true,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=true,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=true,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=true,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=true,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=true,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=true,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=false,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=false,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=false,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=false,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=false,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=false,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=false,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=false,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=false,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=false,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=false,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=false,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=false,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=false,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=false,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=5,east=false,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=true,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=true,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=true,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=true,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=true,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=true,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=true,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=true,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=true,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=true,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=true,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=true,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=true,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=true,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=true,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=true,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=false,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=false,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=false,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=false,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=false,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=false,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=false,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=false,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=false,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=false,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=false,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=false,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=false,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=false,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=false,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=6,east=false,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=true,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=true,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=true,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=true,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=true,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=true,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=true,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=true,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=true,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=true,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=true,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=true,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=true,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=true,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=true,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=true,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=false,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=false,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=false,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=false,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=false,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=false,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=false,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=false,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=false,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=false,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=false,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=false,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=false,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=false,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=false,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=7,east=false,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=true,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=true,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=true,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=true,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=true,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=true,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=true,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=true,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=true,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=true,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=true,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=true,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=true,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=true,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=true,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=true,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=false,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=false,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=false,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=false,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=false,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=false,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=false,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=false,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=false,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=false,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=false,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=false,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=false,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=false,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=false,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=8,east=false,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=true,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=true,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=true,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=true,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=true,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=true,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=true,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=true,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=true,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=true,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=true,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=true,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=true,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=true,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=true,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=true,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=false,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=false,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=false,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=false,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=false,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=false,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=false,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=false,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=false,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=false,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=false,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=false,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=false,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=false,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=false,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=9,east=false,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=true,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=true,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=true,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=true,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=true,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=true,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=true,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=true,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=true,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=true,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=true,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=true,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=true,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=true,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=true,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=true,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=false,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=false,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=false,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=false,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=false,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=false,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=false,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=false,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=false,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=false,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=false,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=false,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=false,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=false,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=false,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=10,east=false,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=true,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=true,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=true,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=true,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=true,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=true,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=true,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=true,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=true,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=true,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=true,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=true,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=true,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=true,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=true,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=true,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=false,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=false,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=false,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=false,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=false,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=false,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=false,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=false,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=false,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=false,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=false,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=false,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=false,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=false,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=false,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=11,east=false,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=true,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=true,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=true,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=true,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=true,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=true,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=true,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=true,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=true,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=true,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=true,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=true,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=true,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=true,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=true,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=true,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=false,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=false,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=false,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=false,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=false,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=false,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=false,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=false,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=false,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=false,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=false,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=false,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=false,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=false,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=false,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=12,east=false,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=true,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=true,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=true,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=true,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=true,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=true,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=true,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=true,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=true,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=true,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=true,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=true,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=true,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=true,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=true,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=true,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=false,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=false,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=false,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=false,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=false,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=false,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=false,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=false,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=false,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=false,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=false,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=false,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=false,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=false,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=false,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=13,east=false,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=true,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=true,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=true,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=true,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=true,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=true,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=true,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=true,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=true,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=true,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=true,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=true,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=true,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=true,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=true,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=true,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=false,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=false,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=false,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=false,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=false,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=false,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=false,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=false,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=false,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=false,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=false,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=false,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=false,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=false,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=false,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=14,east=false,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=true,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=true,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=true,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=true,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=true,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=true,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=true,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=true,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=true,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=true,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=true,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=true,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=true,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=true,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=true,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=true,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=false,north=true,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=false,north=true,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=false,north=true,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=false,north=true,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=false,north=true,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=false,north=true,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=false,north=true,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=false,north=true,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=false,north=false,south=true,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=false,north=false,south=true,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=false,north=false,south=true,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=false,north=false,south=true,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=false,north=false,south=false,up=true,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=false,north=false,south=false,up=true,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=false,north=false,south=false,up=false,west=true] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:fire[age=15,east=false,north=false,south=false,up=false,west=false] 216 151 54 156 172 120 43 156 108 75 27 156 86 60 21 156 +minecraft:soul_fire 54 195 200 145 43 156 160 145 27 97 100 145 21 78 80 145 +minecraft:spawner 36 46 62 175 28 36 49 175 18 23 31 175 14 18 24 175 +minecraft:oak_stairs 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=top,shape=straight,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=top,shape=straight,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=top,shape=straight,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=top,shape=straight,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=top,shape=straight,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=top,shape=straight,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=top,shape=straight,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:chest 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=north,type=single,waterlogged=false] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=north,type=left,waterlogged=true] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=north,type=left,waterlogged=false] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=north,type=right,waterlogged=true] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=north,type=right,waterlogged=false] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=south,type=single,waterlogged=true] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=south,type=single,waterlogged=false] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=south,type=left,waterlogged=true] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=south,type=left,waterlogged=false] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=south,type=right,waterlogged=true] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=south,type=right,waterlogged=false] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=west,type=single,waterlogged=true] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=west,type=single,waterlogged=false] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=west,type=left,waterlogged=true] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=west,type=left,waterlogged=false] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=west,type=right,waterlogged=true] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=west,type=right,waterlogged=false] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=east,type=single,waterlogged=true] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=east,type=single,waterlogged=false] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=east,type=left,waterlogged=true] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=east,type=left,waterlogged=false] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=east,type=right,waterlogged=true] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:chest[facing=east,type=right,waterlogged=false] 115 84 37 195 92 67 29 195 57 42 18 195 46 33 14 195 +minecraft:diamond_ore 121 141 140 255 96 112 112 255 60 70 70 255 48 56 56 255 +minecraft:deepslate_diamond_ore 83 106 106 255 66 84 84 255 41 53 53 255 33 42 42 255 +minecraft:diamond_block 98 237 228 255 78 189 182 255 49 118 114 255 39 94 91 255 +minecraft:crafting_table 119 73 42 255 95 58 33 255 59 36 21 255 47 29 16 255 +minecraft:wheat 8 127 15 6 6 101 12 6 4 63 7 6 3 50 6 6 +minecraft:wheat[age=1] 5 127 7 15 4 101 5 15 2 63 3 15 2 50 2 15 +minecraft:wheat[age=2] 6 133 12 32 4 106 9 32 3 66 6 32 2 53 4 32 +minecraft:wheat[age=3] 10 130 13 57 8 104 10 57 5 65 6 57 4 52 5 57 +minecraft:wheat[age=4] 37 132 18 78 29 105 14 78 18 66 9 78 14 52 7 78 +minecraft:wheat[age=5] 63 129 18 103 50 103 14 103 31 64 9 103 25 51 7 103 +minecraft:wheat[age=6] 141 133 37 125 112 106 29 125 70 66 18 125 56 53 14 125 +minecraft:wheat[age=7] 166 151 73 138 132 120 58 138 83 75 36 138 66 60 29 138 +minecraft:farmland 143 102 70 255 114 81 56 255 71 51 35 255 57 40 28 255 +minecraft:farmland[moisture=1] 81 44 15 255 64 35 12 255 40 22 7 255 32 17 6 255 +minecraft:farmland[moisture=2] 81 44 15 255 64 35 12 255 40 22 7 255 32 17 6 255 +minecraft:farmland[moisture=3] 81 44 15 255 64 35 12 255 40 22 7 255 32 17 6 255 +minecraft:farmland[moisture=4] 81 44 15 255 64 35 12 255 40 22 7 255 32 17 6 255 +minecraft:farmland[moisture=5] 81 44 15 255 64 35 12 255 40 22 7 255 32 17 6 255 +minecraft:farmland[moisture=6] 81 44 15 255 64 35 12 255 40 22 7 255 32 17 6 255 +minecraft:farmland[moisture=7] 81 44 15 255 64 35 12 255 40 22 7 255 32 17 6 255 +minecraft:furnace 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:furnace[facing=north,lit=false] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:furnace[facing=south,lit=true] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:furnace[facing=south,lit=false] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:furnace[facing=west,lit=true] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:furnace[facing=west,lit=false] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:furnace[facing=east,lit=true] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:furnace[facing=east,lit=false] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:oak_sign 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=0,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=1,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=1,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=2,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=2,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=3,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=3,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=4,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=4,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=5,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=5,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=6,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=6,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=7,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=7,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=8,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=8,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=9,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=9,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=10,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=10,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=11,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=11,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=12,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=12,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=13,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=13,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=14,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=14,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=15,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_sign[rotation=15,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:spruce_sign 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=0,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=1,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=1,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=2,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=2,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=3,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=3,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=4,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=4,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=5,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=5,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=6,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=6,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=7,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=7,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=8,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=8,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=9,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=9,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=10,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=10,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=11,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=11,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=12,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=12,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=13,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=13,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=14,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=14,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=15,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_sign[rotation=15,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:birch_sign 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=0,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=1,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=1,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=2,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=2,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=3,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=3,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=4,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=4,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=5,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=5,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=6,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=6,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=7,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=7,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=8,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=8,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=9,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=9,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=10,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=10,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=11,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=11,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=12,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=12,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=13,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=13,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=14,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=14,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=15,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_sign[rotation=15,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:acacia_sign 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=0,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=1,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=1,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=2,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=2,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=3,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=3,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=4,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=4,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=5,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=5,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=6,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=6,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=7,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=7,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=8,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=8,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=9,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=9,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=10,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=10,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=11,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=11,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=12,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=12,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=13,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=13,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=14,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=14,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=15,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_sign[rotation=15,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:jungle_sign 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=0,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=1,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=1,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=2,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=2,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=3,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=3,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=4,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=4,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=5,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=5,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=6,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=6,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=7,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=7,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=8,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=8,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=9,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=9,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=10,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=10,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=11,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=11,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=12,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=12,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=13,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=13,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=14,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=14,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=15,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_sign[rotation=15,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:dark_oak_sign 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=0,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=1,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=1,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=2,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=2,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=3,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=3,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=4,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=4,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=5,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=5,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=6,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=6,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=7,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=7,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=8,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=8,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=9,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=9,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=10,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=10,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=11,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=11,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=12,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=12,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=13,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=13,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=14,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=14,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=15,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_sign[rotation=15,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:oak_door 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=upper,hinge=left,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=upper,hinge=left,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=upper,hinge=left,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=upper,hinge=right,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=upper,hinge=right,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=upper,hinge=right,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=upper,hinge=right,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=lower,hinge=left,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=lower,hinge=left,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=lower,hinge=left,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=lower,hinge=left,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=lower,hinge=right,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=lower,hinge=right,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=lower,hinge=right,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=north,half=lower,hinge=right,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=upper,hinge=left,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=upper,hinge=left,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=upper,hinge=left,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=upper,hinge=left,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=upper,hinge=right,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=upper,hinge=right,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=upper,hinge=right,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=upper,hinge=right,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=lower,hinge=left,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=lower,hinge=left,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=lower,hinge=left,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=lower,hinge=left,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=lower,hinge=right,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=lower,hinge=right,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=lower,hinge=right,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=south,half=lower,hinge=right,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=upper,hinge=left,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=upper,hinge=left,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=upper,hinge=left,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=upper,hinge=left,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=upper,hinge=right,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=upper,hinge=right,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=upper,hinge=right,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=upper,hinge=right,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=lower,hinge=left,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=lower,hinge=left,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=lower,hinge=left,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=lower,hinge=left,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=lower,hinge=right,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=lower,hinge=right,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=lower,hinge=right,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=west,half=lower,hinge=right,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=upper,hinge=left,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=upper,hinge=left,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=upper,hinge=left,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=upper,hinge=left,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=upper,hinge=right,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=upper,hinge=right,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=upper,hinge=right,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=upper,hinge=right,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=lower,hinge=left,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=lower,hinge=left,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=lower,hinge=left,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=lower,hinge=left,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=lower,hinge=right,open=true,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=lower,hinge=right,open=true,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=lower,hinge=right,open=false,powered=true] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:oak_door[facing=east,half=lower,hinge=right,open=false,powered=false] 139 110 65 207 111 88 52 207 69 55 32 207 55 44 26 207 +minecraft:ladder 124 96 54 143 99 76 43 143 62 48 27 143 49 38 21 143 +minecraft:ladder[facing=north,waterlogged=false] 124 96 54 143 99 76 43 143 62 48 27 143 49 38 21 143 +minecraft:ladder[facing=south,waterlogged=true] 124 96 54 143 99 76 43 143 62 48 27 143 49 38 21 143 +minecraft:ladder[facing=south,waterlogged=false] 124 96 54 143 99 76 43 143 62 48 27 143 49 38 21 143 +minecraft:ladder[facing=west,waterlogged=true] 124 96 54 143 99 76 43 143 62 48 27 143 49 38 21 143 +minecraft:ladder[facing=west,waterlogged=false] 124 96 54 143 99 76 43 143 62 48 27 143 49 38 21 143 +minecraft:ladder[facing=east,waterlogged=true] 124 96 54 143 99 76 43 143 62 48 27 143 49 38 21 143 +minecraft:ladder[facing=east,waterlogged=false] 124 96 54 143 99 76 43 143 62 48 27 143 49 38 21 143 +minecraft:rail 125 111 88 143 100 88 70 143 62 55 44 143 50 44 35 143 +minecraft:rail[shape=north_south,waterlogged=false] 125 111 88 143 100 88 70 143 62 55 44 143 50 44 35 143 +minecraft:rail[shape=east_west,waterlogged=true] 125 111 88 143 100 88 70 143 62 55 44 143 50 44 35 143 +minecraft:rail[shape=east_west,waterlogged=false] 125 111 88 143 100 88 70 143 62 55 44 143 50 44 35 143 +minecraft:rail[shape=ascending_east,waterlogged=true] 125 111 88 143 100 88 70 143 62 55 44 143 50 44 35 143 +minecraft:rail[shape=ascending_east,waterlogged=false] 125 111 88 143 100 88 70 143 62 55 44 143 50 44 35 143 +minecraft:rail[shape=ascending_west,waterlogged=true] 125 111 88 143 100 88 70 143 62 55 44 143 50 44 35 143 +minecraft:rail[shape=ascending_west,waterlogged=false] 125 111 88 143 100 88 70 143 62 55 44 143 50 44 35 143 +minecraft:rail[shape=ascending_north,waterlogged=true] 125 111 88 143 100 88 70 143 62 55 44 143 50 44 35 143 +minecraft:rail[shape=ascending_north,waterlogged=false] 125 111 88 143 100 88 70 143 62 55 44 143 50 44 35 143 +minecraft:rail[shape=ascending_south,waterlogged=true] 125 111 88 143 100 88 70 143 62 55 44 143 50 44 35 143 +minecraft:rail[shape=ascending_south,waterlogged=false] 125 111 88 143 100 88 70 143 62 55 44 143 50 44 35 143 +minecraft:rail[shape=south_east,waterlogged=true] 130 115 89 107 104 92 71 107 65 57 44 107 52 46 35 107 +minecraft:rail[shape=south_east,waterlogged=false] 130 115 89 107 104 92 71 107 65 57 44 107 52 46 35 107 +minecraft:rail[shape=south_west,waterlogged=true] 130 115 89 107 104 92 71 107 65 57 44 107 52 46 35 107 +minecraft:rail[shape=south_west,waterlogged=false] 130 115 89 107 104 92 71 107 65 57 44 107 52 46 35 107 +minecraft:rail[shape=north_west,waterlogged=true] 130 115 89 107 104 92 71 107 65 57 44 107 52 46 35 107 +minecraft:rail[shape=north_west,waterlogged=false] 130 115 89 107 104 92 71 107 65 57 44 107 52 46 35 107 +minecraft:rail[shape=north_east,waterlogged=true] 130 115 89 107 104 92 71 107 65 57 44 107 52 46 35 107 +minecraft:rail[shape=north_east,waterlogged=false] 130 115 89 107 104 92 71 107 65 57 44 107 52 46 35 107 +minecraft:cobblestone_stairs 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=top,shape=straight,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=top,shape=straight,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=top,shape=straight,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=top,shape=straight,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=top,shape=straight,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=top,shape=straight,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=top,shape=straight,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:oak_wall_sign 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_wall_sign[facing=north,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_wall_sign[facing=south,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_wall_sign[facing=south,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_wall_sign[facing=west,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_wall_sign[facing=west,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_wall_sign[facing=east,waterlogged=true] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:oak_wall_sign[facing=east,waterlogged=false] 160 128 77 10 128 102 61 10 80 64 38 10 64 51 30 10 +minecraft:spruce_wall_sign 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_wall_sign[facing=north,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_wall_sign[facing=south,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_wall_sign[facing=south,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_wall_sign[facing=west,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_wall_sign[facing=west,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_wall_sign[facing=east,waterlogged=true] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:spruce_wall_sign[facing=east,waterlogged=false] 114 83 47 10 91 66 37 10 57 41 23 10 45 33 18 10 +minecraft:birch_wall_sign 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_wall_sign[facing=north,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_wall_sign[facing=south,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_wall_sign[facing=south,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_wall_sign[facing=west,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_wall_sign[facing=west,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_wall_sign[facing=east,waterlogged=true] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:birch_wall_sign[facing=east,waterlogged=false] 192 174 120 10 153 139 96 10 96 87 60 10 76 69 48 10 +minecraft:acacia_wall_sign 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_wall_sign[facing=north,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_wall_sign[facing=south,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_wall_sign[facing=south,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_wall_sign[facing=west,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_wall_sign[facing=west,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_wall_sign[facing=east,waterlogged=true] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:acacia_wall_sign[facing=east,waterlogged=false] 163 87 48 10 130 69 38 10 81 43 24 10 65 34 19 10 +minecraft:jungle_wall_sign 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_wall_sign[facing=north,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_wall_sign[facing=south,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_wall_sign[facing=south,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_wall_sign[facing=west,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_wall_sign[facing=west,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_wall_sign[facing=east,waterlogged=true] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:jungle_wall_sign[facing=east,waterlogged=false] 158 113 79 10 126 90 63 10 79 56 39 10 63 45 31 10 +minecraft:dark_oak_wall_sign 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_wall_sign[facing=north,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_wall_sign[facing=south,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_wall_sign[facing=south,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_wall_sign[facing=west,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_wall_sign[facing=west,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_wall_sign[facing=east,waterlogged=true] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:dark_oak_wall_sign[facing=east,waterlogged=false] 66 42 19 10 52 33 15 10 33 21 9 10 26 16 7 10 +minecraft:lever 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=floor,facing=north,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=floor,facing=south,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=floor,facing=south,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=floor,facing=west,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=floor,facing=west,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=floor,facing=east,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=floor,facing=east,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=wall,facing=north,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=wall,facing=north,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=wall,facing=south,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=wall,facing=south,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=wall,facing=west,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=wall,facing=west,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=wall,facing=east,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=wall,facing=east,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=ceiling,facing=north,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=ceiling,facing=north,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=ceiling,facing=south,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=ceiling,facing=south,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=ceiling,facing=west,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=ceiling,facing=west,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=ceiling,facing=east,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:lever[face=ceiling,facing=east,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:stone_pressure_plate 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_pressure_plate[powered=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:iron_door 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=upper,hinge=left,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=upper,hinge=left,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=upper,hinge=left,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=upper,hinge=right,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=upper,hinge=right,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=upper,hinge=right,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=upper,hinge=right,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=lower,hinge=left,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=lower,hinge=left,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=lower,hinge=left,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=lower,hinge=left,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=lower,hinge=right,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=lower,hinge=right,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=lower,hinge=right,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=north,half=lower,hinge=right,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=upper,hinge=left,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=upper,hinge=left,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=upper,hinge=left,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=upper,hinge=left,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=upper,hinge=right,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=upper,hinge=right,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=upper,hinge=right,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=upper,hinge=right,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=lower,hinge=left,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=lower,hinge=left,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=lower,hinge=left,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=lower,hinge=left,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=lower,hinge=right,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=lower,hinge=right,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=lower,hinge=right,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=south,half=lower,hinge=right,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=upper,hinge=left,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=upper,hinge=left,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=upper,hinge=left,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=upper,hinge=left,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=upper,hinge=right,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=upper,hinge=right,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=upper,hinge=right,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=upper,hinge=right,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=lower,hinge=left,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=lower,hinge=left,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=lower,hinge=left,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=lower,hinge=left,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=lower,hinge=right,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=lower,hinge=right,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=lower,hinge=right,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=west,half=lower,hinge=right,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=upper,hinge=left,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=upper,hinge=left,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=upper,hinge=left,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=upper,hinge=left,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=upper,hinge=right,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=upper,hinge=right,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=upper,hinge=right,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=upper,hinge=right,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=lower,hinge=left,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=lower,hinge=left,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=lower,hinge=left,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=lower,hinge=left,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=lower,hinge=right,open=true,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=lower,hinge=right,open=true,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=lower,hinge=right,open=false,powered=true] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:iron_door[facing=east,half=lower,hinge=right,open=false,powered=false] 193 192 192 207 154 153 153 207 96 96 96 207 77 76 76 207 +minecraft:oak_pressure_plate 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_pressure_plate[powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:spruce_pressure_plate 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_pressure_plate[powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:birch_pressure_plate 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_pressure_plate[powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:jungle_pressure_plate 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_pressure_plate[powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:acacia_pressure_plate 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_pressure_plate[powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:dark_oak_pressure_plate 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_pressure_plate[powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:redstone_ore 140 109 109 255 112 87 87 255 70 54 54 255 56 43 43 255 +minecraft:redstone_ore[lit=false] 140 109 109 255 112 87 87 255 70 54 54 255 56 43 43 255 +minecraft:deepslate_redstone_ore 104 73 74 255 83 58 59 255 52 36 37 255 41 29 29 255 +minecraft:deepslate_redstone_ore[lit=false] 104 73 74 255 83 58 59 255 52 36 37 255 41 29 29 255 +minecraft:redstone_torch 171 79 44 25 136 63 35 25 85 39 22 25 68 31 17 25 +minecraft:redstone_torch[lit=false] 101 69 43 19 80 55 34 19 50 34 21 19 40 27 17 19 +minecraft:redstone_wall_torch 171 79 44 25 136 63 35 25 85 39 22 25 68 31 17 25 +minecraft:redstone_wall_torch[facing=north,lit=false] 101 69 43 19 80 55 34 19 50 34 21 19 40 27 17 19 +minecraft:redstone_wall_torch[facing=south,lit=true] 171 79 44 25 136 63 35 25 85 39 22 25 68 31 17 25 +minecraft:redstone_wall_torch[facing=south,lit=false] 101 69 43 19 80 55 34 19 50 34 21 19 40 27 17 19 +minecraft:redstone_wall_torch[facing=west,lit=true] 171 79 44 25 136 63 35 25 85 39 22 25 68 31 17 25 +minecraft:redstone_wall_torch[facing=west,lit=false] 101 69 43 19 80 55 34 19 50 34 21 19 40 27 17 19 +minecraft:redstone_wall_torch[facing=east,lit=true] 171 79 44 25 136 63 35 25 85 39 22 25 68 31 17 25 +minecraft:redstone_wall_torch[facing=east,lit=false] 101 69 43 19 80 55 34 19 50 34 21 19 40 27 17 19 +minecraft:stone_button 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=floor,facing=north,powered=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=floor,facing=south,powered=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=floor,facing=south,powered=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=floor,facing=west,powered=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=floor,facing=west,powered=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=floor,facing=east,powered=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=floor,facing=east,powered=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=wall,facing=north,powered=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=wall,facing=north,powered=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=wall,facing=south,powered=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=wall,facing=south,powered=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=wall,facing=west,powered=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=wall,facing=west,powered=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=wall,facing=east,powered=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=wall,facing=east,powered=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=ceiling,facing=north,powered=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=ceiling,facing=north,powered=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=ceiling,facing=south,powered=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=ceiling,facing=south,powered=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=ceiling,facing=west,powered=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=ceiling,facing=west,powered=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=ceiling,facing=east,powered=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_button[face=ceiling,facing=east,powered=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:snow 249 254 254 255 199 203 203 255 124 127 127 255 99 101 101 255 +minecraft:snow[layers=2] 249 254 254 255 199 203 203 255 124 127 127 255 99 101 101 255 +minecraft:snow[layers=3] 249 254 254 255 199 203 203 255 124 127 127 255 99 101 101 255 +minecraft:snow[layers=4] 249 254 254 255 199 203 203 255 124 127 127 255 99 101 101 255 +minecraft:snow[layers=5] 249 254 254 255 199 203 203 255 124 127 127 255 99 101 101 255 +minecraft:snow[layers=6] 249 254 254 255 199 203 203 255 124 127 127 255 99 101 101 255 +minecraft:snow[layers=7] 249 254 254 255 199 203 203 255 124 127 127 255 99 101 101 255 +minecraft:snow[layers=8] 249 254 254 255 199 203 203 255 124 127 127 255 99 101 101 255 +minecraft:ice 145 183 253 190 116 146 202 190 72 91 126 190 58 73 101 190 +minecraft:snow_block 249 254 254 255 199 203 203 255 124 127 127 255 99 101 101 255 +minecraft:cactus 85 127 43 195 68 101 34 195 42 63 21 195 34 50 17 195 +minecraft:cactus[age=1] 85 127 43 195 68 101 34 195 42 63 21 195 34 50 17 195 +minecraft:cactus[age=2] 85 127 43 195 68 101 34 195 42 63 21 195 34 50 17 195 +minecraft:cactus[age=3] 85 127 43 195 68 101 34 195 42 63 21 195 34 50 17 195 +minecraft:cactus[age=4] 85 127 43 195 68 101 34 195 42 63 21 195 34 50 17 195 +minecraft:cactus[age=5] 85 127 43 195 68 101 34 195 42 63 21 195 34 50 17 195 +minecraft:cactus[age=6] 85 127 43 195 68 101 34 195 42 63 21 195 34 50 17 195 +minecraft:cactus[age=7] 85 127 43 195 68 101 34 195 42 63 21 195 34 50 17 195 +minecraft:cactus[age=8] 85 127 43 195 68 101 34 195 42 63 21 195 34 50 17 195 +minecraft:cactus[age=9] 85 127 43 195 68 101 34 195 42 63 21 195 34 50 17 195 +minecraft:cactus[age=10] 85 127 43 195 68 101 34 195 42 63 21 195 34 50 17 195 +minecraft:cactus[age=11] 85 127 43 195 68 101 34 195 42 63 21 195 34 50 17 195 +minecraft:cactus[age=12] 85 127 43 195 68 101 34 195 42 63 21 195 34 50 17 195 +minecraft:cactus[age=13] 85 127 43 195 68 101 34 195 42 63 21 195 34 50 17 195 +minecraft:cactus[age=14] 85 127 43 195 68 101 34 195 42 63 21 195 34 50 17 195 +minecraft:cactus[age=15] 85 127 43 195 68 101 34 195 42 63 21 195 34 50 17 195 +minecraft:clay 160 166 179 255 128 132 143 255 80 83 89 255 64 66 71 255 +minecraft:sugar_cane 148 192 101 140 118 153 80 140 74 96 50 140 59 76 40 140 +minecraft:sugar_cane[age=1] 148 192 101 140 118 153 80 140 74 96 50 140 59 76 40 140 +minecraft:sugar_cane[age=2] 148 192 101 140 118 153 80 140 74 96 50 140 59 76 40 140 +minecraft:sugar_cane[age=3] 148 192 101 140 118 153 80 140 74 96 50 140 59 76 40 140 +minecraft:sugar_cane[age=4] 148 192 101 140 118 153 80 140 74 96 50 140 59 76 40 140 +minecraft:sugar_cane[age=5] 148 192 101 140 118 153 80 140 74 96 50 140 59 76 40 140 +minecraft:sugar_cane[age=6] 148 192 101 140 118 153 80 140 74 96 50 140 59 76 40 140 +minecraft:sugar_cane[age=7] 148 192 101 140 118 153 80 140 74 96 50 140 59 76 40 140 +minecraft:sugar_cane[age=8] 148 192 101 140 118 153 80 140 74 96 50 140 59 76 40 140 +minecraft:sugar_cane[age=9] 148 192 101 140 118 153 80 140 74 96 50 140 59 76 40 140 +minecraft:sugar_cane[age=10] 148 192 101 140 118 153 80 140 74 96 50 140 59 76 40 140 +minecraft:sugar_cane[age=11] 148 192 101 140 118 153 80 140 74 96 50 140 59 76 40 140 +minecraft:sugar_cane[age=12] 148 192 101 140 118 153 80 140 74 96 50 140 59 76 40 140 +minecraft:sugar_cane[age=13] 148 192 101 140 118 153 80 140 74 96 50 140 59 76 40 140 +minecraft:sugar_cane[age=14] 148 192 101 140 118 153 80 140 74 96 50 140 59 76 40 140 +minecraft:sugar_cane[age=15] 148 192 101 140 118 153 80 140 74 96 50 140 59 76 40 140 +minecraft:jukebox 93 64 47 255 74 51 37 255 46 32 23 255 37 25 18 255 +minecraft:jukebox[has_record=false] 93 64 47 255 74 51 37 255 46 32 23 255 37 25 18 255 +minecraft:oak_fence 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=true,north=true,south=true,waterlogged=true,west=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=true,north=true,south=true,waterlogged=false,west=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=true,north=true,south=true,waterlogged=false,west=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=true,north=true,south=false,waterlogged=true,west=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=true,north=true,south=false,waterlogged=true,west=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=true,north=true,south=false,waterlogged=false,west=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=true,north=true,south=false,waterlogged=false,west=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=true,north=false,south=true,waterlogged=true,west=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=true,north=false,south=true,waterlogged=true,west=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=true,north=false,south=true,waterlogged=false,west=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=true,north=false,south=true,waterlogged=false,west=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=true,north=false,south=false,waterlogged=true,west=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=true,north=false,south=false,waterlogged=true,west=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=true,north=false,south=false,waterlogged=false,west=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=true,north=false,south=false,waterlogged=false,west=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=false,north=true,south=true,waterlogged=true,west=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=false,north=true,south=true,waterlogged=true,west=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=false,north=true,south=true,waterlogged=false,west=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=false,north=true,south=true,waterlogged=false,west=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=false,north=true,south=false,waterlogged=true,west=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=false,north=true,south=false,waterlogged=true,west=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=false,north=true,south=false,waterlogged=false,west=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=false,north=true,south=false,waterlogged=false,west=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=false,north=false,south=true,waterlogged=true,west=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=false,north=false,south=true,waterlogged=true,west=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=false,north=false,south=true,waterlogged=false,west=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=false,north=false,south=true,waterlogged=false,west=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=false,north=false,south=false,waterlogged=true,west=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=false,north=false,south=false,waterlogged=true,west=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=false,north=false,south=false,waterlogged=false,west=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence[east=false,north=false,south=false,waterlogged=false,west=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pumpkin 198 118 24 255 158 94 19 255 99 59 12 255 79 47 9 255 +minecraft:netherrack 97 38 38 255 77 30 30 255 48 19 19 255 38 15 15 255 +minecraft:soul_sand 81 62 50 255 64 49 40 255 40 31 25 255 32 24 20 255 +minecraft:soul_soil 75 57 46 255 60 45 36 255 37 28 23 255 30 22 18 255 +minecraft:basalt 73 72 77 255 58 57 61 255 36 36 38 255 29 28 30 255 +minecraft:basalt[axis=y] 80 81 86 255 64 64 68 255 40 40 43 255 32 32 34 255 +minecraft:basalt[axis=z] 73 72 77 255 58 57 61 255 36 36 38 255 29 28 30 255 +minecraft:polished_basalt 88 88 91 255 70 70 72 255 44 44 45 255 35 35 36 255 +minecraft:polished_basalt[axis=y] 99 98 100 255 79 78 80 255 49 49 50 255 39 39 40 255 +minecraft:polished_basalt[axis=z] 88 88 91 255 70 70 72 255 44 44 45 255 35 35 36 255 +minecraft:soul_torch 109 115 89 19 87 92 71 19 54 57 44 19 43 46 35 19 +minecraft:soul_wall_torch 109 115 89 19 87 92 71 19 54 57 44 19 43 46 35 19 +minecraft:soul_wall_torch[facing=south] 109 115 89 19 87 92 71 19 54 57 44 19 43 46 35 19 +minecraft:soul_wall_torch[facing=west] 109 115 89 19 87 92 71 19 54 57 44 19 43 46 35 19 +minecraft:soul_wall_torch[facing=east] 109 115 89 19 87 92 71 19 54 57 44 19 43 46 35 19 +minecraft:glowstone 171 131 84 255 136 104 67 255 85 65 42 255 68 52 33 255 +minecraft:nether_portal 91 13 193 192 72 10 154 192 45 6 96 192 36 5 77 192 +minecraft:nether_portal[axis=z] 91 13 193 192 72 10 154 192 45 6 96 192 36 5 77 192 +minecraft:carved_pumpkin 198 118 24 255 158 94 19 255 99 59 12 255 79 47 9 255 +minecraft:carved_pumpkin[facing=south] 198 118 24 255 158 94 19 255 99 59 12 255 79 47 9 255 +minecraft:carved_pumpkin[facing=west] 198 118 24 255 158 94 19 255 99 59 12 255 79 47 9 255 +minecraft:carved_pumpkin[facing=east] 198 118 24 255 158 94 19 255 99 59 12 255 79 47 9 255 +minecraft:jack_o_lantern 198 118 24 255 158 94 19 255 99 59 12 255 79 47 9 255 +minecraft:jack_o_lantern[facing=south] 198 118 24 255 158 94 19 255 99 59 12 255 79 47 9 255 +minecraft:jack_o_lantern[facing=west] 198 118 24 255 158 94 19 255 99 59 12 255 79 47 9 255 +minecraft:jack_o_lantern[facing=east] 198 118 24 255 158 94 19 255 99 59 12 255 79 47 9 255 +minecraft:cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:cake[bites=1] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:cake[bites=2] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:cake[bites=3] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:cake[bites=4] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:cake[bites=5] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:cake[bites=6] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:repeater 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=1,facing=north,locked=true,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=1,facing=north,locked=false,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=1,facing=north,locked=false,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=1,facing=south,locked=true,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=1,facing=south,locked=true,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=1,facing=south,locked=false,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=1,facing=south,locked=false,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=1,facing=west,locked=true,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=1,facing=west,locked=true,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=1,facing=west,locked=false,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=1,facing=west,locked=false,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=1,facing=east,locked=true,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=1,facing=east,locked=true,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=1,facing=east,locked=false,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=1,facing=east,locked=false,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=2,facing=north,locked=true,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=2,facing=north,locked=true,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=2,facing=north,locked=false,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=2,facing=north,locked=false,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=2,facing=south,locked=true,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=2,facing=south,locked=true,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=2,facing=south,locked=false,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=2,facing=south,locked=false,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=2,facing=west,locked=true,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=2,facing=west,locked=true,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=2,facing=west,locked=false,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=2,facing=west,locked=false,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=2,facing=east,locked=true,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=2,facing=east,locked=true,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=2,facing=east,locked=false,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=2,facing=east,locked=false,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=3,facing=north,locked=true,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=3,facing=north,locked=true,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=3,facing=north,locked=false,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=3,facing=north,locked=false,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=3,facing=south,locked=true,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=3,facing=south,locked=true,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=3,facing=south,locked=false,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=3,facing=south,locked=false,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=3,facing=west,locked=true,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=3,facing=west,locked=true,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=3,facing=west,locked=false,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=3,facing=west,locked=false,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=3,facing=east,locked=true,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=3,facing=east,locked=true,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=3,facing=east,locked=false,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=3,facing=east,locked=false,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=4,facing=north,locked=true,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=4,facing=north,locked=true,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=4,facing=north,locked=false,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=4,facing=north,locked=false,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=4,facing=south,locked=true,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=4,facing=south,locked=true,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=4,facing=south,locked=false,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=4,facing=south,locked=false,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=4,facing=west,locked=true,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=4,facing=west,locked=true,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=4,facing=west,locked=false,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=4,facing=west,locked=false,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=4,facing=east,locked=true,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=4,facing=east,locked=true,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:repeater[delay=4,facing=east,locked=false,powered=true] 169 157 156 255 135 125 124 255 84 78 78 255 67 62 62 255 +minecraft:repeater[delay=4,facing=east,locked=false,powered=false] 160 157 156 255 128 125 124 255 80 78 78 255 64 62 62 255 +minecraft:white_stained_glass 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:orange_stained_glass 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:magenta_stained_glass 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:light_blue_stained_glass 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:yellow_stained_glass 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:lime_stained_glass 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:pink_stained_glass 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:gray_stained_glass 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:light_gray_stained_glass 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:cyan_stained_glass 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:purple_stained_glass 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:blue_stained_glass 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:brown_stained_glass 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:green_stained_glass 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:red_stained_glass 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:black_stained_glass 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:oak_trapdoor 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:oak_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false] 124 99 56 219 99 79 44 219 62 49 28 219 49 39 22 219 +minecraft:spruce_trapdoor 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:spruce_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false] 103 79 47 255 82 63 37 255 51 39 23 255 41 31 18 255 +minecraft:birch_trapdoor 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:birch_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false] 207 194 157 255 165 155 125 255 103 97 78 255 82 77 62 255 +minecraft:jungle_trapdoor 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:jungle_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false] 152 110 77 213 121 88 61 213 76 55 38 213 60 44 30 213 +minecraft:acacia_trapdoor 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:acacia_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false] 156 87 51 195 124 69 40 195 78 43 25 195 62 34 20 195 +minecraft:dark_oak_trapdoor 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false] 75 49 23 255 60 39 18 255 37 24 11 255 30 19 9 255 +minecraft:stone_bricks 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:mossy_stone_bricks 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:cracked_stone_bricks 118 117 118 255 94 93 94 255 59 58 59 255 47 46 47 255 +minecraft:chiseled_stone_bricks 119 118 119 255 95 94 95 255 59 59 59 255 47 47 47 255 +minecraft:infested_stone 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:infested_cobblestone 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:infested_stone_bricks 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:infested_mossy_stone_bricks 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:infested_cracked_stone_bricks 118 117 118 255 94 93 94 255 59 58 59 255 47 46 47 255 +minecraft:infested_chiseled_stone_bricks 119 118 119 255 95 94 95 255 59 59 59 255 47 47 47 255 +minecraft:brown_mushroom_block 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=true,north=true,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=true,north=true,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=true,north=true,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=true,north=true,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=true,north=true,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=true,north=true,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=true,north=true,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=true,north=false,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=true,north=false,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=true,north=false,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=true,north=false,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=true,north=false,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=true,north=false,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=true,north=false,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=true,north=false,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=false,north=true,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=false,north=true,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=false,north=true,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=false,north=true,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=false,north=true,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=false,north=true,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=false,north=true,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=false,north=true,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=false,north=false,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=false,north=false,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=false,north=false,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=false,north=false,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=false,north=false,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=false,north=false,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=false,north=false,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=true,east=false,north=false,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=true,north=true,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=true,north=true,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=true,north=true,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=true,north=true,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=true,north=true,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=true,north=true,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=true,north=true,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=true,north=true,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=true,north=false,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=true,north=false,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=true,north=false,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=true,north=false,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=true,north=false,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=true,north=false,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=true,north=false,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=true,north=false,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=false,north=true,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=false,north=true,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=false,north=true,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=false,north=true,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=false,north=true,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=false,north=true,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=false,north=true,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=false,north=true,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=false,north=false,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=false,north=false,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=false,north=false,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=false,north=false,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=false,north=false,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=false,north=false,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=false,north=false,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:brown_mushroom_block[down=false,east=false,north=false,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=true,north=true,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=true,north=true,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=true,north=true,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=true,north=true,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=true,north=true,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=true,north=true,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=true,north=true,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=true,north=false,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=true,north=false,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=true,north=false,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=true,north=false,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=true,north=false,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=true,north=false,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=true,north=false,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=true,north=false,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=false,north=true,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=false,north=true,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=false,north=true,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=false,north=true,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=false,north=true,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=false,north=true,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=false,north=true,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=false,north=true,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=false,north=false,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=false,north=false,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=false,north=false,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=false,north=false,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=false,north=false,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=false,north=false,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=false,north=false,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=true,east=false,north=false,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=true,north=true,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=true,north=true,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=true,north=true,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=true,north=true,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=true,north=true,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=true,north=true,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=true,north=true,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=true,north=true,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=true,north=false,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=true,north=false,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=true,north=false,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=true,north=false,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=true,north=false,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=true,north=false,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=true,north=false,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=true,north=false,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=false,north=true,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=false,north=true,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=false,north=true,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=false,north=true,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=false,north=true,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=false,north=true,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=false,north=true,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=false,north=true,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=false,north=false,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=false,north=false,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=false,north=false,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=false,north=false,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=false,north=false,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=false,north=false,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=false,north=false,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:red_mushroom_block[down=false,east=false,north=false,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=true,north=true,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=true,north=true,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=true,north=true,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=true,north=true,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=true,north=true,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=true,north=true,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=true,north=true,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=true,north=false,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=true,north=false,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=true,north=false,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=true,north=false,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=true,north=false,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=true,north=false,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=true,north=false,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=true,north=false,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=false,north=true,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=false,north=true,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=false,north=true,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=false,north=true,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=false,north=true,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=false,north=true,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=false,north=true,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=false,north=true,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=false,north=false,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=false,north=false,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=false,north=false,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=false,north=false,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=false,north=false,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=false,north=false,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=false,north=false,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=true,east=false,north=false,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=true,north=true,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=true,north=true,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=true,north=true,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=true,north=true,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=true,north=true,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=true,north=true,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=true,north=true,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=true,north=true,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=true,north=false,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=true,north=false,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=true,north=false,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=true,north=false,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=true,north=false,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=true,north=false,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=true,north=false,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=true,north=false,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=false,north=true,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=false,north=true,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=false,north=true,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=false,north=true,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=false,north=true,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=false,north=true,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=false,north=true,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=false,north=true,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=false,north=false,south=true,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=false,north=false,south=true,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=false,north=false,south=true,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=false,north=false,south=true,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=false,north=false,south=false,up=true,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=false,north=false,south=false,up=true,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=false,north=false,south=false,up=false,west=true] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:mushroom_stem[down=false,east=false,north=false,south=false,up=false,west=false] 201 170 120 255 160 136 96 255 100 85 60 255 80 68 48 255 +minecraft:iron_bars 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=true,north=true,south=true,waterlogged=true,west=false] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=true,north=true,south=true,waterlogged=false,west=true] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=true,north=true,south=true,waterlogged=false,west=false] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=true,north=true,south=false,waterlogged=true,west=true] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=true,north=true,south=false,waterlogged=true,west=false] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=true,north=true,south=false,waterlogged=false,west=true] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=true,north=true,south=false,waterlogged=false,west=false] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=true,north=false,south=true,waterlogged=true,west=true] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=true,north=false,south=true,waterlogged=true,west=false] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=true,north=false,south=true,waterlogged=false,west=true] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=true,north=false,south=true,waterlogged=false,west=false] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=true,north=false,south=false,waterlogged=true,west=true] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=true,north=false,south=false,waterlogged=true,west=false] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=true,north=false,south=false,waterlogged=false,west=true] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=true,north=false,south=false,waterlogged=false,west=false] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=false,north=true,south=true,waterlogged=true,west=true] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=false,north=true,south=true,waterlogged=true,west=false] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=false,north=true,south=true,waterlogged=false,west=true] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=false,north=true,south=true,waterlogged=false,west=false] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=false,north=true,south=false,waterlogged=true,west=true] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=false,north=true,south=false,waterlogged=true,west=false] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=false,north=true,south=false,waterlogged=false,west=true] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=false,north=true,south=false,waterlogged=false,west=false] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=false,north=false,south=true,waterlogged=true,west=true] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=false,north=false,south=true,waterlogged=true,west=false] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=false,north=false,south=true,waterlogged=false,west=true] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=false,north=false,south=true,waterlogged=false,west=false] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=false,north=false,south=false,waterlogged=true,west=true] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=false,north=false,south=false,waterlogged=true,west=false] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=false,north=false,south=false,waterlogged=false,west=true] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:iron_bars[east=false,north=false,south=false,waterlogged=false,west=false] 136 139 135 115 108 111 108 115 68 69 67 115 54 55 54 115 +minecraft:chain 52 59 75 25 41 47 60 25 26 29 37 25 20 23 30 25 +minecraft:chain[axis=x,waterlogged=false] 52 59 75 25 41 47 60 25 26 29 37 25 20 23 30 25 +minecraft:chain[axis=y,waterlogged=true] 52 59 75 25 41 47 60 25 26 29 37 25 20 23 30 25 +minecraft:chain[axis=y,waterlogged=false] 52 59 75 25 41 47 60 25 26 29 37 25 20 23 30 25 +minecraft:chain[axis=z,waterlogged=true] 52 59 75 25 41 47 60 25 26 29 37 25 20 23 30 25 +minecraft:chain[axis=z,waterlogged=false] 52 59 75 25 41 47 60 25 26 29 37 25 20 23 30 25 +minecraft:glass_pane 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=true,north=true,south=true,waterlogged=false,west=false] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=true,north=true,south=false,waterlogged=true,west=true] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=true,north=true,south=false,waterlogged=true,west=false] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=true,north=true,south=false,waterlogged=false,west=true] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=true,north=true,south=false,waterlogged=false,west=false] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=true,north=false,south=true,waterlogged=true,west=true] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=true,north=false,south=true,waterlogged=true,west=false] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=true,north=false,south=true,waterlogged=false,west=true] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=true,north=false,south=true,waterlogged=false,west=false] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=true,north=false,south=false,waterlogged=true,west=true] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=true,north=false,south=false,waterlogged=true,west=false] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=true,north=false,south=false,waterlogged=false,west=true] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=true,north=false,south=false,waterlogged=false,west=false] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=false,north=true,south=true,waterlogged=true,west=true] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=false,north=true,south=true,waterlogged=true,west=false] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=false,north=true,south=true,waterlogged=false,west=true] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=false,north=true,south=true,waterlogged=false,west=false] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=false,north=true,south=false,waterlogged=true,west=true] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=false,north=true,south=false,waterlogged=true,west=false] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=false,north=true,south=false,waterlogged=false,west=true] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=false,north=true,south=false,waterlogged=false,west=false] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=false,north=false,south=true,waterlogged=true,west=true] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=false,north=false,south=true,waterlogged=true,west=false] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=false,north=false,south=true,waterlogged=false,west=true] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=false,north=false,south=true,waterlogged=false,west=false] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=false,north=false,south=false,waterlogged=true,west=true] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=false,north=false,south=false,waterlogged=true,west=false] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:melon 111 144 30 255 88 115 24 255 55 72 15 255 44 57 12 255 +minecraft:attached_pumpkin_stem 65 104 49 32 52 83 39 32 32 52 24 32 26 41 19 32 +minecraft:attached_pumpkin_stem[facing=south] 65 104 49 32 52 83 39 32 32 52 24 32 26 41 19 32 +minecraft:attached_pumpkin_stem[facing=west] 65 104 49 32 52 83 39 32 32 52 24 32 26 41 19 32 +minecraft:attached_pumpkin_stem[facing=east] 65 104 49 32 52 83 39 32 32 52 24 32 26 41 19 32 +minecraft:attached_melon_stem 66 106 49 32 52 84 39 32 33 53 24 32 26 42 19 32 +minecraft:attached_melon_stem[facing=south] 66 106 49 32 52 84 39 32 33 53 24 32 26 42 19 32 +minecraft:attached_melon_stem[facing=west] 66 106 49 32 52 84 39 32 33 53 24 32 26 42 19 32 +minecraft:attached_melon_stem[facing=east] 66 106 49 32 52 84 39 32 33 53 24 32 26 42 19 32 +minecraft:pumpkin_stem 73 115 54 34 58 92 43 34 36 57 27 34 29 46 21 34 +minecraft:pumpkin_stem[age=1] 73 115 54 34 58 92 43 34 36 57 27 34 29 46 21 34 +minecraft:pumpkin_stem[age=2] 73 115 54 34 58 92 43 34 36 57 27 34 29 46 21 34 +minecraft:pumpkin_stem[age=3] 73 115 54 34 58 92 43 34 36 57 27 34 29 46 21 34 +minecraft:pumpkin_stem[age=4] 73 115 54 34 58 92 43 34 36 57 27 34 29 46 21 34 +minecraft:pumpkin_stem[age=5] 73 115 54 34 58 92 43 34 36 57 27 34 29 46 21 34 +minecraft:pumpkin_stem[age=6] 73 115 54 34 58 92 43 34 36 57 27 34 29 46 21 34 +minecraft:pumpkin_stem[age=7] 73 115 54 34 58 92 43 34 36 57 27 34 29 46 21 34 +minecraft:melon_stem 72 115 54 34 57 92 43 34 36 57 27 34 28 46 21 34 +minecraft:melon_stem[age=1] 72 115 54 34 57 92 43 34 36 57 27 34 28 46 21 34 +minecraft:melon_stem[age=2] 72 115 54 34 57 92 43 34 36 57 27 34 28 46 21 34 +minecraft:melon_stem[age=3] 72 115 54 34 57 92 43 34 36 57 27 34 28 46 21 34 +minecraft:melon_stem[age=4] 72 115 54 34 57 92 43 34 36 57 27 34 28 46 21 34 +minecraft:melon_stem[age=5] 72 115 54 34 57 92 43 34 36 57 27 34 28 46 21 34 +minecraft:melon_stem[age=6] 72 115 54 34 57 92 43 34 36 57 27 34 28 46 21 34 +minecraft:melon_stem[age=7] 72 115 54 34 57 92 43 34 36 57 27 34 28 46 21 34 +minecraft:vine 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=true,north=true,south=true,up=true,west=false] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=true,north=true,south=true,up=false,west=true] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=true,north=true,south=true,up=false,west=false] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=true,north=true,south=false,up=true,west=true] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=true,north=true,south=false,up=true,west=false] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=true,north=true,south=false,up=false,west=true] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=true,north=true,south=false,up=false,west=false] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=true,north=false,south=true,up=true,west=true] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=true,north=false,south=true,up=true,west=false] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=true,north=false,south=true,up=false,west=true] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=true,north=false,south=true,up=false,west=false] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=true,north=false,south=false,up=true,west=true] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=true,north=false,south=false,up=true,west=false] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=true,north=false,south=false,up=false,west=true] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=true,north=false,south=false,up=false,west=false] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=false,north=true,south=true,up=true,west=true] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=false,north=true,south=true,up=true,west=false] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=false,north=true,south=true,up=false,west=true] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=false,north=true,south=true,up=false,west=false] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=false,north=true,south=false,up=true,west=true] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=false,north=true,south=false,up=true,west=false] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=false,north=true,south=false,up=false,west=true] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=false,north=true,south=false,up=false,west=false] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=false,north=false,south=true,up=true,west=true] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=false,north=false,south=true,up=true,west=false] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=false,north=false,south=true,up=false,west=true] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=false,north=false,south=true,up=false,west=false] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=false,north=false,south=false,up=true,west=true] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=false,north=false,south=false,up=true,west=false] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=false,north=false,south=false,up=false,west=true] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:vine[east=false,north=false,south=false,up=false,west=false] 40 79 21 145 32 63 16 145 20 39 10 145 16 31 8 145 +minecraft:glow_lichen 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=true,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=true,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=true,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=true,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=false,waterlogged=true,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=false,waterlogged=true,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=false,waterlogged=false,west=true] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=false,waterlogged=false,west=false] 112 130 121 104 89 104 96 104 56 65 60 104 44 52 48 104 +minecraft:oak_fence_gate 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=north,in_wall=true,open=true,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=north,in_wall=true,open=false,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=north,in_wall=true,open=false,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=north,in_wall=false,open=true,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=north,in_wall=false,open=true,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=north,in_wall=false,open=false,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=north,in_wall=false,open=false,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=south,in_wall=true,open=true,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=south,in_wall=true,open=true,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=south,in_wall=true,open=false,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=south,in_wall=true,open=false,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=south,in_wall=false,open=true,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=south,in_wall=false,open=true,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=south,in_wall=false,open=false,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=south,in_wall=false,open=false,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=west,in_wall=true,open=true,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=west,in_wall=true,open=true,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=west,in_wall=true,open=false,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=west,in_wall=true,open=false,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=west,in_wall=false,open=true,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=west,in_wall=false,open=true,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=west,in_wall=false,open=false,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=west,in_wall=false,open=false,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=east,in_wall=true,open=true,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=east,in_wall=true,open=true,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=east,in_wall=true,open=false,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=east,in_wall=true,open=false,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=east,in_wall=false,open=true,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=east,in_wall=false,open=true,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=east,in_wall=false,open=false,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_fence_gate[facing=east,in_wall=false,open=false,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brick_stairs 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=top,shape=straight,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=top,shape=straight,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=top,shape=straight,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=top,shape=straight,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=top,shape=straight,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=top,shape=straight,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=top,shape=straight,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:stone_brick_stairs 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:mycelium 69 110 51 255 55 88 40 255 34 55 25 255 27 44 20 255 +minecraft:mycelium[snowy=false] 111 98 101 255 88 78 80 255 55 49 50 255 44 39 40 255 +minecraft:lily_pad 16 66 25 149 12 52 20 149 8 33 12 149 6 26 10 149 +minecraft:nether_bricks 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=true,north=true,south=true,waterlogged=true,west=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=true,north=true,south=true,waterlogged=false,west=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=true,north=true,south=true,waterlogged=false,west=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=true,north=true,south=false,waterlogged=true,west=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=true,north=true,south=false,waterlogged=true,west=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=true,north=true,south=false,waterlogged=false,west=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=true,north=true,south=false,waterlogged=false,west=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=true,north=false,south=true,waterlogged=true,west=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=true,north=false,south=true,waterlogged=true,west=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=true,north=false,south=true,waterlogged=false,west=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=true,north=false,south=true,waterlogged=false,west=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=true,north=false,south=false,waterlogged=true,west=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=true,north=false,south=false,waterlogged=true,west=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=true,north=false,south=false,waterlogged=false,west=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=true,north=false,south=false,waterlogged=false,west=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=false,north=true,south=true,waterlogged=true,west=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=false,north=true,south=true,waterlogged=true,west=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=false,north=true,south=true,waterlogged=false,west=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=false,north=true,south=true,waterlogged=false,west=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=false,north=true,south=false,waterlogged=true,west=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=false,north=true,south=false,waterlogged=true,west=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=false,north=true,south=false,waterlogged=false,west=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=false,north=true,south=false,waterlogged=false,west=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=false,north=false,south=true,waterlogged=true,west=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=false,north=false,south=true,waterlogged=true,west=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=false,north=false,south=true,waterlogged=false,west=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=false,north=false,south=true,waterlogged=false,west=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=false,north=false,south=false,waterlogged=true,west=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=false,north=false,south=false,waterlogged=true,west=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=false,north=false,south=false,waterlogged=false,west=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_fence[east=false,north=false,south=false,waterlogged=false,west=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_wart 117 18 21 43 93 14 16 43 58 9 10 43 46 7 8 43 +minecraft:nether_wart[age=1] 115 17 18 118 92 13 14 118 57 8 9 118 46 6 7 118 +minecraft:nether_wart[age=2] 115 17 18 118 92 13 14 118 57 8 9 118 46 6 7 118 +minecraft:nether_wart[age=3] 111 18 19 159 88 14 15 159 55 9 9 159 44 7 7 159 +minecraft:enchanting_table 128 75 85 255 102 60 68 255 64 37 42 255 51 30 34 255 +minecraft:brewing_stand 123 101 81 125 98 80 64 125 61 50 40 125 49 40 32 125 +minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=true,has_bottle_2=false] 123 101 81 125 98 80 64 125 61 50 40 125 49 40 32 125 +minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=false,has_bottle_2=true] 123 101 81 125 98 80 64 125 61 50 40 125 49 40 32 125 +minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=false,has_bottle_2=false] 123 101 81 125 98 80 64 125 61 50 40 125 49 40 32 125 +minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=true,has_bottle_2=true] 123 101 81 125 98 80 64 125 61 50 40 125 49 40 32 125 +minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=true,has_bottle_2=false] 123 101 81 125 98 80 64 125 61 50 40 125 49 40 32 125 +minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=false,has_bottle_2=true] 123 101 81 125 98 80 64 125 61 50 40 125 49 40 32 125 +minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=false,has_bottle_2=false] 123 101 81 125 98 80 64 125 61 50 40 125 49 40 32 125 +minecraft:cauldron 73 72 74 155 58 57 59 155 36 36 37 155 29 28 29 155 +minecraft:water_cauldron 73 72 74 155 58 57 59 155 36 36 37 155 29 28 29 155 +minecraft:water_cauldron[level=2] 73 72 74 155 58 57 59 155 36 36 37 155 29 28 29 155 +minecraft:water_cauldron[level=3] 73 72 74 155 58 57 59 155 36 36 37 155 29 28 29 155 +minecraft:lava_cauldron 73 72 74 155 58 57 59 155 36 36 37 155 29 28 29 155 +minecraft:powder_snow_cauldron 73 72 74 155 58 57 59 155 36 36 37 155 29 28 29 155 +minecraft:powder_snow_cauldron[level=2] 73 72 74 155 58 57 59 155 36 36 37 155 29 28 29 155 +minecraft:powder_snow_cauldron[level=3] 73 72 74 155 58 57 59 155 36 36 37 155 29 28 29 155 +minecraft:end_portal 117 90 156 255 93 72 124 255 58 45 78 255 46 36 62 255 +minecraft:end_portal_frame 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255 +minecraft:end_portal_frame[eye=true,facing=south] 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255 +minecraft:end_portal_frame[eye=true,facing=west] 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255 +minecraft:end_portal_frame[eye=true,facing=east] 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255 +minecraft:end_portal_frame[eye=false,facing=north] 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255 +minecraft:end_portal_frame[eye=false,facing=south] 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255 +minecraft:end_portal_frame[eye=false,facing=west] 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255 +minecraft:end_portal_frame[eye=false,facing=east] 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255 +minecraft:end_stone 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255 +minecraft:dragon_egg 12 9 15 255 9 7 12 255 6 4 7 255 4 3 6 255 +minecraft:redstone_lamp 142 101 60 255 113 80 48 255 71 50 30 255 56 40 24 255 +minecraft:redstone_lamp[lit=false] 95 54 30 255 76 43 24 255 47 27 15 255 38 21 12 255 +minecraft:cocoa 156 94 43 131 124 75 34 131 78 47 21 131 62 37 17 131 +minecraft:cocoa[age=0,facing=south] 156 94 43 131 124 75 34 131 78 47 21 131 62 37 17 131 +minecraft:cocoa[age=0,facing=west] 156 94 43 131 124 75 34 131 78 47 21 131 62 37 17 131 +minecraft:cocoa[age=0,facing=east] 156 94 43 131 124 75 34 131 78 47 21 131 62 37 17 131 +minecraft:cocoa[age=1,facing=north] 156 94 43 131 124 75 34 131 78 47 21 131 62 37 17 131 +minecraft:cocoa[age=1,facing=south] 156 94 43 131 124 75 34 131 78 47 21 131 62 37 17 131 +minecraft:cocoa[age=1,facing=west] 156 94 43 131 124 75 34 131 78 47 21 131 62 37 17 131 +minecraft:cocoa[age=1,facing=east] 156 94 43 131 124 75 34 131 78 47 21 131 62 37 17 131 +minecraft:cocoa[age=2,facing=north] 156 94 43 131 124 75 34 131 78 47 21 131 62 37 17 131 +minecraft:cocoa[age=2,facing=south] 156 94 43 131 124 75 34 131 78 47 21 131 62 37 17 131 +minecraft:cocoa[age=2,facing=west] 156 94 43 131 124 75 34 131 78 47 21 131 62 37 17 131 +minecraft:cocoa[age=2,facing=east] 156 94 43 131 124 75 34 131 78 47 21 131 62 37 17 131 +minecraft:sandstone_stairs 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=top,shape=straight,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:emerald_ore 108 136 115 255 86 108 92 255 54 68 57 255 43 54 46 255 +minecraft:deepslate_emerald_ore 78 104 87 255 62 83 69 255 39 52 43 255 31 41 34 255 +minecraft:ender_chest 25 45 45 195 20 36 36 195 12 22 22 195 10 18 18 195 +minecraft:ender_chest[facing=north,waterlogged=false] 25 45 45 195 20 36 36 195 12 22 22 195 10 18 18 195 +minecraft:ender_chest[facing=south,waterlogged=true] 25 45 45 195 20 36 36 195 12 22 22 195 10 18 18 195 +minecraft:ender_chest[facing=south,waterlogged=false] 25 45 45 195 20 36 36 195 12 22 22 195 10 18 18 195 +minecraft:ender_chest[facing=west,waterlogged=true] 25 45 45 195 20 36 36 195 12 22 22 195 10 18 18 195 +minecraft:ender_chest[facing=west,waterlogged=false] 25 45 45 195 20 36 36 195 12 22 22 195 10 18 18 195 +minecraft:ender_chest[facing=east,waterlogged=true] 25 45 45 195 20 36 36 195 12 22 22 195 10 18 18 195 +minecraft:ender_chest[facing=east,waterlogged=false] 25 45 45 195 20 36 36 195 12 22 22 195 10 18 18 195 +minecraft:tripwire_hook 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:tripwire_hook[attached=true,facing=north,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:tripwire_hook[attached=true,facing=south,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:tripwire_hook[attached=true,facing=south,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:tripwire_hook[attached=true,facing=west,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:tripwire_hook[attached=true,facing=west,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:tripwire_hook[attached=true,facing=east,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:tripwire_hook[attached=true,facing=east,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:tripwire_hook[attached=false,facing=north,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:tripwire_hook[attached=false,facing=north,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:tripwire_hook[attached=false,facing=south,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:tripwire_hook[attached=false,facing=south,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:tripwire_hook[attached=false,facing=west,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:tripwire_hook[attached=false,facing=west,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:tripwire_hook[attached=false,facing=east,powered=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:tripwire_hook[attached=false,facing=east,powered=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:emerald_block 42 203 87 255 33 162 69 255 21 101 43 255 16 81 34 255 +minecraft:spruce_stairs 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=top,shape=straight,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=top,shape=straight,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=top,shape=straight,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=top,shape=straight,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=top,shape=straight,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=top,shape=straight,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=top,shape=straight,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:birch_stairs 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=top,shape=straight,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=top,shape=straight,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=top,shape=straight,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=top,shape=straight,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=top,shape=straight,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=top,shape=straight,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=top,shape=straight,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:jungle_stairs 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=top,shape=straight,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=top,shape=straight,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=top,shape=straight,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=top,shape=straight,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=top,shape=straight,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=top,shape=straight,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=top,shape=straight,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:command_block 173 131 106 255 138 104 84 255 86 65 53 255 69 52 42 255 +minecraft:command_block[conditional=true,facing=east] 180 135 108 255 144 108 86 255 90 67 54 255 72 54 43 255 +minecraft:command_block[conditional=true,facing=south] 178 133 105 255 142 106 84 255 89 66 52 255 71 53 42 255 +minecraft:command_block[conditional=true,facing=west] 178 133 105 255 142 106 84 255 89 66 52 255 71 53 42 255 +minecraft:command_block[conditional=true,facing=up] 178 133 105 255 142 106 84 255 89 66 52 255 71 53 42 255 +minecraft:command_block[conditional=true,facing=down] 178 133 105 255 142 106 84 255 89 66 52 255 71 53 42 255 +minecraft:command_block[conditional=false,facing=north] 173 131 106 255 138 104 84 255 86 65 53 255 69 52 42 255 +minecraft:command_block[conditional=false,facing=east] 180 135 108 255 144 108 86 255 90 67 54 255 72 54 43 255 +minecraft:command_block[conditional=false,facing=south] 177 133 107 255 141 106 85 255 88 66 53 255 70 53 42 255 +minecraft:command_block[conditional=false,facing=west] 177 133 107 255 141 106 85 255 88 66 53 255 70 53 42 255 +minecraft:command_block[conditional=false,facing=up] 177 133 107 255 141 106 85 255 88 66 53 255 70 53 42 255 +minecraft:command_block[conditional=false,facing=down] 177 133 107 255 141 106 85 255 88 66 53 255 70 53 42 255 +minecraft:beacon 175 213 219 64 140 170 175 64 87 106 109 64 70 85 87 64 +minecraft:cobblestone_wall 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:mossy_cobblestone_wall 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:flower_pot 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_oak_sapling 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_spruce_sapling 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_birch_sapling 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_jungle_sapling 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_acacia_sapling 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_dark_oak_sapling 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_fern 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_dandelion 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_poppy 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_blue_orchid 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_allium 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_azure_bluet 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_red_tulip 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_orange_tulip 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_white_tulip 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_pink_tulip 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_oxeye_daisy 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_cornflower 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_lily_of_the_valley 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_wither_rose 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_red_mushroom 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_brown_mushroom 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_dead_bush 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_cactus 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:carrots 44 110 39 16 35 88 31 16 22 55 19 16 17 44 15 16 +minecraft:carrots[age=1] 44 110 39 16 35 88 31 16 22 55 19 16 17 44 15 16 +minecraft:carrots[age=2] 52 120 40 41 41 96 32 41 26 60 20 41 20 48 16 41 +minecraft:carrots[age=3] 52 120 40 41 41 96 32 41 26 60 20 41 20 48 16 41 +minecraft:carrots[age=4] 56 113 37 81 44 90 29 81 28 56 18 81 22 45 14 81 +minecraft:carrots[age=5] 56 113 37 81 44 90 29 81 28 56 18 81 22 45 14 81 +minecraft:carrots[age=6] 56 113 37 81 44 90 29 81 28 56 18 81 22 45 14 81 +minecraft:carrots[age=7] 81 123 37 110 64 98 29 110 40 61 18 110 32 49 14 110 +minecraft:potatoes 58 129 40 14 46 103 32 14 29 64 20 14 23 51 16 14 +minecraft:potatoes[age=1] 58 129 40 14 46 103 32 14 29 64 20 14 23 51 16 14 +minecraft:potatoes[age=2] 68 131 42 25 54 104 33 25 34 65 21 25 27 52 16 25 +minecraft:potatoes[age=3] 68 131 42 25 54 104 33 25 34 65 21 25 27 52 16 25 +minecraft:potatoes[age=4] 85 129 47 44 68 103 37 44 42 64 23 44 34 51 18 44 +minecraft:potatoes[age=5] 85 129 47 44 68 103 37 44 42 64 23 44 34 51 18 44 +minecraft:potatoes[age=6] 85 129 47 44 68 103 37 44 42 64 23 44 34 51 18 44 +minecraft:potatoes[age=7] 84 135 47 80 67 108 37 80 42 67 23 80 33 54 18 80 +minecraft:oak_button 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=floor,facing=north,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=floor,facing=south,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=floor,facing=south,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=floor,facing=west,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=floor,facing=west,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=floor,facing=east,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=floor,facing=east,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=wall,facing=north,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=wall,facing=north,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=wall,facing=south,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=wall,facing=south,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=wall,facing=west,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=wall,facing=west,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=wall,facing=east,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=wall,facing=east,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=ceiling,facing=north,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=ceiling,facing=north,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=ceiling,facing=south,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=ceiling,facing=south,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=ceiling,facing=west,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=ceiling,facing=west,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=ceiling,facing=east,powered=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_button[face=ceiling,facing=east,powered=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:spruce_button 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=floor,facing=north,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=floor,facing=south,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=floor,facing=south,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=floor,facing=west,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=floor,facing=west,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=floor,facing=east,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=floor,facing=east,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=wall,facing=north,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=wall,facing=north,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=wall,facing=south,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=wall,facing=south,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=wall,facing=west,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=wall,facing=west,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=wall,facing=east,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=wall,facing=east,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=ceiling,facing=north,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=ceiling,facing=north,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=ceiling,facing=south,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=ceiling,facing=south,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=ceiling,facing=west,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=ceiling,facing=west,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=ceiling,facing=east,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_button[face=ceiling,facing=east,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:birch_button 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=floor,facing=north,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=floor,facing=south,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=floor,facing=south,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=floor,facing=west,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=floor,facing=west,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=floor,facing=east,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=floor,facing=east,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=wall,facing=north,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=wall,facing=north,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=wall,facing=south,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=wall,facing=south,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=wall,facing=west,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=wall,facing=west,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=wall,facing=east,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=wall,facing=east,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=ceiling,facing=north,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=ceiling,facing=north,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=ceiling,facing=south,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=ceiling,facing=south,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=ceiling,facing=west,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=ceiling,facing=west,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=ceiling,facing=east,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_button[face=ceiling,facing=east,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:jungle_button 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=floor,facing=north,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=floor,facing=south,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=floor,facing=south,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=floor,facing=west,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=floor,facing=west,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=floor,facing=east,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=floor,facing=east,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=wall,facing=north,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=wall,facing=north,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=wall,facing=south,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=wall,facing=south,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=wall,facing=west,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=wall,facing=west,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=wall,facing=east,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=wall,facing=east,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=ceiling,facing=north,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=ceiling,facing=north,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=ceiling,facing=south,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=ceiling,facing=south,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=ceiling,facing=west,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=ceiling,facing=west,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=ceiling,facing=east,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_button[face=ceiling,facing=east,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:acacia_button 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=floor,facing=north,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=floor,facing=south,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=floor,facing=south,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=floor,facing=west,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=floor,facing=west,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=floor,facing=east,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=floor,facing=east,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=wall,facing=north,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=wall,facing=north,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=wall,facing=south,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=wall,facing=south,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=wall,facing=west,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=wall,facing=west,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=wall,facing=east,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=wall,facing=east,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=ceiling,facing=north,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=ceiling,facing=north,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=ceiling,facing=south,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=ceiling,facing=south,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=ceiling,facing=west,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=ceiling,facing=west,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=ceiling,facing=east,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_button[face=ceiling,facing=east,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:dark_oak_button 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=floor,facing=north,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=floor,facing=south,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=floor,facing=south,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=floor,facing=west,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=floor,facing=west,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=floor,facing=east,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=floor,facing=east,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=wall,facing=north,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=wall,facing=north,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=wall,facing=south,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=wall,facing=south,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=wall,facing=west,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=wall,facing=west,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=wall,facing=east,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=wall,facing=east,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=ceiling,facing=north,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=ceiling,facing=north,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=ceiling,facing=south,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=ceiling,facing=south,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=ceiling,facing=west,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=ceiling,facing=west,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=ceiling,facing=east,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_button[face=ceiling,facing=east,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:skeleton_skull 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_skull[rotation=1] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_skull[rotation=2] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_skull[rotation=3] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_skull[rotation=4] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_skull[rotation=5] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_skull[rotation=6] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_skull[rotation=7] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_skull[rotation=8] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_skull[rotation=9] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_skull[rotation=10] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_skull[rotation=11] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_skull[rotation=12] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_skull[rotation=13] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_skull[rotation=14] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_skull[rotation=15] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_wall_skull 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_wall_skull[facing=south] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_wall_skull[facing=west] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:skeleton_wall_skull[facing=east] 171 170 171 255 136 136 136 255 85 85 85 255 68 68 68 255 +minecraft:wither_skeleton_skull 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_skull[rotation=1] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_skull[rotation=2] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_skull[rotation=3] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_skull[rotation=4] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_skull[rotation=5] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_skull[rotation=6] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_skull[rotation=7] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_skull[rotation=8] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_skull[rotation=9] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_skull[rotation=10] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_skull[rotation=11] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_skull[rotation=12] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_skull[rotation=13] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_skull[rotation=14] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_skull[rotation=15] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_wall_skull 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_wall_skull[facing=south] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_wall_skull[facing=west] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:wither_skeleton_wall_skull[facing=east] 32 32 32 255 25 25 25 255 16 16 16 255 12 12 12 255 +minecraft:zombie_head 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_head[rotation=1] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_head[rotation=2] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_head[rotation=3] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_head[rotation=4] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_head[rotation=5] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_head[rotation=6] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_head[rotation=7] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_head[rotation=8] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_head[rotation=9] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_head[rotation=10] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_head[rotation=11] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_head[rotation=12] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_head[rotation=13] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_head[rotation=14] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_head[rotation=15] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_wall_head 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_wall_head[facing=south] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_wall_head[facing=west] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:zombie_wall_head[facing=east] 65 106 48 255 52 84 38 255 32 53 24 255 26 42 19 255 +minecraft:player_head 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_head[rotation=1] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_head[rotation=2] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_head[rotation=3] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_head[rotation=4] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_head[rotation=5] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_head[rotation=6] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_head[rotation=7] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_head[rotation=8] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_head[rotation=9] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_head[rotation=10] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_head[rotation=11] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_head[rotation=12] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_head[rotation=13] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_head[rotation=14] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_head[rotation=15] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_wall_head 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_wall_head[facing=south] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_wall_head[facing=west] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:player_wall_head[facing=east] 68 45 25 255 54 36 20 255 34 22 12 255 27 18 10 255 +minecraft:creeper_head 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_head[rotation=1] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_head[rotation=2] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_head[rotation=3] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_head[rotation=4] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_head[rotation=5] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_head[rotation=6] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_head[rotation=7] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_head[rotation=8] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_head[rotation=9] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_head[rotation=10] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_head[rotation=11] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_head[rotation=12] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_head[rotation=13] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_head[rotation=14] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_head[rotation=15] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_wall_head 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_wall_head[facing=south] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_wall_head[facing=west] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:creeper_wall_head[facing=east] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_head 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_head[rotation=1] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_head[rotation=2] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_head[rotation=3] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_head[rotation=4] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_head[rotation=5] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_head[rotation=6] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_head[rotation=7] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_head[rotation=8] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_head[rotation=9] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_head[rotation=10] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_head[rotation=11] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_head[rotation=12] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_head[rotation=13] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_head[rotation=14] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_head[rotation=15] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_wall_head 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_wall_head[facing=south] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_wall_head[facing=west] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:dragon_wall_head[facing=east] 111 192 102 255 88 153 81 255 55 96 51 255 44 76 40 255 +minecraft:anvil 68 68 68 255 54 54 54 255 34 34 34 255 27 27 27 255 +minecraft:anvil[facing=south] 68 68 68 255 54 54 54 255 34 34 34 255 27 27 27 255 +minecraft:anvil[facing=west] 68 68 68 255 54 54 54 255 34 34 34 255 27 27 27 255 +minecraft:anvil[facing=east] 68 68 68 255 54 54 54 255 34 34 34 255 27 27 27 255 +minecraft:chipped_anvil 68 68 68 255 54 54 54 255 34 34 34 255 27 27 27 255 +minecraft:chipped_anvil[facing=south] 68 68 68 255 54 54 54 255 34 34 34 255 27 27 27 255 +minecraft:chipped_anvil[facing=west] 68 68 68 255 54 54 54 255 34 34 34 255 27 27 27 255 +minecraft:chipped_anvil[facing=east] 68 68 68 255 54 54 54 255 34 34 34 255 27 27 27 255 +minecraft:damaged_anvil 68 68 68 255 54 54 54 255 34 34 34 255 27 27 27 255 +minecraft:damaged_anvil[facing=south] 68 68 68 255 54 54 54 255 34 34 34 255 27 27 27 255 +minecraft:damaged_anvil[facing=west] 68 68 68 255 54 54 54 255 34 34 34 255 27 27 27 255 +minecraft:damaged_anvil[facing=east] 68 68 68 255 54 54 54 255 34 34 34 255 27 27 27 255 +minecraft:trapped_chest 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=north,type=single,waterlogged=false] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=north,type=left,waterlogged=true] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=north,type=left,waterlogged=false] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=north,type=right,waterlogged=true] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=north,type=right,waterlogged=false] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=south,type=single,waterlogged=true] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=south,type=single,waterlogged=false] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=south,type=left,waterlogged=true] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=south,type=left,waterlogged=false] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=south,type=right,waterlogged=true] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=south,type=right,waterlogged=false] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=west,type=single,waterlogged=true] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=west,type=single,waterlogged=false] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=west,type=left,waterlogged=true] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=west,type=left,waterlogged=false] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=west,type=right,waterlogged=true] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=west,type=right,waterlogged=false] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=east,type=single,waterlogged=true] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=east,type=single,waterlogged=false] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=east,type=left,waterlogged=true] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=east,type=left,waterlogged=false] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=east,type=right,waterlogged=true] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:trapped_chest[facing=east,type=right,waterlogged=false] 118 85 38 195 94 68 30 195 59 42 19 195 47 34 15 195 +minecraft:light_weighted_pressure_plate 246 208 61 255 196 166 48 255 123 104 30 255 98 83 24 255 +minecraft:light_weighted_pressure_plate[power=1] 246 208 61 255 196 166 48 255 123 104 30 255 98 83 24 255 +minecraft:light_weighted_pressure_plate[power=2] 246 208 61 255 196 166 48 255 123 104 30 255 98 83 24 255 +minecraft:light_weighted_pressure_plate[power=3] 246 208 61 255 196 166 48 255 123 104 30 255 98 83 24 255 +minecraft:light_weighted_pressure_plate[power=4] 246 208 61 255 196 166 48 255 123 104 30 255 98 83 24 255 +minecraft:light_weighted_pressure_plate[power=5] 246 208 61 255 196 166 48 255 123 104 30 255 98 83 24 255 +minecraft:light_weighted_pressure_plate[power=6] 246 208 61 255 196 166 48 255 123 104 30 255 98 83 24 255 +minecraft:light_weighted_pressure_plate[power=7] 246 208 61 255 196 166 48 255 123 104 30 255 98 83 24 255 +minecraft:light_weighted_pressure_plate[power=8] 246 208 61 255 196 166 48 255 123 104 30 255 98 83 24 255 +minecraft:light_weighted_pressure_plate[power=9] 246 208 61 255 196 166 48 255 123 104 30 255 98 83 24 255 +minecraft:light_weighted_pressure_plate[power=10] 246 208 61 255 196 166 48 255 123 104 30 255 98 83 24 255 +minecraft:light_weighted_pressure_plate[power=11] 246 208 61 255 196 166 48 255 123 104 30 255 98 83 24 255 +minecraft:light_weighted_pressure_plate[power=12] 246 208 61 255 196 166 48 255 123 104 30 255 98 83 24 255 +minecraft:light_weighted_pressure_plate[power=13] 246 208 61 255 196 166 48 255 123 104 30 255 98 83 24 255 +minecraft:light_weighted_pressure_plate[power=14] 246 208 61 255 196 166 48 255 123 104 30 255 98 83 24 255 +minecraft:light_weighted_pressure_plate[power=15] 246 208 61 255 196 166 48 255 123 104 30 255 98 83 24 255 +minecraft:heavy_weighted_pressure_plate 220 220 220 255 176 176 176 255 110 110 110 255 88 88 88 255 +minecraft:heavy_weighted_pressure_plate[power=1] 220 220 220 255 176 176 176 255 110 110 110 255 88 88 88 255 +minecraft:heavy_weighted_pressure_plate[power=2] 220 220 220 255 176 176 176 255 110 110 110 255 88 88 88 255 +minecraft:heavy_weighted_pressure_plate[power=3] 220 220 220 255 176 176 176 255 110 110 110 255 88 88 88 255 +minecraft:heavy_weighted_pressure_plate[power=4] 220 220 220 255 176 176 176 255 110 110 110 255 88 88 88 255 +minecraft:heavy_weighted_pressure_plate[power=5] 220 220 220 255 176 176 176 255 110 110 110 255 88 88 88 255 +minecraft:heavy_weighted_pressure_plate[power=6] 220 220 220 255 176 176 176 255 110 110 110 255 88 88 88 255 +minecraft:heavy_weighted_pressure_plate[power=7] 220 220 220 255 176 176 176 255 110 110 110 255 88 88 88 255 +minecraft:heavy_weighted_pressure_plate[power=8] 220 220 220 255 176 176 176 255 110 110 110 255 88 88 88 255 +minecraft:heavy_weighted_pressure_plate[power=9] 220 220 220 255 176 176 176 255 110 110 110 255 88 88 88 255 +minecraft:heavy_weighted_pressure_plate[power=10] 220 220 220 255 176 176 176 255 110 110 110 255 88 88 88 255 +minecraft:heavy_weighted_pressure_plate[power=11] 220 220 220 255 176 176 176 255 110 110 110 255 88 88 88 255 +minecraft:heavy_weighted_pressure_plate[power=12] 220 220 220 255 176 176 176 255 110 110 110 255 88 88 88 255 +minecraft:heavy_weighted_pressure_plate[power=13] 220 220 220 255 176 176 176 255 110 110 110 255 88 88 88 255 +minecraft:heavy_weighted_pressure_plate[power=14] 220 220 220 255 176 176 176 255 110 110 110 255 88 88 88 255 +minecraft:heavy_weighted_pressure_plate[power=15] 220 220 220 255 176 176 176 255 110 110 110 255 88 88 88 255 +minecraft:comparator 175 161 159 255 140 128 127 255 87 80 79 255 70 64 63 255 +minecraft:comparator[facing=north,mode=compare,powered=false] 166 161 159 255 132 128 127 255 83 80 79 255 66 64 63 255 +minecraft:comparator[facing=north,mode=subtract,powered=true] 175 161 159 255 140 128 127 255 87 80 79 255 70 64 63 255 +minecraft:comparator[facing=north,mode=subtract,powered=false] 166 161 159 255 132 128 127 255 83 80 79 255 66 64 63 255 +minecraft:comparator[facing=south,mode=compare,powered=true] 175 161 159 255 140 128 127 255 87 80 79 255 70 64 63 255 +minecraft:comparator[facing=south,mode=compare,powered=false] 166 161 159 255 132 128 127 255 83 80 79 255 66 64 63 255 +minecraft:comparator[facing=south,mode=subtract,powered=true] 175 161 159 255 140 128 127 255 87 80 79 255 70 64 63 255 +minecraft:comparator[facing=south,mode=subtract,powered=false] 166 161 159 255 132 128 127 255 83 80 79 255 66 64 63 255 +minecraft:comparator[facing=west,mode=compare,powered=true] 175 161 159 255 140 128 127 255 87 80 79 255 70 64 63 255 +minecraft:comparator[facing=west,mode=compare,powered=false] 166 161 159 255 132 128 127 255 83 80 79 255 66 64 63 255 +minecraft:comparator[facing=west,mode=subtract,powered=true] 175 161 159 255 140 128 127 255 87 80 79 255 70 64 63 255 +minecraft:comparator[facing=west,mode=subtract,powered=false] 166 161 159 255 132 128 127 255 83 80 79 255 66 64 63 255 +minecraft:comparator[facing=east,mode=compare,powered=true] 175 161 159 255 140 128 127 255 87 80 79 255 70 64 63 255 +minecraft:comparator[facing=east,mode=compare,powered=false] 166 161 159 255 132 128 127 255 83 80 79 255 66 64 63 255 +minecraft:comparator[facing=east,mode=subtract,powered=true] 175 161 159 255 140 128 127 255 87 80 79 255 70 64 63 255 +minecraft:comparator[facing=east,mode=subtract,powered=false] 166 161 159 255 132 128 127 255 83 80 79 255 66 64 63 255 +minecraft:daylight_detector 106 109 112 255 84 87 89 255 53 54 56 255 42 43 44 255 +minecraft:daylight_detector[inverted=true,power=1] 106 109 112 255 84 87 89 255 53 54 56 255 42 43 44 255 +minecraft:daylight_detector[inverted=true,power=2] 106 109 112 255 84 87 89 255 53 54 56 255 42 43 44 255 +minecraft:daylight_detector[inverted=true,power=3] 106 109 112 255 84 87 89 255 53 54 56 255 42 43 44 255 +minecraft:daylight_detector[inverted=true,power=4] 106 109 112 255 84 87 89 255 53 54 56 255 42 43 44 255 +minecraft:daylight_detector[inverted=true,power=5] 106 109 112 255 84 87 89 255 53 54 56 255 42 43 44 255 +minecraft:daylight_detector[inverted=true,power=6] 106 109 112 255 84 87 89 255 53 54 56 255 42 43 44 255 +minecraft:daylight_detector[inverted=true,power=7] 106 109 112 255 84 87 89 255 53 54 56 255 42 43 44 255 +minecraft:daylight_detector[inverted=true,power=8] 106 109 112 255 84 87 89 255 53 54 56 255 42 43 44 255 +minecraft:daylight_detector[inverted=true,power=9] 106 109 112 255 84 87 89 255 53 54 56 255 42 43 44 255 +minecraft:daylight_detector[inverted=true,power=10] 106 109 112 255 84 87 89 255 53 54 56 255 42 43 44 255 +minecraft:daylight_detector[inverted=true,power=11] 106 109 112 255 84 87 89 255 53 54 56 255 42 43 44 255 +minecraft:daylight_detector[inverted=true,power=12] 106 109 112 255 84 87 89 255 53 54 56 255 42 43 44 255 +minecraft:daylight_detector[inverted=true,power=13] 106 109 112 255 84 87 89 255 53 54 56 255 42 43 44 255 +minecraft:daylight_detector[inverted=true,power=14] 106 109 112 255 84 87 89 255 53 54 56 255 42 43 44 255 +minecraft:daylight_detector[inverted=true,power=15] 106 109 112 255 84 87 89 255 53 54 56 255 42 43 44 255 +minecraft:daylight_detector[inverted=false,power=0] 130 116 94 255 104 92 75 255 65 58 47 255 52 46 37 255 +minecraft:daylight_detector[inverted=false,power=1] 130 116 94 255 104 92 75 255 65 58 47 255 52 46 37 255 +minecraft:daylight_detector[inverted=false,power=2] 130 116 94 255 104 92 75 255 65 58 47 255 52 46 37 255 +minecraft:daylight_detector[inverted=false,power=3] 130 116 94 255 104 92 75 255 65 58 47 255 52 46 37 255 +minecraft:daylight_detector[inverted=false,power=4] 130 116 94 255 104 92 75 255 65 58 47 255 52 46 37 255 +minecraft:daylight_detector[inverted=false,power=5] 130 116 94 255 104 92 75 255 65 58 47 255 52 46 37 255 +minecraft:daylight_detector[inverted=false,power=6] 130 116 94 255 104 92 75 255 65 58 47 255 52 46 37 255 +minecraft:daylight_detector[inverted=false,power=7] 130 116 94 255 104 92 75 255 65 58 47 255 52 46 37 255 +minecraft:daylight_detector[inverted=false,power=8] 130 116 94 255 104 92 75 255 65 58 47 255 52 46 37 255 +minecraft:daylight_detector[inverted=false,power=9] 130 116 94 255 104 92 75 255 65 58 47 255 52 46 37 255 +minecraft:daylight_detector[inverted=false,power=10] 130 116 94 255 104 92 75 255 65 58 47 255 52 46 37 255 +minecraft:daylight_detector[inverted=false,power=11] 130 116 94 255 104 92 75 255 65 58 47 255 52 46 37 255 +minecraft:daylight_detector[inverted=false,power=12] 130 116 94 255 104 92 75 255 65 58 47 255 52 46 37 255 +minecraft:daylight_detector[inverted=false,power=13] 130 116 94 255 104 92 75 255 65 58 47 255 52 46 37 255 +minecraft:daylight_detector[inverted=false,power=14] 130 116 94 255 104 92 75 255 65 58 47 255 52 46 37 255 +minecraft:daylight_detector[inverted=false,power=15] 130 116 94 255 104 92 75 255 65 58 47 255 52 46 37 255 +minecraft:redstone_block 175 24 5 255 140 19 4 255 87 12 2 255 70 9 2 255 +minecraft:nether_quartz_ore 117 65 62 255 93 52 49 255 58 32 31 255 46 26 24 255 +minecraft:hopper 49 49 53 255 39 39 42 255 24 24 26 255 19 19 21 255 +minecraft:hopper[enabled=true,facing=north] 49 49 53 255 39 39 42 255 24 24 26 255 19 19 21 255 +minecraft:hopper[enabled=true,facing=south] 49 49 53 255 39 39 42 255 24 24 26 255 19 19 21 255 +minecraft:hopper[enabled=true,facing=west] 49 49 53 255 39 39 42 255 24 24 26 255 19 19 21 255 +minecraft:hopper[enabled=true,facing=east] 49 49 53 255 39 39 42 255 24 24 26 255 19 19 21 255 +minecraft:hopper[enabled=false,facing=down] 49 49 53 255 39 39 42 255 24 24 26 255 19 19 21 255 +minecraft:hopper[enabled=false,facing=north] 49 49 53 255 39 39 42 255 24 24 26 255 19 19 21 255 +minecraft:hopper[enabled=false,facing=south] 49 49 53 255 39 39 42 255 24 24 26 255 19 19 21 255 +minecraft:hopper[enabled=false,facing=west] 49 49 53 255 39 39 42 255 24 24 26 255 19 19 21 255 +minecraft:hopper[enabled=false,facing=east] 49 49 53 255 39 39 42 255 24 24 26 255 19 19 21 255 +minecraft:quartz_block 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:chiseled_quartz_block 231 226 217 255 184 180 173 255 115 113 108 255 92 90 86 255 +minecraft:quartz_pillar 235 230 224 255 188 184 179 255 117 115 112 255 94 92 89 255 +minecraft:quartz_pillar[axis=y] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_pillar[axis=z] 235 230 224 255 188 184 179 255 117 115 112 255 94 92 89 255 +minecraft:quartz_stairs 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=top,shape=straight,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=top,shape=straight,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=top,shape=straight,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=top,shape=straight,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=top,shape=straight,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=top,shape=straight,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=top,shape=straight,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:activator_rail 143 87 74 155 114 69 59 155 71 43 37 155 57 34 29 155 +minecraft:activator_rail[powered=true,shape=north_south,waterlogged=false] 143 87 74 155 114 69 59 155 71 43 37 155 57 34 29 155 +minecraft:activator_rail[powered=true,shape=east_west,waterlogged=true] 143 87 74 155 114 69 59 155 71 43 37 155 57 34 29 155 +minecraft:activator_rail[powered=true,shape=east_west,waterlogged=false] 143 87 74 155 114 69 59 155 71 43 37 155 57 34 29 155 +minecraft:activator_rail[powered=true,shape=ascending_east,waterlogged=true] 143 87 74 155 114 69 59 155 71 43 37 155 57 34 29 155 +minecraft:activator_rail[powered=true,shape=ascending_east,waterlogged=false] 143 87 74 155 114 69 59 155 71 43 37 155 57 34 29 155 +minecraft:activator_rail[powered=true,shape=ascending_west,waterlogged=true] 143 87 74 155 114 69 59 155 71 43 37 155 57 34 29 155 +minecraft:activator_rail[powered=true,shape=ascending_west,waterlogged=false] 143 87 74 155 114 69 59 155 71 43 37 155 57 34 29 155 +minecraft:activator_rail[powered=true,shape=ascending_north,waterlogged=true] 143 87 74 155 114 69 59 155 71 43 37 155 57 34 29 155 +minecraft:activator_rail[powered=true,shape=ascending_north,waterlogged=false] 143 87 74 155 114 69 59 155 71 43 37 155 57 34 29 155 +minecraft:activator_rail[powered=true,shape=ascending_south,waterlogged=true] 143 87 74 155 114 69 59 155 71 43 37 155 57 34 29 155 +minecraft:activator_rail[powered=true,shape=ascending_south,waterlogged=false] 143 87 74 155 114 69 59 155 71 43 37 155 57 34 29 155 +minecraft:activator_rail[powered=false,shape=north_south,waterlogged=true] 115 87 74 155 92 69 59 155 57 43 37 155 46 34 29 155 +minecraft:activator_rail[powered=false,shape=north_south,waterlogged=false] 115 87 74 155 92 69 59 155 57 43 37 155 46 34 29 155 +minecraft:activator_rail[powered=false,shape=east_west,waterlogged=true] 115 87 74 155 92 69 59 155 57 43 37 155 46 34 29 155 +minecraft:activator_rail[powered=false,shape=east_west,waterlogged=false] 115 87 74 155 92 69 59 155 57 43 37 155 46 34 29 155 +minecraft:activator_rail[powered=false,shape=ascending_east,waterlogged=true] 115 87 74 155 92 69 59 155 57 43 37 155 46 34 29 155 +minecraft:activator_rail[powered=false,shape=ascending_east,waterlogged=false] 115 87 74 155 92 69 59 155 57 43 37 155 46 34 29 155 +minecraft:activator_rail[powered=false,shape=ascending_west,waterlogged=true] 115 87 74 155 92 69 59 155 57 43 37 155 46 34 29 155 +minecraft:activator_rail[powered=false,shape=ascending_west,waterlogged=false] 115 87 74 155 92 69 59 155 57 43 37 155 46 34 29 155 +minecraft:activator_rail[powered=false,shape=ascending_north,waterlogged=true] 115 87 74 155 92 69 59 155 57 43 37 155 46 34 29 155 +minecraft:activator_rail[powered=false,shape=ascending_north,waterlogged=false] 115 87 74 155 92 69 59 155 57 43 37 155 46 34 29 155 +minecraft:activator_rail[powered=false,shape=ascending_south,waterlogged=true] 115 87 74 155 92 69 59 155 57 43 37 155 46 34 29 155 +minecraft:activator_rail[powered=false,shape=ascending_south,waterlogged=false] 115 87 74 155 92 69 59 155 57 43 37 155 46 34 29 155 +minecraft:dropper 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dropper[facing=north,triggered=false] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dropper[facing=east,triggered=true] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 +minecraft:dropper[facing=east,triggered=false] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255 +minecraft:dropper[facing=south,triggered=true] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dropper[facing=south,triggered=false] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dropper[facing=west,triggered=true] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dropper[facing=west,triggered=false] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dropper[facing=up,triggered=true] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dropper[facing=up,triggered=false] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dropper[facing=down,triggered=true] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:dropper[facing=down,triggered=false] 110 109 109 255 88 87 87 255 55 54 54 255 44 43 43 255 +minecraft:white_terracotta 209 178 161 255 167 142 128 255 104 89 80 255 83 71 64 255 +minecraft:orange_terracotta 161 83 37 255 128 66 29 255 80 41 18 255 64 33 14 255 +minecraft:magenta_terracotta 149 88 108 255 119 70 86 255 74 44 54 255 59 35 43 255 +minecraft:light_blue_terracotta 113 108 137 255 90 86 109 255 56 54 68 255 45 43 54 255 +minecraft:yellow_terracotta 186 133 35 255 148 106 28 255 93 66 17 255 74 53 14 255 +minecraft:lime_terracotta 103 117 52 255 82 93 41 255 51 58 26 255 41 46 20 255 +minecraft:pink_terracotta 161 78 78 255 128 62 62 255 80 39 39 255 64 31 31 255 +minecraft:gray_terracotta 57 42 35 255 45 33 28 255 28 21 17 255 22 16 14 255 +minecraft:light_gray_terracotta 135 106 97 255 108 84 77 255 67 53 48 255 54 42 38 255 +minecraft:cyan_terracotta 86 91 91 255 68 72 72 255 43 45 45 255 34 36 36 255 +minecraft:purple_terracotta 118 70 86 255 94 56 68 255 59 35 43 255 47 28 34 255 +minecraft:blue_terracotta 74 59 91 255 59 47 72 255 37 29 45 255 29 23 36 255 +minecraft:brown_terracotta 77 51 35 255 61 40 28 255 38 25 17 255 30 20 14 255 +minecraft:green_terracotta 76 83 42 255 60 66 33 255 38 41 21 255 30 33 16 255 +minecraft:red_terracotta 143 61 46 255 114 48 36 255 71 30 23 255 57 24 18 255 +minecraft:black_terracotta 37 22 16 255 29 17 12 255 18 11 8 255 14 8 6 255 +minecraft:white_stained_glass_pane 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:white_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 255 255 255 117 204 204 204 117 127 127 127 117 102 102 102 117 +minecraft:orange_stained_glass_pane 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:orange_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 216 127 51 117 172 101 40 117 108 63 25 117 86 50 20 117 +minecraft:magenta_stained_glass_pane 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:magenta_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 178 76 216 117 142 60 172 117 89 38 108 117 71 30 86 117 +minecraft:light_blue_stained_glass_pane 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:light_blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 102 153 216 117 81 122 172 117 51 76 108 117 40 61 86 117 +minecraft:yellow_stained_glass_pane 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:yellow_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 229 229 51 117 183 183 40 117 114 114 25 117 91 91 20 117 +minecraft:lime_stained_glass_pane 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:lime_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 127 204 25 117 101 163 20 117 63 102 12 117 50 81 10 117 +minecraft:pink_stained_glass_pane 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:pink_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 242 127 165 117 193 101 132 117 121 63 82 117 96 50 66 117 +minecraft:gray_stained_glass_pane 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 76 76 76 117 60 60 60 117 38 38 38 117 30 30 30 117 +minecraft:light_gray_stained_glass_pane 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:light_gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 153 153 153 117 122 122 122 117 76 76 76 117 61 61 61 117 +minecraft:cyan_stained_glass_pane 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:cyan_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 76 127 153 117 60 101 122 117 38 63 76 117 30 50 61 117 +minecraft:purple_stained_glass_pane 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:purple_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 127 63 178 117 101 50 142 117 63 31 89 117 50 25 71 117 +minecraft:blue_stained_glass_pane 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 51 76 178 121 40 60 142 121 25 38 89 121 20 30 71 121 +minecraft:brown_stained_glass_pane 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:brown_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 102 76 51 117 81 60 40 117 51 38 25 117 40 30 20 117 +minecraft:green_stained_glass_pane 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:green_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 102 127 51 117 81 101 40 117 51 63 25 117 40 50 20 117 +minecraft:red_stained_glass_pane 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:red_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 153 51 51 151 122 40 40 151 76 25 25 151 61 20 20 151 +minecraft:black_stained_glass_pane 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:black_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] 25 25 25 117 20 20 20 117 12 12 12 117 10 10 10 117 +minecraft:acacia_stairs 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=top,shape=straight,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=top,shape=straight,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=top,shape=straight,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=top,shape=straight,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=top,shape=straight,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=top,shape=straight,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=top,shape=straight,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:dark_oak_stairs 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=top,shape=straight,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=top,shape=straight,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=top,shape=straight,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=top,shape=straight,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=top,shape=straight,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=top,shape=straight,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=top,shape=straight,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:slime_block 111 192 91 180 88 153 72 180 55 96 45 180 44 76 36 180 +minecraft:iron_trapdoor 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:iron_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false] 202 202 202 219 161 161 161 219 101 101 101 219 80 80 80 219 +minecraft:prismarine 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_bricks 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:dark_prismarine 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:prismarine_stairs 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=top,shape=straight,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=top,shape=straight,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=top,shape=straight,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=top,shape=straight,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=top,shape=straight,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=top,shape=straight,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=top,shape=straight,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_brick_stairs 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:dark_prismarine_stairs 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=top,shape=straight,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=top,shape=straight,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=top,shape=straight,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=top,shape=straight,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=top,shape=straight,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=top,shape=straight,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=top,shape=straight,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:prismarine_slab 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_slab[type=top,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_slab[type=bottom,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_slab[type=bottom,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_slab[type=double,waterlogged=true] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_slab[type=double,waterlogged=false] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_brick_slab 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_slab[type=top,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_slab[type=bottom,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_slab[type=bottom,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_slab[type=double,waterlogged=true] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:prismarine_brick_slab[type=double,waterlogged=false] 99 171 158 255 79 136 126 255 49 85 79 255 39 68 63 255 +minecraft:dark_prismarine_slab 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_slab[type=top,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_slab[type=bottom,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_slab[type=bottom,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_slab[type=double,waterlogged=true] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:dark_prismarine_slab[type=double,waterlogged=false] 51 91 75 255 40 72 60 255 25 45 37 255 20 36 30 255 +minecraft:sea_lantern 172 200 190 255 137 160 152 255 86 100 95 255 68 80 76 255 +minecraft:hay_block 166 136 38 255 132 108 30 255 83 68 19 255 66 54 15 255 +minecraft:hay_block[axis=y] 165 139 12 255 132 111 9 255 82 69 6 255 66 55 4 255 +minecraft:hay_block[axis=z] 166 136 38 255 132 108 30 255 83 68 19 255 66 54 15 255 +minecraft:white_carpet 233 236 236 255 186 188 188 255 116 118 118 255 93 94 94 255 +minecraft:orange_carpet 240 118 19 255 192 94 15 255 120 59 9 255 96 47 7 255 +minecraft:magenta_carpet 189 68 179 255 151 54 143 255 94 34 89 255 75 27 71 255 +minecraft:light_blue_carpet 58 175 217 255 46 140 173 255 29 87 108 255 23 70 86 255 +minecraft:yellow_carpet 248 197 39 255 198 157 31 255 124 98 19 255 99 78 15 255 +minecraft:lime_carpet 112 185 25 255 89 148 20 255 56 92 12 255 44 74 10 255 +minecraft:pink_carpet 237 141 172 255 189 112 137 255 118 70 86 255 94 56 68 255 +minecraft:gray_carpet 62 68 71 255 49 54 56 255 31 34 35 255 24 27 28 255 +minecraft:light_gray_carpet 142 142 134 255 113 113 107 255 71 71 67 255 56 56 53 255 +minecraft:cyan_carpet 21 137 145 255 16 109 116 255 10 68 72 255 8 54 58 255 +minecraft:purple_carpet 121 42 172 255 96 33 137 255 60 21 86 255 48 16 68 255 +minecraft:blue_carpet 53 57 157 255 42 45 125 255 26 28 78 255 21 22 62 255 +minecraft:brown_carpet 114 71 40 255 91 56 32 255 57 35 20 255 45 28 16 255 +minecraft:green_carpet 84 109 27 255 67 87 21 255 42 54 13 255 33 43 10 255 +minecraft:red_carpet 160 39 34 255 128 31 27 255 80 19 17 255 64 15 13 255 +minecraft:black_carpet 20 21 25 255 16 16 20 255 10 10 12 255 8 8 10 255 +minecraft:terracotta 152 94 67 255 121 75 53 255 76 47 33 255 60 37 26 255 +minecraft:coal_block 16 15 15 255 12 12 12 255 8 7 7 255 6 6 6 255 +minecraft:packed_ice 141 180 250 255 112 144 200 255 70 90 125 255 56 72 100 255 +minecraft:sunflower 49 129 27 30 39 103 21 30 24 64 13 30 19 51 10 30 +minecraft:sunflower[half=lower] 56 135 30 56 44 108 24 56 28 67 15 56 22 54 12 56 +minecraft:lilac 154 125 147 74 123 100 117 74 77 62 73 74 61 50 58 74 +minecraft:lilac[half=lower] 137 124 126 89 109 99 100 89 68 62 63 89 54 49 50 89 +minecraft:rose_bush 131 66 37 92 104 52 29 92 65 33 18 92 52 26 14 92 +minecraft:rose_bush[half=lower] 97 83 37 178 77 66 29 178 48 41 18 178 38 33 14 178 +minecraft:peony 129 126 139 109 103 100 111 109 64 63 69 109 51 50 55 109 +minecraft:peony[half=lower] 86 101 93 140 68 80 74 140 43 50 46 140 34 40 37 140 +minecraft:tall_grass 71 112 53 89 56 89 42 89 35 56 26 89 28 44 21 89 +minecraft:tall_grass[half=lower] 60 96 45 186 48 76 36 186 30 48 22 186 24 38 18 186 +minecraft:large_fern 59 94 44 103 47 75 35 103 29 47 22 103 23 37 17 103 +minecraft:large_fern[half=lower] 62 98 46 175 49 78 36 175 31 49 23 175 24 39 18 175 +minecraft:white_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_banner[rotation=1] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_banner[rotation=2] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_banner[rotation=3] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_banner[rotation=4] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_banner[rotation=5] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_banner[rotation=6] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_banner[rotation=7] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_banner[rotation=8] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_banner[rotation=9] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_banner[rotation=10] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_banner[rotation=11] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_banner[rotation=12] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_banner[rotation=13] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_banner[rotation=14] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_banner[rotation=15] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_banner[rotation=1] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_banner[rotation=2] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_banner[rotation=3] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_banner[rotation=4] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_banner[rotation=5] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_banner[rotation=6] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_banner[rotation=7] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_banner[rotation=8] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_banner[rotation=9] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_banner[rotation=10] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_banner[rotation=11] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_banner[rotation=12] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_banner[rotation=13] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_banner[rotation=14] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_banner[rotation=15] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_banner[rotation=1] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_banner[rotation=2] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_banner[rotation=3] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_banner[rotation=4] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_banner[rotation=5] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_banner[rotation=6] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_banner[rotation=7] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_banner[rotation=8] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_banner[rotation=9] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_banner[rotation=10] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_banner[rotation=11] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_banner[rotation=12] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_banner[rotation=13] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_banner[rotation=14] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_banner[rotation=15] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_banner[rotation=1] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_banner[rotation=2] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_banner[rotation=3] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_banner[rotation=4] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_banner[rotation=5] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_banner[rotation=6] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_banner[rotation=7] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_banner[rotation=8] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_banner[rotation=9] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_banner[rotation=10] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_banner[rotation=11] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_banner[rotation=12] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_banner[rotation=13] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_banner[rotation=14] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_banner[rotation=15] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_banner[rotation=1] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_banner[rotation=2] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_banner[rotation=3] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_banner[rotation=4] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_banner[rotation=5] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_banner[rotation=6] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_banner[rotation=7] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_banner[rotation=8] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_banner[rotation=9] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_banner[rotation=10] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_banner[rotation=11] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_banner[rotation=12] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_banner[rotation=13] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_banner[rotation=14] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_banner[rotation=15] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_banner[rotation=1] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_banner[rotation=2] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_banner[rotation=3] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_banner[rotation=4] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_banner[rotation=5] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_banner[rotation=6] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_banner[rotation=7] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_banner[rotation=8] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_banner[rotation=9] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_banner[rotation=10] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_banner[rotation=11] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_banner[rotation=12] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_banner[rotation=13] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_banner[rotation=14] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_banner[rotation=15] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_banner[rotation=1] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_banner[rotation=2] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_banner[rotation=3] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_banner[rotation=4] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_banner[rotation=5] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_banner[rotation=6] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_banner[rotation=7] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_banner[rotation=8] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_banner[rotation=9] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_banner[rotation=10] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_banner[rotation=11] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_banner[rotation=12] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_banner[rotation=13] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_banner[rotation=14] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_banner[rotation=15] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_banner[rotation=1] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_banner[rotation=2] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_banner[rotation=3] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_banner[rotation=4] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_banner[rotation=5] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_banner[rotation=6] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_banner[rotation=7] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_banner[rotation=8] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_banner[rotation=9] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_banner[rotation=10] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_banner[rotation=11] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_banner[rotation=12] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_banner[rotation=13] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_banner[rotation=14] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_banner[rotation=15] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_banner[rotation=1] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_banner[rotation=2] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_banner[rotation=3] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_banner[rotation=4] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_banner[rotation=5] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_banner[rotation=6] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_banner[rotation=7] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_banner[rotation=8] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_banner[rotation=9] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_banner[rotation=10] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_banner[rotation=11] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_banner[rotation=12] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_banner[rotation=13] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_banner[rotation=14] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_banner[rotation=15] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_banner[rotation=1] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_banner[rotation=2] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_banner[rotation=3] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_banner[rotation=4] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_banner[rotation=5] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_banner[rotation=6] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_banner[rotation=7] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_banner[rotation=8] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_banner[rotation=9] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_banner[rotation=10] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_banner[rotation=11] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_banner[rotation=12] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_banner[rotation=13] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_banner[rotation=14] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_banner[rotation=15] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_banner[rotation=1] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_banner[rotation=2] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_banner[rotation=3] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_banner[rotation=4] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_banner[rotation=5] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_banner[rotation=6] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_banner[rotation=7] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_banner[rotation=8] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_banner[rotation=9] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_banner[rotation=10] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_banner[rotation=11] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_banner[rotation=12] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_banner[rotation=13] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_banner[rotation=14] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_banner[rotation=15] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_banner[rotation=1] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_banner[rotation=2] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_banner[rotation=3] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_banner[rotation=4] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_banner[rotation=5] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_banner[rotation=6] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_banner[rotation=7] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_banner[rotation=8] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_banner[rotation=9] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_banner[rotation=10] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_banner[rotation=11] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_banner[rotation=12] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_banner[rotation=13] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_banner[rotation=14] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_banner[rotation=15] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_banner[rotation=1] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_banner[rotation=2] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_banner[rotation=3] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_banner[rotation=4] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_banner[rotation=5] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_banner[rotation=6] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_banner[rotation=7] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_banner[rotation=8] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_banner[rotation=9] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_banner[rotation=10] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_banner[rotation=11] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_banner[rotation=12] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_banner[rotation=13] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_banner[rotation=14] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_banner[rotation=15] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_banner[rotation=1] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_banner[rotation=2] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_banner[rotation=3] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_banner[rotation=4] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_banner[rotation=5] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_banner[rotation=6] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_banner[rotation=7] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_banner[rotation=8] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_banner[rotation=9] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_banner[rotation=10] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_banner[rotation=11] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_banner[rotation=12] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_banner[rotation=13] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_banner[rotation=14] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_banner[rotation=15] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_banner[rotation=1] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_banner[rotation=2] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_banner[rotation=3] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_banner[rotation=4] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_banner[rotation=5] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_banner[rotation=6] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_banner[rotation=7] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_banner[rotation=8] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_banner[rotation=9] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_banner[rotation=10] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_banner[rotation=11] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_banner[rotation=12] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_banner[rotation=13] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_banner[rotation=14] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_banner[rotation=15] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_banner[rotation=1] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_banner[rotation=2] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_banner[rotation=3] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_banner[rotation=4] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_banner[rotation=5] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_banner[rotation=6] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_banner[rotation=7] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_banner[rotation=8] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_banner[rotation=9] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_banner[rotation=10] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_banner[rotation=11] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_banner[rotation=12] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_banner[rotation=13] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_banner[rotation=14] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_banner[rotation=15] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_wall_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_wall_banner[facing=south] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_wall_banner[facing=west] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:white_wall_banner[facing=east] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_wall_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_wall_banner[facing=south] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_wall_banner[facing=west] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:orange_wall_banner[facing=east] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_wall_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_wall_banner[facing=south] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_wall_banner[facing=west] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:magenta_wall_banner[facing=east] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_wall_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_wall_banner[facing=south] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_wall_banner[facing=west] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_blue_wall_banner[facing=east] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_wall_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_wall_banner[facing=south] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_wall_banner[facing=west] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:yellow_wall_banner[facing=east] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_wall_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_wall_banner[facing=south] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_wall_banner[facing=west] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:lime_wall_banner[facing=east] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_wall_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_wall_banner[facing=south] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_wall_banner[facing=west] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:pink_wall_banner[facing=east] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_wall_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_wall_banner[facing=south] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_wall_banner[facing=west] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:gray_wall_banner[facing=east] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_wall_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_wall_banner[facing=south] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_wall_banner[facing=west] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:light_gray_wall_banner[facing=east] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_wall_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_wall_banner[facing=south] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_wall_banner[facing=west] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cyan_wall_banner[facing=east] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_wall_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_wall_banner[facing=south] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_wall_banner[facing=west] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:purple_wall_banner[facing=east] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_wall_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_wall_banner[facing=south] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_wall_banner[facing=west] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:blue_wall_banner[facing=east] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_wall_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_wall_banner[facing=south] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_wall_banner[facing=west] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:brown_wall_banner[facing=east] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_wall_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_wall_banner[facing=south] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_wall_banner[facing=west] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:green_wall_banner[facing=east] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_wall_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_wall_banner[facing=south] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_wall_banner[facing=west] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_wall_banner[facing=east] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_wall_banner 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_wall_banner[facing=south] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_wall_banner[facing=west] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:black_wall_banner[facing=east] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:red_sandstone 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:chiseled_red_sandstone 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:cut_red_sandstone 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:red_sandstone_stairs 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=top,shape=straight,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:oak_slab 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_slab[type=top,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_slab[type=bottom,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_slab[type=bottom,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_slab[type=double,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:oak_slab[type=double,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:spruce_slab 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_slab[type=top,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_slab[type=bottom,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_slab[type=bottom,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_slab[type=double,waterlogged=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_slab[type=double,waterlogged=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:birch_slab 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_slab[type=top,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_slab[type=bottom,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_slab[type=bottom,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_slab[type=double,waterlogged=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_slab[type=double,waterlogged=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:jungle_slab 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_slab[type=top,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_slab[type=bottom,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_slab[type=bottom,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_slab[type=double,waterlogged=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_slab[type=double,waterlogged=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:acacia_slab 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_slab[type=top,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_slab[type=bottom,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_slab[type=bottom,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_slab[type=double,waterlogged=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_slab[type=double,waterlogged=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:dark_oak_slab 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_slab[type=top,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_slab[type=bottom,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_slab[type=bottom,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_slab[type=double,waterlogged=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_slab[type=double,waterlogged=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:stone_slab 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_slab[type=top,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_slab[type=bottom,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_slab[type=bottom,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_slab[type=double,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_slab[type=double,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:smooth_stone_slab 158 158 158 255 126 126 126 255 79 79 79 255 63 63 63 255 +minecraft:smooth_stone_slab[type=top,waterlogged=false] 158 158 158 255 126 126 126 255 79 79 79 255 63 63 63 255 +minecraft:smooth_stone_slab[type=bottom,waterlogged=true] 158 158 158 255 126 126 126 255 79 79 79 255 63 63 63 255 +minecraft:smooth_stone_slab[type=bottom,waterlogged=false] 158 158 158 255 126 126 126 255 79 79 79 255 63 63 63 255 +minecraft:smooth_stone_slab[type=double,waterlogged=true] 158 158 158 255 126 126 126 255 79 79 79 255 63 63 63 255 +minecraft:smooth_stone_slab[type=double,waterlogged=false] 158 158 158 255 126 126 126 255 79 79 79 255 63 63 63 255 +minecraft:sandstone_slab 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:sandstone_slab[type=top,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:sandstone_slab[type=bottom,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:sandstone_slab[type=bottom,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:sandstone_slab[type=double,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:sandstone_slab[type=double,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:cut_sandstone_slab 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:cut_sandstone_slab[type=top,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:cut_sandstone_slab[type=bottom,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:cut_sandstone_slab[type=bottom,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:cut_sandstone_slab[type=double,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:cut_sandstone_slab[type=double,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:petrified_oak_slab 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:petrified_oak_slab[type=top,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:petrified_oak_slab[type=bottom,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:petrified_oak_slab[type=bottom,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:petrified_oak_slab[type=double,waterlogged=true] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:petrified_oak_slab[type=double,waterlogged=false] 162 130 78 255 129 104 62 255 81 65 39 255 64 52 31 255 +minecraft:cobblestone_slab 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_slab[type=top,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_slab[type=bottom,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_slab[type=bottom,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_slab[type=double,waterlogged=true] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:cobblestone_slab[type=double,waterlogged=false] 127 127 127 255 101 101 101 255 63 63 63 255 50 50 50 255 +minecraft:brick_slab 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_slab[type=top,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_slab[type=bottom,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_slab[type=bottom,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_slab[type=double,waterlogged=true] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_slab[type=double,waterlogged=false] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:stone_brick_slab 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_slab[type=top,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_slab[type=bottom,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_slab[type=bottom,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_slab[type=double,waterlogged=true] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_slab[type=double,waterlogged=false] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:nether_brick_slab 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_slab[type=top,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_slab[type=bottom,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_slab[type=bottom,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_slab[type=double,waterlogged=true] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_slab[type=double,waterlogged=false] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:quartz_slab 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_slab[type=top,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_slab[type=bottom,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_slab[type=bottom,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_slab[type=double,waterlogged=true] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:quartz_slab[type=double,waterlogged=false] 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:red_sandstone_slab 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:red_sandstone_slab[type=top,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:red_sandstone_slab[type=bottom,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:red_sandstone_slab[type=bottom,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:red_sandstone_slab[type=double,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:red_sandstone_slab[type=double,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:cut_red_sandstone_slab 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:cut_red_sandstone_slab[type=top,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:cut_red_sandstone_slab[type=bottom,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:cut_red_sandstone_slab[type=bottom,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:cut_red_sandstone_slab[type=double,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:cut_red_sandstone_slab[type=double,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:purpur_slab 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_slab[type=top,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_slab[type=bottom,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_slab[type=bottom,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_slab[type=double,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_slab[type=double,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:smooth_stone 159 159 159 255 127 127 127 255 79 79 79 255 63 63 63 255 +minecraft:smooth_sandstone 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_quartz 235 229 222 255 188 183 177 255 117 114 111 255 94 91 88 255 +minecraft:smooth_red_sandstone 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:spruce_fence_gate 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=north,in_wall=true,open=true,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=north,in_wall=true,open=false,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=north,in_wall=true,open=false,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=north,in_wall=false,open=true,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=north,in_wall=false,open=true,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=north,in_wall=false,open=false,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=north,in_wall=false,open=false,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=south,in_wall=true,open=true,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=south,in_wall=true,open=true,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=south,in_wall=true,open=false,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=south,in_wall=true,open=false,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=south,in_wall=false,open=true,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=south,in_wall=false,open=true,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=south,in_wall=false,open=false,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=south,in_wall=false,open=false,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=west,in_wall=true,open=true,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=west,in_wall=true,open=true,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=west,in_wall=true,open=false,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=west,in_wall=true,open=false,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=west,in_wall=false,open=true,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=west,in_wall=false,open=true,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=west,in_wall=false,open=false,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=west,in_wall=false,open=false,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=east,in_wall=true,open=true,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=east,in_wall=true,open=true,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=east,in_wall=true,open=false,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=east,in_wall=true,open=false,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=east,in_wall=false,open=true,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=east,in_wall=false,open=true,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=east,in_wall=false,open=false,powered=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence_gate[facing=east,in_wall=false,open=false,powered=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:birch_fence_gate 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=north,in_wall=true,open=true,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=north,in_wall=true,open=false,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=north,in_wall=true,open=false,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=north,in_wall=false,open=true,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=north,in_wall=false,open=true,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=north,in_wall=false,open=false,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=north,in_wall=false,open=false,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=south,in_wall=true,open=true,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=south,in_wall=true,open=true,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=south,in_wall=true,open=false,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=south,in_wall=true,open=false,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=south,in_wall=false,open=true,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=south,in_wall=false,open=true,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=south,in_wall=false,open=false,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=south,in_wall=false,open=false,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=west,in_wall=true,open=true,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=west,in_wall=true,open=true,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=west,in_wall=true,open=false,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=west,in_wall=true,open=false,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=west,in_wall=false,open=true,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=west,in_wall=false,open=true,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=west,in_wall=false,open=false,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=west,in_wall=false,open=false,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=east,in_wall=true,open=true,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=east,in_wall=true,open=true,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=east,in_wall=true,open=false,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=east,in_wall=true,open=false,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=east,in_wall=false,open=true,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=east,in_wall=false,open=true,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=east,in_wall=false,open=false,powered=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence_gate[facing=east,in_wall=false,open=false,powered=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:jungle_fence_gate 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=north,in_wall=true,open=true,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=north,in_wall=true,open=false,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=north,in_wall=true,open=false,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=north,in_wall=false,open=true,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=north,in_wall=false,open=true,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=north,in_wall=false,open=false,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=north,in_wall=false,open=false,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=south,in_wall=true,open=true,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=south,in_wall=true,open=true,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=south,in_wall=true,open=false,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=south,in_wall=true,open=false,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=south,in_wall=false,open=true,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=south,in_wall=false,open=true,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=south,in_wall=false,open=false,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=south,in_wall=false,open=false,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=west,in_wall=true,open=true,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=west,in_wall=true,open=true,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=west,in_wall=true,open=false,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=west,in_wall=true,open=false,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=west,in_wall=false,open=true,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=west,in_wall=false,open=true,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=west,in_wall=false,open=false,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=west,in_wall=false,open=false,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=east,in_wall=true,open=true,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=east,in_wall=true,open=true,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=east,in_wall=true,open=false,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=east,in_wall=true,open=false,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=east,in_wall=false,open=true,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=east,in_wall=false,open=true,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=east,in_wall=false,open=false,powered=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence_gate[facing=east,in_wall=false,open=false,powered=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:acacia_fence_gate 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=north,in_wall=true,open=true,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=north,in_wall=true,open=false,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=north,in_wall=true,open=false,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=north,in_wall=false,open=true,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=north,in_wall=false,open=true,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=north,in_wall=false,open=false,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=north,in_wall=false,open=false,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=south,in_wall=true,open=true,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=south,in_wall=true,open=true,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=south,in_wall=true,open=false,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=south,in_wall=true,open=false,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=south,in_wall=false,open=true,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=south,in_wall=false,open=true,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=south,in_wall=false,open=false,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=south,in_wall=false,open=false,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=west,in_wall=true,open=true,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=west,in_wall=true,open=true,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=west,in_wall=true,open=false,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=west,in_wall=true,open=false,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=west,in_wall=false,open=true,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=west,in_wall=false,open=true,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=west,in_wall=false,open=false,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=west,in_wall=false,open=false,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=east,in_wall=true,open=true,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=east,in_wall=true,open=true,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=east,in_wall=true,open=false,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=east,in_wall=true,open=false,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=east,in_wall=false,open=true,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=east,in_wall=false,open=true,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=east,in_wall=false,open=false,powered=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence_gate[facing=east,in_wall=false,open=false,powered=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:dark_oak_fence_gate 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=north,in_wall=true,open=true,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=north,in_wall=true,open=false,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=north,in_wall=true,open=false,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=north,in_wall=false,open=true,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=north,in_wall=false,open=true,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=north,in_wall=false,open=false,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=north,in_wall=false,open=false,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=south,in_wall=true,open=true,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=south,in_wall=true,open=true,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=south,in_wall=true,open=false,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=south,in_wall=true,open=false,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=south,in_wall=false,open=true,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=south,in_wall=false,open=true,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=south,in_wall=false,open=false,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=south,in_wall=false,open=false,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=west,in_wall=true,open=true,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=west,in_wall=true,open=true,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=west,in_wall=true,open=false,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=west,in_wall=true,open=false,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=west,in_wall=false,open=true,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=west,in_wall=false,open=true,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=west,in_wall=false,open=false,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=west,in_wall=false,open=false,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=east,in_wall=true,open=true,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=east,in_wall=true,open=true,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=east,in_wall=true,open=false,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=east,in_wall=true,open=false,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=east,in_wall=false,open=true,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=east,in_wall=false,open=true,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=east,in_wall=false,open=false,powered=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence_gate[facing=east,in_wall=false,open=false,powered=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:spruce_fence 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=true,north=true,south=true,waterlogged=true,west=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=true,north=true,south=true,waterlogged=false,west=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=true,north=true,south=true,waterlogged=false,west=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=true,north=true,south=false,waterlogged=true,west=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=true,north=true,south=false,waterlogged=true,west=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=true,north=true,south=false,waterlogged=false,west=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=true,north=true,south=false,waterlogged=false,west=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=true,north=false,south=true,waterlogged=true,west=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=true,north=false,south=true,waterlogged=true,west=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=true,north=false,south=true,waterlogged=false,west=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=true,north=false,south=true,waterlogged=false,west=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=true,north=false,south=false,waterlogged=true,west=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=true,north=false,south=false,waterlogged=true,west=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=true,north=false,south=false,waterlogged=false,west=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=true,north=false,south=false,waterlogged=false,west=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=false,north=true,south=true,waterlogged=true,west=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=false,north=true,south=true,waterlogged=true,west=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=false,north=true,south=true,waterlogged=false,west=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=false,north=true,south=true,waterlogged=false,west=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=false,north=true,south=false,waterlogged=true,west=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=false,north=true,south=false,waterlogged=true,west=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=false,north=true,south=false,waterlogged=false,west=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=false,north=true,south=false,waterlogged=false,west=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=false,north=false,south=true,waterlogged=true,west=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=false,north=false,south=true,waterlogged=true,west=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=false,north=false,south=true,waterlogged=false,west=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=false,north=false,south=true,waterlogged=false,west=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=false,north=false,south=false,waterlogged=true,west=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=false,north=false,south=false,waterlogged=true,west=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=false,north=false,south=false,waterlogged=false,west=true] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:spruce_fence[east=false,north=false,south=false,waterlogged=false,west=false] 114 84 48 255 91 67 38 255 57 42 24 255 45 33 19 255 +minecraft:birch_fence 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=true,north=true,south=true,waterlogged=true,west=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=true,north=true,south=true,waterlogged=false,west=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=true,north=true,south=true,waterlogged=false,west=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=true,north=true,south=false,waterlogged=true,west=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=true,north=true,south=false,waterlogged=true,west=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=true,north=true,south=false,waterlogged=false,west=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=true,north=true,south=false,waterlogged=false,west=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=true,north=false,south=true,waterlogged=true,west=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=true,north=false,south=true,waterlogged=true,west=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=true,north=false,south=true,waterlogged=false,west=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=true,north=false,south=true,waterlogged=false,west=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=true,north=false,south=false,waterlogged=true,west=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=true,north=false,south=false,waterlogged=true,west=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=true,north=false,south=false,waterlogged=false,west=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=true,north=false,south=false,waterlogged=false,west=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=false,north=true,south=true,waterlogged=true,west=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=false,north=true,south=true,waterlogged=true,west=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=false,north=true,south=true,waterlogged=false,west=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=false,north=true,south=true,waterlogged=false,west=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=false,north=true,south=false,waterlogged=true,west=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=false,north=true,south=false,waterlogged=true,west=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=false,north=true,south=false,waterlogged=false,west=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=false,north=true,south=false,waterlogged=false,west=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=false,north=false,south=true,waterlogged=true,west=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=false,north=false,south=true,waterlogged=true,west=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=false,north=false,south=true,waterlogged=false,west=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=false,north=false,south=true,waterlogged=false,west=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=false,north=false,south=false,waterlogged=true,west=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=false,north=false,south=false,waterlogged=true,west=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=false,north=false,south=false,waterlogged=false,west=true] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:birch_fence[east=false,north=false,south=false,waterlogged=false,west=false] 192 175 121 255 153 140 96 255 96 87 60 255 76 70 48 255 +minecraft:jungle_fence 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=true,north=true,south=true,waterlogged=true,west=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=true,north=true,south=true,waterlogged=false,west=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=true,north=true,south=true,waterlogged=false,west=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=true,north=true,south=false,waterlogged=true,west=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=true,north=true,south=false,waterlogged=true,west=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=true,north=true,south=false,waterlogged=false,west=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=true,north=true,south=false,waterlogged=false,west=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=true,north=false,south=true,waterlogged=true,west=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=true,north=false,south=true,waterlogged=true,west=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=true,north=false,south=true,waterlogged=false,west=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=true,north=false,south=true,waterlogged=false,west=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=true,north=false,south=false,waterlogged=true,west=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=true,north=false,south=false,waterlogged=true,west=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=true,north=false,south=false,waterlogged=false,west=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=true,north=false,south=false,waterlogged=false,west=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=false,north=true,south=true,waterlogged=true,west=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=false,north=true,south=true,waterlogged=true,west=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=false,north=true,south=true,waterlogged=false,west=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=false,north=true,south=true,waterlogged=false,west=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=false,north=true,south=false,waterlogged=true,west=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=false,north=true,south=false,waterlogged=true,west=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=false,north=true,south=false,waterlogged=false,west=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=false,north=true,south=false,waterlogged=false,west=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=false,north=false,south=true,waterlogged=true,west=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=false,north=false,south=true,waterlogged=true,west=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=false,north=false,south=true,waterlogged=false,west=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=false,north=false,south=true,waterlogged=false,west=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=false,north=false,south=false,waterlogged=true,west=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=false,north=false,south=false,waterlogged=true,west=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=false,north=false,south=false,waterlogged=false,west=true] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:jungle_fence[east=false,north=false,south=false,waterlogged=false,west=false] 160 115 80 255 128 92 64 255 80 57 40 255 64 46 32 255 +minecraft:acacia_fence 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=true,north=true,south=true,waterlogged=true,west=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=true,north=true,south=true,waterlogged=false,west=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=true,north=true,south=true,waterlogged=false,west=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=true,north=true,south=false,waterlogged=true,west=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=true,north=true,south=false,waterlogged=true,west=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=true,north=true,south=false,waterlogged=false,west=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=true,north=true,south=false,waterlogged=false,west=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=true,north=false,south=true,waterlogged=true,west=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=true,north=false,south=true,waterlogged=true,west=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=true,north=false,south=true,waterlogged=false,west=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=true,north=false,south=true,waterlogged=false,west=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=true,north=false,south=false,waterlogged=true,west=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=true,north=false,south=false,waterlogged=true,west=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=true,north=false,south=false,waterlogged=false,west=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=true,north=false,south=false,waterlogged=false,west=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=false,north=true,south=true,waterlogged=true,west=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=false,north=true,south=true,waterlogged=true,west=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=false,north=true,south=true,waterlogged=false,west=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=false,north=true,south=true,waterlogged=false,west=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=false,north=true,south=false,waterlogged=true,west=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=false,north=true,south=false,waterlogged=true,west=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=false,north=true,south=false,waterlogged=false,west=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=false,north=true,south=false,waterlogged=false,west=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=false,north=false,south=true,waterlogged=true,west=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=false,north=false,south=true,waterlogged=true,west=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=false,north=false,south=true,waterlogged=false,west=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=false,north=false,south=true,waterlogged=false,west=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=false,north=false,south=false,waterlogged=true,west=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=false,north=false,south=false,waterlogged=true,west=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=false,north=false,south=false,waterlogged=false,west=true] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:acacia_fence[east=false,north=false,south=false,waterlogged=false,west=false] 168 90 50 255 134 72 40 255 84 45 25 255 67 36 20 255 +minecraft:dark_oak_fence 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=true,north=true,south=true,waterlogged=true,west=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=true,north=true,south=true,waterlogged=false,west=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=true,north=true,south=true,waterlogged=false,west=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=true,north=true,south=false,waterlogged=true,west=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=true,north=true,south=false,waterlogged=true,west=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=true,north=true,south=false,waterlogged=false,west=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=true,north=true,south=false,waterlogged=false,west=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=true,north=false,south=true,waterlogged=true,west=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=true,north=false,south=true,waterlogged=true,west=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=true,north=false,south=true,waterlogged=false,west=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=true,north=false,south=true,waterlogged=false,west=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=true,north=false,south=false,waterlogged=true,west=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=true,north=false,south=false,waterlogged=true,west=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=true,north=false,south=false,waterlogged=false,west=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=true,north=false,south=false,waterlogged=false,west=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=false,north=true,south=true,waterlogged=true,west=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=false,north=true,south=true,waterlogged=true,west=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=false,north=true,south=true,waterlogged=false,west=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=false,north=true,south=true,waterlogged=false,west=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=false,north=true,south=false,waterlogged=true,west=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=false,north=true,south=false,waterlogged=true,west=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=false,north=true,south=false,waterlogged=false,west=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=false,north=true,south=false,waterlogged=false,west=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=false,north=false,south=true,waterlogged=true,west=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=false,north=false,south=true,waterlogged=true,west=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=false,north=false,south=true,waterlogged=false,west=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=false,north=false,south=true,waterlogged=false,west=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=false,north=false,south=false,waterlogged=true,west=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=false,north=false,south=false,waterlogged=true,west=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=false,north=false,south=false,waterlogged=false,west=true] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:dark_oak_fence[east=false,north=false,south=false,waterlogged=false,west=false] 66 43 20 255 52 34 16 255 33 21 10 255 26 17 8 255 +minecraft:spruce_door 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=upper,hinge=left,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=upper,hinge=left,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=upper,hinge=left,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=upper,hinge=right,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=upper,hinge=right,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=upper,hinge=right,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=upper,hinge=right,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=lower,hinge=left,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=lower,hinge=left,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=lower,hinge=left,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=lower,hinge=left,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=lower,hinge=right,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=lower,hinge=right,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=lower,hinge=right,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=north,half=lower,hinge=right,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=upper,hinge=left,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=upper,hinge=left,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=upper,hinge=left,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=upper,hinge=left,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=upper,hinge=right,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=upper,hinge=right,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=upper,hinge=right,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=upper,hinge=right,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=lower,hinge=left,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=lower,hinge=left,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=lower,hinge=left,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=lower,hinge=left,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=lower,hinge=right,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=lower,hinge=right,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=lower,hinge=right,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=south,half=lower,hinge=right,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=upper,hinge=left,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=upper,hinge=left,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=upper,hinge=left,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=upper,hinge=left,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=upper,hinge=right,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=upper,hinge=right,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=upper,hinge=right,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=upper,hinge=right,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=lower,hinge=left,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=lower,hinge=left,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=lower,hinge=left,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=lower,hinge=left,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=lower,hinge=right,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=lower,hinge=right,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=lower,hinge=right,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=west,half=lower,hinge=right,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=upper,hinge=left,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=upper,hinge=left,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=upper,hinge=left,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=upper,hinge=left,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=upper,hinge=right,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=upper,hinge=right,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=upper,hinge=right,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=upper,hinge=right,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=lower,hinge=left,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=lower,hinge=left,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=lower,hinge=left,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=lower,hinge=left,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=lower,hinge=right,open=true,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=lower,hinge=right,open=true,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=lower,hinge=right,open=false,powered=true] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:spruce_door[facing=east,half=lower,hinge=right,open=false,powered=false] 106 80 48 255 84 64 38 255 53 40 24 255 42 32 19 255 +minecraft:birch_door 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=upper,hinge=left,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=upper,hinge=left,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=upper,hinge=left,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=upper,hinge=right,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=upper,hinge=right,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=upper,hinge=right,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=upper,hinge=right,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=lower,hinge=left,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=lower,hinge=left,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=lower,hinge=left,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=lower,hinge=left,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=lower,hinge=right,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=lower,hinge=right,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=lower,hinge=right,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=north,half=lower,hinge=right,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=upper,hinge=left,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=upper,hinge=left,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=upper,hinge=left,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=upper,hinge=left,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=upper,hinge=right,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=upper,hinge=right,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=upper,hinge=right,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=upper,hinge=right,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=lower,hinge=left,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=lower,hinge=left,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=lower,hinge=left,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=lower,hinge=left,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=lower,hinge=right,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=lower,hinge=right,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=lower,hinge=right,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=south,half=lower,hinge=right,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=upper,hinge=left,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=upper,hinge=left,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=upper,hinge=left,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=upper,hinge=left,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=upper,hinge=right,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=upper,hinge=right,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=upper,hinge=right,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=upper,hinge=right,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=lower,hinge=left,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=lower,hinge=left,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=lower,hinge=left,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=lower,hinge=left,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=lower,hinge=right,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=lower,hinge=right,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=lower,hinge=right,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=west,half=lower,hinge=right,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=upper,hinge=left,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=upper,hinge=left,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=upper,hinge=left,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=upper,hinge=left,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=upper,hinge=right,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=upper,hinge=right,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=upper,hinge=right,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=upper,hinge=right,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=lower,hinge=left,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=lower,hinge=left,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=lower,hinge=left,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=lower,hinge=left,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=lower,hinge=right,open=true,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=lower,hinge=right,open=true,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=lower,hinge=right,open=false,powered=true] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:birch_door[facing=east,half=lower,hinge=right,open=false,powered=false] 220 209 176 255 176 167 140 255 110 104 88 255 88 83 70 255 +minecraft:jungle_door 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=upper,hinge=left,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=upper,hinge=left,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=upper,hinge=left,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=upper,hinge=right,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=upper,hinge=right,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=upper,hinge=right,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=upper,hinge=right,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=lower,hinge=left,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=lower,hinge=left,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=lower,hinge=left,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=lower,hinge=left,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=lower,hinge=right,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=lower,hinge=right,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=lower,hinge=right,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=north,half=lower,hinge=right,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=upper,hinge=left,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=upper,hinge=left,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=upper,hinge=left,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=upper,hinge=left,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=upper,hinge=right,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=upper,hinge=right,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=upper,hinge=right,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=upper,hinge=right,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=lower,hinge=left,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=lower,hinge=left,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=lower,hinge=left,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=lower,hinge=left,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=lower,hinge=right,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=lower,hinge=right,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=lower,hinge=right,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=south,half=lower,hinge=right,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=upper,hinge=left,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=upper,hinge=left,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=upper,hinge=left,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=upper,hinge=left,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=upper,hinge=right,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=upper,hinge=right,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=upper,hinge=right,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=upper,hinge=right,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=lower,hinge=left,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=lower,hinge=left,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=lower,hinge=left,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=lower,hinge=left,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=lower,hinge=right,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=lower,hinge=right,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=lower,hinge=right,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=west,half=lower,hinge=right,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=upper,hinge=left,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=upper,hinge=left,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=upper,hinge=left,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=upper,hinge=left,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=upper,hinge=right,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=upper,hinge=right,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=upper,hinge=right,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=upper,hinge=right,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=lower,hinge=left,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=lower,hinge=left,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=lower,hinge=left,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=lower,hinge=left,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=lower,hinge=right,open=true,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=lower,hinge=right,open=true,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=lower,hinge=right,open=false,powered=true] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:jungle_door[facing=east,half=lower,hinge=right,open=false,powered=false] 163 119 84 225 130 95 67 225 81 59 42 225 65 47 33 225 +minecraft:acacia_door 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=upper,hinge=left,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=upper,hinge=left,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=upper,hinge=left,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=upper,hinge=right,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=upper,hinge=right,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=upper,hinge=right,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=upper,hinge=right,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=lower,hinge=left,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=lower,hinge=left,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=lower,hinge=left,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=lower,hinge=left,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=lower,hinge=right,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=lower,hinge=right,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=lower,hinge=right,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=north,half=lower,hinge=right,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=upper,hinge=left,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=upper,hinge=left,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=upper,hinge=left,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=upper,hinge=left,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=upper,hinge=right,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=upper,hinge=right,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=upper,hinge=right,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=upper,hinge=right,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=lower,hinge=left,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=lower,hinge=left,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=lower,hinge=left,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=lower,hinge=left,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=lower,hinge=right,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=lower,hinge=right,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=lower,hinge=right,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=south,half=lower,hinge=right,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=upper,hinge=left,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=upper,hinge=left,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=upper,hinge=left,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=upper,hinge=left,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=upper,hinge=right,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=upper,hinge=right,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=upper,hinge=right,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=upper,hinge=right,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=lower,hinge=left,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=lower,hinge=left,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=lower,hinge=left,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=lower,hinge=left,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=lower,hinge=right,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=lower,hinge=right,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=lower,hinge=right,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=west,half=lower,hinge=right,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=upper,hinge=left,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=upper,hinge=left,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=upper,hinge=left,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=upper,hinge=left,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=upper,hinge=right,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=upper,hinge=right,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=upper,hinge=right,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=upper,hinge=right,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=lower,hinge=left,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=lower,hinge=left,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=lower,hinge=left,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=lower,hinge=left,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=lower,hinge=right,open=true,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=lower,hinge=right,open=true,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=lower,hinge=right,open=false,powered=true] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:acacia_door[facing=east,half=lower,hinge=right,open=false,powered=false] 167 95 60 183 133 76 48 183 83 47 30 183 66 38 24 183 +minecraft:dark_oak_door 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=upper,hinge=left,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=upper,hinge=left,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=upper,hinge=left,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=upper,hinge=right,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=upper,hinge=right,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=upper,hinge=right,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=upper,hinge=right,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=lower,hinge=left,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=lower,hinge=left,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=lower,hinge=left,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=lower,hinge=left,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=lower,hinge=right,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=lower,hinge=right,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=lower,hinge=right,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=north,half=lower,hinge=right,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=upper,hinge=left,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=upper,hinge=left,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=upper,hinge=left,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=upper,hinge=left,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=upper,hinge=right,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=upper,hinge=right,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=upper,hinge=right,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=upper,hinge=right,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=lower,hinge=left,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=lower,hinge=left,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=lower,hinge=left,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=lower,hinge=left,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=lower,hinge=right,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=lower,hinge=right,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=lower,hinge=right,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=south,half=lower,hinge=right,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=upper,hinge=left,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=upper,hinge=left,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=upper,hinge=left,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=upper,hinge=left,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=upper,hinge=right,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=upper,hinge=right,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=upper,hinge=right,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=upper,hinge=right,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=lower,hinge=left,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=lower,hinge=left,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=lower,hinge=left,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=lower,hinge=left,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=lower,hinge=right,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=lower,hinge=right,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=lower,hinge=right,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=west,half=lower,hinge=right,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=upper,hinge=left,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=upper,hinge=left,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=upper,hinge=left,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=upper,hinge=left,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=upper,hinge=right,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=upper,hinge=right,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=upper,hinge=right,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=upper,hinge=right,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=lower,hinge=left,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=lower,hinge=left,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=lower,hinge=left,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=lower,hinge=left,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=lower,hinge=right,open=true,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=lower,hinge=right,open=true,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=lower,hinge=right,open=false,powered=true] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:dark_oak_door[facing=east,half=lower,hinge=right,open=false,powered=false] 76 51 25 255 60 40 20 255 38 25 12 255 30 20 10 255 +minecraft:end_rod 205 196 185 65 164 156 148 65 102 98 92 65 82 78 74 65 +minecraft:end_rod[facing=east] 205 196 185 65 164 156 148 65 102 98 92 65 82 78 74 65 +minecraft:end_rod[facing=south] 205 196 185 65 164 156 148 65 102 98 92 65 82 78 74 65 +minecraft:end_rod[facing=west] 205 196 185 65 164 156 148 65 102 98 92 65 82 78 74 65 +minecraft:end_rod[facing=up] 205 196 185 65 164 156 148 65 102 98 92 65 82 78 74 65 +minecraft:end_rod[facing=down] 205 196 185 65 164 156 148 65 102 98 92 65 82 78 74 65 +minecraft:chorus_plant 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=true,north=true,south=true,up=true,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=true,north=true,south=true,up=false,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=true,north=true,south=true,up=false,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=true,north=true,south=false,up=true,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=true,north=true,south=false,up=true,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=true,north=true,south=false,up=false,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=true,north=true,south=false,up=false,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=true,north=false,south=true,up=true,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=true,north=false,south=true,up=true,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=true,north=false,south=true,up=false,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=true,north=false,south=true,up=false,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=true,north=false,south=false,up=true,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=true,north=false,south=false,up=true,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=true,north=false,south=false,up=false,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=true,north=false,south=false,up=false,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=false,north=true,south=true,up=true,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=false,north=true,south=true,up=true,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=false,north=true,south=true,up=false,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=false,north=true,south=true,up=false,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=false,north=true,south=false,up=true,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=false,north=true,south=false,up=true,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=false,north=true,south=false,up=false,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=false,north=true,south=false,up=false,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=false,north=false,south=true,up=true,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=false,north=false,south=true,up=true,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=false,north=false,south=true,up=false,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=false,north=false,south=true,up=false,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=false,north=false,south=false,up=true,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=false,north=false,south=false,up=true,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=false,north=false,south=false,up=false,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=true,east=false,north=false,south=false,up=false,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=true,north=true,south=true,up=true,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=true,north=true,south=true,up=true,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=true,north=true,south=true,up=false,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=true,north=true,south=true,up=false,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=true,north=true,south=false,up=true,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=true,north=true,south=false,up=true,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=true,north=true,south=false,up=false,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=true,north=true,south=false,up=false,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=true,north=false,south=true,up=true,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=true,north=false,south=true,up=true,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=true,north=false,south=true,up=false,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=true,north=false,south=true,up=false,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=true,north=false,south=false,up=true,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=true,north=false,south=false,up=true,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=true,north=false,south=false,up=false,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=true,north=false,south=false,up=false,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=false,north=true,south=true,up=true,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=false,north=true,south=true,up=true,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=false,north=true,south=true,up=false,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=false,north=true,south=true,up=false,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=false,north=true,south=false,up=true,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=false,north=true,south=false,up=true,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=false,north=true,south=false,up=false,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=false,north=true,south=false,up=false,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=false,north=false,south=true,up=true,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=false,north=false,south=true,up=true,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=false,north=false,south=true,up=false,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=false,north=false,south=true,up=false,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=false,north=false,south=false,up=true,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=false,north=false,south=false,up=true,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=false,north=false,south=false,up=false,west=true] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_plant[down=false,east=false,north=false,south=false,up=false,west=false] 93 57 93 255 74 45 74 255 46 28 46 255 37 22 37 255 +minecraft:chorus_flower 151 120 151 255 120 96 120 255 75 60 75 255 60 48 60 255 +minecraft:chorus_flower[age=1] 151 120 151 255 120 96 120 255 75 60 75 255 60 48 60 255 +minecraft:chorus_flower[age=2] 151 120 151 255 120 96 120 255 75 60 75 255 60 48 60 255 +minecraft:chorus_flower[age=3] 151 120 151 255 120 96 120 255 75 60 75 255 60 48 60 255 +minecraft:chorus_flower[age=4] 151 120 151 255 120 96 120 255 75 60 75 255 60 48 60 255 +minecraft:chorus_flower[age=5] 96 61 94 255 76 48 75 255 48 30 47 255 38 24 37 255 +minecraft:purpur_block 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_pillar 171 129 171 255 136 103 136 255 85 64 85 255 68 51 68 255 +minecraft:purpur_pillar[axis=y] 171 128 171 255 136 102 136 255 85 64 85 255 68 51 68 255 +minecraft:purpur_pillar[axis=z] 171 129 171 255 136 103 136 255 85 64 85 255 68 51 68 255 +minecraft:purpur_stairs 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=top,shape=straight,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=top,shape=straight,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=top,shape=straight,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=top,shape=straight,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=top,shape=straight,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=top,shape=straight,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=top,shape=straight,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:purpur_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 169 125 169 255 135 100 135 255 84 62 84 255 67 50 67 255 +minecraft:end_stone_bricks 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:beetroots 65 137 41 14 52 109 32 14 32 68 20 14 26 54 16 14 +minecraft:beetroots[age=1] 66 138 41 29 52 110 32 29 33 69 20 29 26 55 16 29 +minecraft:beetroots[age=2] 69 130 39 87 55 104 31 87 34 65 19 87 27 52 15 87 +minecraft:beetroots[age=3] 93 91 30 115 74 72 24 115 46 45 15 115 37 36 12 115 +minecraft:dirt_path 148 121 65 255 118 96 52 255 74 60 32 255 59 48 26 255 +minecraft:end_gateway 117 90 156 255 93 72 124 255 58 45 78 255 46 36 62 255 +minecraft:repeating_command_block 127 109 166 255 101 87 132 255 63 54 83 255 50 43 66 255 +minecraft:repeating_command_block[conditional=true,facing=east] 129 111 176 255 103 88 140 255 64 55 88 255 51 44 70 255 +minecraft:repeating_command_block[conditional=true,facing=south] 128 110 170 255 102 88 136 255 64 55 85 255 51 44 68 255 +minecraft:repeating_command_block[conditional=true,facing=west] 128 110 170 255 102 88 136 255 64 55 85 255 51 44 68 255 +minecraft:repeating_command_block[conditional=true,facing=up] 128 110 170 255 102 88 136 255 64 55 85 255 51 44 68 255 +minecraft:repeating_command_block[conditional=true,facing=down] 128 110 170 255 102 88 136 255 64 55 85 255 51 44 68 255 +minecraft:repeating_command_block[conditional=false,facing=north] 127 109 166 255 101 87 132 255 63 54 83 255 50 43 66 255 +minecraft:repeating_command_block[conditional=false,facing=east] 129 111 176 255 103 88 140 255 64 55 88 255 51 44 70 255 +minecraft:repeating_command_block[conditional=false,facing=south] 127 109 171 255 101 87 136 255 63 54 85 255 50 43 68 255 +minecraft:repeating_command_block[conditional=false,facing=west] 127 109 171 255 101 87 136 255 63 54 85 255 50 43 68 255 +minecraft:repeating_command_block[conditional=false,facing=up] 127 109 171 255 101 87 136 255 63 54 85 255 50 43 68 255 +minecraft:repeating_command_block[conditional=false,facing=down] 127 109 171 255 101 87 136 255 63 54 85 255 50 43 68 255 +minecraft:chain_command_block 129 156 144 255 103 124 115 255 64 78 72 255 51 62 57 255 +minecraft:chain_command_block[conditional=true,facing=east] 132 165 150 255 105 132 120 255 66 82 75 255 52 66 60 255 +minecraft:chain_command_block[conditional=true,facing=south] 131 161 147 255 104 128 117 255 65 80 73 255 52 64 58 255 +minecraft:chain_command_block[conditional=true,facing=west] 131 161 147 255 104 128 117 255 65 80 73 255 52 64 58 255 +minecraft:chain_command_block[conditional=true,facing=up] 131 161 147 255 104 128 117 255 65 80 73 255 52 64 58 255 +minecraft:chain_command_block[conditional=true,facing=down] 131 161 147 255 104 128 117 255 65 80 73 255 52 64 58 255 +minecraft:chain_command_block[conditional=false,facing=north] 129 156 144 255 103 124 115 255 64 78 72 255 51 62 57 255 +minecraft:chain_command_block[conditional=false,facing=east] 132 165 150 255 105 132 120 255 66 82 75 255 52 66 60 255 +minecraft:chain_command_block[conditional=false,facing=south] 129 161 147 255 103 128 117 255 64 80 73 255 51 64 58 255 +minecraft:chain_command_block[conditional=false,facing=west] 129 161 147 255 103 128 117 255 64 80 73 255 51 64 58 255 +minecraft:chain_command_block[conditional=false,facing=up] 129 161 147 255 103 128 117 255 64 80 73 255 51 64 58 255 +minecraft:chain_command_block[conditional=false,facing=down] 129 161 147 255 103 128 117 255 64 80 73 255 51 64 58 255 +minecraft:frosted_ice 140 181 252 190 112 144 201 190 70 90 126 190 56 72 100 190 +minecraft:frosted_ice[age=1] 139 180 252 193 111 144 201 193 69 90 126 193 55 72 100 193 +minecraft:frosted_ice[age=2] 137 179 252 199 109 143 201 199 68 89 126 199 54 71 100 199 +minecraft:frosted_ice[age=3] 134 177 252 212 107 141 201 212 67 88 126 212 53 70 100 212 +minecraft:magma_block 141 62 30 255 112 49 24 255 70 31 15 255 56 24 12 255 +minecraft:nether_wart_block 114 2 2 255 91 1 1 255 57 1 1 255 45 0 0 255 +minecraft:red_nether_bricks 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:bone_block 229 225 207 255 183 180 165 255 114 112 103 255 91 90 82 255 +minecraft:bone_block[axis=y] 209 206 179 255 167 164 143 255 104 103 89 255 83 82 71 255 +minecraft:bone_block[axis=z] 229 225 207 255 183 180 165 255 114 112 103 255 91 90 82 255 +minecraft:observer 71 69 69 255 56 55 55 255 35 34 34 255 28 27 27 255 +minecraft:observer[facing=north,powered=false] 71 69 69 255 56 55 55 255 35 34 34 255 28 27 27 255 +minecraft:observer[facing=east,powered=true] 103 103 103 255 82 82 82 255 51 51 51 255 41 41 41 255 +minecraft:observer[facing=east,powered=false] 103 103 103 255 82 82 82 255 51 51 51 255 41 41 41 255 +minecraft:observer[facing=south,powered=true] 98 98 98 255 78 78 78 255 49 49 49 255 39 39 39 255 +minecraft:observer[facing=south,powered=false] 98 98 98 255 78 78 78 255 49 49 49 255 39 39 39 255 +minecraft:observer[facing=west,powered=true] 98 98 98 255 78 78 78 255 49 49 49 255 39 39 39 255 +minecraft:observer[facing=west,powered=false] 98 98 98 255 78 78 78 255 49 49 49 255 39 39 39 255 +minecraft:observer[facing=up,powered=true] 98 98 98 255 78 78 78 255 49 49 49 255 39 39 39 255 +minecraft:observer[facing=up,powered=false] 98 98 98 255 78 78 78 255 49 49 49 255 39 39 39 255 +minecraft:observer[facing=down,powered=true] 98 98 98 255 78 78 78 255 49 49 49 255 39 39 39 255 +minecraft:observer[facing=down,powered=false] 98 98 98 255 78 78 78 255 49 49 49 255 39 39 39 255 +minecraft:shulker_box 121 83 121 255 96 66 96 255 60 41 60 255 48 33 48 255 +minecraft:shulker_box[facing=east] 139 96 139 255 111 76 111 255 69 48 69 255 55 38 55 255 +minecraft:shulker_box[facing=south] 139 97 139 255 111 77 111 255 69 48 69 255 55 38 55 255 +minecraft:shulker_box[facing=west] 139 97 139 255 111 77 111 255 69 48 69 255 55 38 55 255 +minecraft:shulker_box[facing=up] 139 97 139 255 111 77 111 255 69 48 69 255 55 38 55 255 +minecraft:shulker_box[facing=down] 139 97 139 255 111 77 111 255 69 48 69 255 55 38 55 255 +minecraft:white_shulker_box 168 173 174 255 134 138 139 255 84 86 87 255 67 69 69 255 +minecraft:white_shulker_box[facing=east] 215 220 221 255 172 176 176 255 107 110 110 255 86 88 88 255 +minecraft:white_shulker_box[facing=south] 202 207 208 255 161 165 166 255 101 103 104 255 80 82 83 255 +minecraft:white_shulker_box[facing=west] 202 207 208 255 161 165 166 255 101 103 104 255 80 82 83 255 +minecraft:white_shulker_box[facing=up] 202 207 208 255 161 165 166 255 101 103 104 255 80 82 83 255 +minecraft:white_shulker_box[facing=down] 202 207 208 255 161 165 166 255 101 103 104 255 80 82 83 255 +minecraft:orange_shulker_box 165 70 0 255 132 56 0 255 82 35 0 255 66 28 0 255 +minecraft:orange_shulker_box[facing=east] 234 106 8 255 187 84 6 255 117 53 4 255 93 42 3 255 +minecraft:orange_shulker_box[facing=south] 218 97 5 255 174 77 4 255 109 48 2 255 87 38 2 255 +minecraft:orange_shulker_box[facing=west] 218 97 5 255 174 77 4 255 109 48 2 255 87 38 2 255 +minecraft:orange_shulker_box[facing=up] 218 97 5 255 174 77 4 255 109 48 2 255 87 38 2 255 +minecraft:orange_shulker_box[facing=down] 218 97 5 255 174 77 4 255 109 48 2 255 87 38 2 255 +minecraft:magenta_shulker_box 138 38 129 255 110 30 103 255 69 19 64 255 55 15 51 255 +minecraft:magenta_shulker_box[facing=east] 173 54 163 255 138 43 130 255 86 27 81 255 69 21 65 255 +minecraft:magenta_shulker_box[facing=south] 163 48 153 255 130 38 122 255 81 24 76 255 65 19 61 255 +minecraft:magenta_shulker_box[facing=west] 163 48 153 255 130 38 122 255 81 24 76 255 65 19 61 255 +minecraft:magenta_shulker_box[facing=up] 163 48 153 255 130 38 122 255 81 24 76 255 65 19 61 255 +minecraft:magenta_shulker_box[facing=down] 163 48 153 255 130 38 122 255 81 24 76 255 65 19 61 255 +minecraft:light_blue_shulker_box 27 113 166 255 21 90 132 255 13 56 83 255 10 45 66 255 +minecraft:light_blue_shulker_box[facing=east] 49 163 212 255 39 130 169 255 24 81 106 255 19 65 84 255 +minecraft:light_blue_shulker_box[facing=south] 42 150 202 255 33 120 161 255 21 75 101 255 16 60 80 255 +minecraft:light_blue_shulker_box[facing=west] 42 150 202 255 33 120 161 255 21 75 101 255 16 60 80 255 +minecraft:light_blue_shulker_box[facing=up] 42 150 202 255 33 120 161 255 21 75 101 255 16 60 80 255 +minecraft:light_blue_shulker_box[facing=down] 42 150 202 255 33 120 161 255 21 75 101 255 16 60 80 255 +minecraft:yellow_shulker_box 209 149 14 255 167 119 11 255 104 74 7 255 83 59 5 255 +minecraft:yellow_shulker_box[facing=east] 248 188 29 255 198 150 23 255 124 94 14 255 99 75 11 255 +minecraft:yellow_shulker_box[facing=south] 240 179 24 255 192 143 19 255 120 89 12 255 96 71 9 255 +minecraft:yellow_shulker_box[facing=west] 240 179 24 255 192 143 19 255 120 89 12 255 96 71 9 255 +minecraft:yellow_shulker_box[facing=up] 240 179 24 255 192 143 19 255 120 89 12 255 96 71 9 255 +minecraft:yellow_shulker_box[facing=down] 240 179 24 255 192 143 19 255 120 89 12 255 96 71 9 255 +minecraft:lime_shulker_box 61 112 14 255 48 89 11 255 30 56 7 255 24 44 5 255 +minecraft:lime_shulker_box[facing=east] 99 172 23 255 79 137 18 255 49 86 11 255 39 68 9 255 +minecraft:lime_shulker_box[facing=south] 88 156 21 255 70 124 16 255 44 78 10 255 35 62 8 255 +minecraft:lime_shulker_box[facing=west] 88 156 21 255 70 124 16 255 44 78 10 255 35 62 8 255 +minecraft:lime_shulker_box[facing=up] 88 156 21 255 70 124 16 255 44 78 10 255 35 62 8 255 +minecraft:lime_shulker_box[facing=down] 88 156 21 255 70 124 16 255 44 78 10 255 35 62 8 255 +minecraft:pink_shulker_box 177 78 116 255 141 62 92 255 88 39 58 255 70 31 46 255 +minecraft:pink_shulker_box[facing=east] 230 121 157 255 184 96 125 255 115 60 78 255 92 48 62 255 +minecraft:pink_shulker_box[facing=south] 217 109 146 255 173 87 116 255 108 54 73 255 86 43 58 255 +minecraft:pink_shulker_box[facing=west] 217 109 146 255 173 87 116 255 108 54 73 255 86 43 58 255 +minecraft:pink_shulker_box[facing=up] 217 109 146 255 173 87 116 255 108 54 73 255 86 43 58 255 +minecraft:pink_shulker_box[facing=down] 217 109 146 255 173 87 116 255 108 54 73 255 86 43 58 255 +minecraft:gray_shulker_box 36 38 41 255 28 30 32 255 18 19 20 255 14 15 16 255 +minecraft:gray_shulker_box[facing=east] 55 58 62 255 44 46 49 255 27 29 31 255 22 23 24 255 +minecraft:gray_shulker_box[facing=south] 49 52 56 255 39 41 44 255 24 26 28 255 19 20 22 255 +minecraft:gray_shulker_box[facing=west] 49 52 56 255 39 41 44 255 24 26 28 255 19 20 22 255 +minecraft:gray_shulker_box[facing=up] 49 52 56 255 39 41 44 255 24 26 28 255 19 20 22 255 +minecraft:gray_shulker_box[facing=down] 49 52 56 255 39 41 44 255 24 26 28 255 19 20 22 255 +minecraft:light_gray_shulker_box 78 78 71 255 62 62 56 255 39 39 35 255 31 31 28 255 +minecraft:light_gray_shulker_box[facing=east] 124 124 115 255 99 99 92 255 62 62 57 255 49 49 46 255 +minecraft:light_gray_shulker_box[facing=south] 111 111 102 255 88 88 81 255 55 55 51 255 44 44 40 255 +minecraft:light_gray_shulker_box[facing=west] 111 111 102 255 88 88 81 255 55 55 51 255 44 44 40 255 +minecraft:light_gray_shulker_box[facing=up] 111 111 102 255 88 88 81 255 55 55 51 255 44 44 40 255 +minecraft:light_gray_shulker_box[facing=down] 111 111 102 255 88 88 81 255 55 55 51 255 44 44 40 255 +minecraft:cyan_shulker_box 10 82 95 255 8 65 76 255 5 41 47 255 4 32 38 255 +minecraft:cyan_shulker_box[facing=east] 20 121 135 255 16 96 108 255 10 60 67 255 8 48 54 255 +minecraft:cyan_shulker_box[facing=south] 17 110 124 255 13 88 99 255 8 55 62 255 6 44 49 255 +minecraft:cyan_shulker_box[facing=west] 17 110 124 255 13 88 99 255 8 55 62 255 6 44 49 255 +minecraft:cyan_shulker_box[facing=up] 17 110 124 255 13 88 99 255 8 55 62 255 6 44 49 255 +minecraft:cyan_shulker_box[facing=down] 17 110 124 255 13 88 99 255 8 55 62 255 6 44 49 255 +minecraft:purple_shulker_box 75 21 120 255 60 16 96 255 37 10 60 255 30 8 48 255 +minecraft:purple_shulker_box[facing=east] 103 32 156 255 82 25 124 255 51 16 78 255 41 12 62 255 +minecraft:purple_shulker_box[facing=south] 94 28 146 255 75 22 116 255 47 14 73 255 37 11 58 255 +minecraft:purple_shulker_box[facing=west] 94 28 146 255 75 22 116 255 47 14 73 255 37 11 58 255 +minecraft:purple_shulker_box[facing=up] 94 28 146 255 75 22 116 255 47 14 73 255 37 11 58 255 +minecraft:purple_shulker_box[facing=down] 94 28 146 255 75 22 116 255 47 14 73 255 37 11 58 255 +minecraft:blue_shulker_box 26 27 99 255 20 21 79 255 13 13 49 255 10 10 39 255 +minecraft:blue_shulker_box[facing=east] 43 45 140 255 34 36 112 255 21 22 70 255 17 18 56 255 +minecraft:blue_shulker_box[facing=south] 38 40 128 255 30 32 102 255 19 20 64 255 15 16 51 255 +minecraft:blue_shulker_box[facing=west] 38 40 128 255 30 32 102 255 19 20 64 255 15 16 51 255 +minecraft:blue_shulker_box[facing=up] 38 40 128 255 30 32 102 255 19 20 64 255 15 16 51 255 +minecraft:blue_shulker_box[facing=down] 38 40 128 255 30 32 102 255 19 20 64 255 15 16 51 255 +minecraft:brown_shulker_box 74 44 21 255 59 35 16 255 37 22 10 255 29 17 8 255 +minecraft:brown_shulker_box[facing=east] 106 66 35 255 84 52 28 255 53 33 17 255 42 26 14 255 +minecraft:brown_shulker_box[facing=south] 98 60 32 255 78 48 25 255 49 30 16 255 39 24 12 255 +minecraft:brown_shulker_box[facing=west] 98 60 32 255 78 48 25 255 49 30 16 255 39 24 12 255 +minecraft:brown_shulker_box[facing=up] 98 60 32 255 78 48 25 255 49 30 16 255 39 24 12 255 +minecraft:brown_shulker_box[facing=down] 98 60 32 255 78 48 25 255 49 30 16 255 39 24 12 255 +minecraft:green_shulker_box 60 75 30 255 48 60 24 255 30 37 15 255 24 30 12 255 +minecraft:green_shulker_box[facing=east] 79 100 31 255 63 80 24 255 39 50 15 255 31 40 12 255 +minecraft:green_shulker_box[facing=south] 74 94 32 255 59 75 25 255 37 47 16 255 29 37 12 255 +minecraft:green_shulker_box[facing=west] 74 94 32 255 59 75 25 255 37 47 16 255 29 37 12 255 +minecraft:green_shulker_box[facing=up] 74 94 32 255 59 75 25 255 37 47 16 255 29 37 12 255 +minecraft:green_shulker_box[facing=down] 74 94 32 255 59 75 25 255 37 47 16 255 29 37 12 255 +minecraft:red_shulker_box 102 16 16 255 81 12 12 255 51 8 8 255 40 6 6 255 +minecraft:red_shulker_box[facing=east] 140 31 30 255 112 24 24 255 70 15 15 255 56 12 12 255 +minecraft:red_shulker_box[facing=south] 129 26 26 255 103 20 20 255 64 13 13 255 51 10 10 255 +minecraft:red_shulker_box[facing=west] 129 26 26 255 103 20 20 255 64 13 13 255 51 10 10 255 +minecraft:red_shulker_box[facing=up] 129 26 26 255 103 20 20 255 64 13 13 255 51 10 10 255 +minecraft:red_shulker_box[facing=down] 129 26 26 255 103 20 20 255 64 13 13 255 51 10 10 255 +minecraft:black_shulker_box 10 12 16 255 8 9 12 255 5 6 8 255 4 4 6 255 +minecraft:black_shulker_box[facing=east] 25 25 29 255 20 20 23 255 12 12 14 255 10 10 11 255 +minecraft:black_shulker_box[facing=south] 20 21 25 255 16 16 20 255 10 10 12 255 8 8 10 255 +minecraft:black_shulker_box[facing=west] 20 21 25 255 16 16 20 255 10 10 12 255 8 8 10 255 +minecraft:black_shulker_box[facing=up] 20 21 25 255 16 16 20 255 10 10 12 255 8 8 10 255 +minecraft:black_shulker_box[facing=down] 20 21 25 255 16 16 20 255 10 10 12 255 8 8 10 255 +minecraft:white_glazed_terracotta 188 212 202 255 150 169 161 255 94 106 101 255 75 84 80 255 +minecraft:white_glazed_terracotta[facing=south] 188 212 202 255 150 169 161 255 94 106 101 255 75 84 80 255 +minecraft:white_glazed_terracotta[facing=west] 188 212 202 255 150 169 161 255 94 106 101 255 75 84 80 255 +minecraft:white_glazed_terracotta[facing=east] 188 212 202 255 150 169 161 255 94 106 101 255 75 84 80 255 +minecraft:orange_glazed_terracotta 154 147 91 255 123 117 72 255 77 73 45 255 61 58 36 255 +minecraft:orange_glazed_terracotta[facing=south] 154 147 91 255 123 117 72 255 77 73 45 255 61 58 36 255 +minecraft:orange_glazed_terracotta[facing=west] 154 147 91 255 123 117 72 255 77 73 45 255 61 58 36 255 +minecraft:orange_glazed_terracotta[facing=east] 154 147 91 255 123 117 72 255 77 73 45 255 61 58 36 255 +minecraft:magenta_glazed_terracotta 208 100 191 255 166 80 152 255 104 50 95 255 83 40 76 255 +minecraft:magenta_glazed_terracotta[facing=south] 208 100 191 255 166 80 152 255 104 50 95 255 83 40 76 255 +minecraft:magenta_glazed_terracotta[facing=west] 208 100 191 255 166 80 152 255 104 50 95 255 83 40 76 255 +minecraft:magenta_glazed_terracotta[facing=east] 208 100 191 255 166 80 152 255 104 50 95 255 83 40 76 255 +minecraft:light_blue_glazed_terracotta 94 164 208 255 75 131 166 255 47 82 104 255 37 65 83 255 +minecraft:light_blue_glazed_terracotta[facing=south] 94 164 208 255 75 131 166 255 47 82 104 255 37 65 83 255 +minecraft:light_blue_glazed_terracotta[facing=west] 94 164 208 255 75 131 166 255 47 82 104 255 37 65 83 255 +minecraft:light_blue_glazed_terracotta[facing=east] 94 164 208 255 75 131 166 255 47 82 104 255 37 65 83 255 +minecraft:yellow_glazed_terracotta 234 192 88 255 187 153 70 255 117 96 44 255 93 76 35 255 +minecraft:yellow_glazed_terracotta[facing=south] 234 192 88 255 187 153 70 255 117 96 44 255 93 76 35 255 +minecraft:yellow_glazed_terracotta[facing=west] 234 192 88 255 187 153 70 255 117 96 44 255 93 76 35 255 +minecraft:yellow_glazed_terracotta[facing=east] 234 192 88 255 187 153 70 255 117 96 44 255 93 76 35 255 +minecraft:lime_glazed_terracotta 162 197 55 255 129 157 44 255 81 98 27 255 64 78 22 255 +minecraft:lime_glazed_terracotta[facing=south] 162 197 55 255 129 157 44 255 81 98 27 255 64 78 22 255 +minecraft:lime_glazed_terracotta[facing=west] 162 197 55 255 129 157 44 255 81 98 27 255 64 78 22 255 +minecraft:lime_glazed_terracotta[facing=east] 162 197 55 255 129 157 44 255 81 98 27 255 64 78 22 255 +minecraft:pink_glazed_terracotta 235 154 181 255 188 123 144 255 117 77 90 255 94 61 72 255 +minecraft:pink_glazed_terracotta[facing=south] 235 154 181 255 188 123 144 255 117 77 90 255 94 61 72 255 +minecraft:pink_glazed_terracotta[facing=west] 235 154 181 255 188 123 144 255 117 77 90 255 94 61 72 255 +minecraft:pink_glazed_terracotta[facing=east] 235 154 181 255 188 123 144 255 117 77 90 255 94 61 72 255 +minecraft:gray_glazed_terracotta 83 90 93 255 66 72 74 255 41 45 46 255 33 36 37 255 +minecraft:gray_glazed_terracotta[facing=south] 83 90 93 255 66 72 74 255 41 45 46 255 33 36 37 255 +minecraft:gray_glazed_terracotta[facing=west] 83 90 93 255 66 72 74 255 41 45 46 255 33 36 37 255 +minecraft:gray_glazed_terracotta[facing=east] 83 90 93 255 66 72 74 255 41 45 46 255 33 36 37 255 +minecraft:light_gray_glazed_terracotta 144 166 167 255 115 132 133 255 72 83 83 255 57 66 66 255 +minecraft:light_gray_glazed_terracotta[facing=south] 144 166 167 255 115 132 133 255 72 83 83 255 57 66 66 255 +minecraft:light_gray_glazed_terracotta[facing=west] 144 166 167 255 115 132 133 255 72 83 83 255 57 66 66 255 +minecraft:light_gray_glazed_terracotta[facing=east] 144 166 167 255 115 132 133 255 72 83 83 255 57 66 66 255 +minecraft:cyan_glazed_terracotta 52 118 125 255 41 94 100 255 26 59 62 255 20 47 50 255 +minecraft:cyan_glazed_terracotta[facing=south] 52 118 125 255 41 94 100 255 26 59 62 255 20 47 50 255 +minecraft:cyan_glazed_terracotta[facing=west] 52 118 125 255 41 94 100 255 26 59 62 255 20 47 50 255 +minecraft:cyan_glazed_terracotta[facing=east] 52 118 125 255 41 94 100 255 26 59 62 255 20 47 50 255 +minecraft:purple_glazed_terracotta 109 48 152 255 87 38 121 255 54 24 76 255 43 19 60 255 +minecraft:purple_glazed_terracotta[facing=south] 109 48 152 255 87 38 121 255 54 24 76 255 43 19 60 255 +minecraft:purple_glazed_terracotta[facing=west] 109 48 152 255 87 38 121 255 54 24 76 255 43 19 60 255 +minecraft:purple_glazed_terracotta[facing=east] 109 48 152 255 87 38 121 255 54 24 76 255 43 19 60 255 +minecraft:blue_glazed_terracotta 47 64 139 255 37 51 111 255 23 32 69 255 18 25 55 255 +minecraft:blue_glazed_terracotta[facing=south] 47 64 139 255 37 51 111 255 23 32 69 255 18 25 55 255 +minecraft:blue_glazed_terracotta[facing=west] 47 64 139 255 37 51 111 255 23 32 69 255 18 25 55 255 +minecraft:blue_glazed_terracotta[facing=east] 47 64 139 255 37 51 111 255 23 32 69 255 18 25 55 255 +minecraft:brown_glazed_terracotta 119 106 85 255 95 84 68 255 59 53 42 255 47 42 34 255 +minecraft:brown_glazed_terracotta[facing=south] 119 106 85 255 95 84 68 255 59 53 42 255 47 42 34 255 +minecraft:brown_glazed_terracotta[facing=west] 119 106 85 255 95 84 68 255 59 53 42 255 47 42 34 255 +minecraft:brown_glazed_terracotta[facing=east] 119 106 85 255 95 84 68 255 59 53 42 255 47 42 34 255 +minecraft:green_glazed_terracotta 117 142 67 255 93 113 53 255 58 71 33 255 46 56 26 255 +minecraft:green_glazed_terracotta[facing=south] 117 142 67 255 93 113 53 255 58 71 33 255 46 56 26 255 +minecraft:green_glazed_terracotta[facing=west] 117 142 67 255 93 113 53 255 58 71 33 255 46 56 26 255 +minecraft:green_glazed_terracotta[facing=east] 117 142 67 255 93 113 53 255 58 71 33 255 46 56 26 255 +minecraft:red_glazed_terracotta 181 59 53 255 144 47 42 255 90 29 26 255 72 23 21 255 +minecraft:red_glazed_terracotta[facing=south] 181 59 53 255 144 47 42 255 90 29 26 255 72 23 21 255 +minecraft:red_glazed_terracotta[facing=west] 181 59 53 255 144 47 42 255 90 29 26 255 72 23 21 255 +minecraft:red_glazed_terracotta[facing=east] 181 59 53 255 144 47 42 255 90 29 26 255 72 23 21 255 +minecraft:black_glazed_terracotta 67 30 32 255 53 24 25 255 33 15 16 255 26 12 12 255 +minecraft:black_glazed_terracotta[facing=south] 67 30 32 255 53 24 25 255 33 15 16 255 26 12 12 255 +minecraft:black_glazed_terracotta[facing=west] 67 30 32 255 53 24 25 255 33 15 16 255 26 12 12 255 +minecraft:black_glazed_terracotta[facing=east] 67 30 32 255 53 24 25 255 33 15 16 255 26 12 12 255 +minecraft:white_concrete 207 213 214 255 165 170 171 255 103 106 107 255 82 85 85 255 +minecraft:orange_concrete 224 97 0 255 179 77 0 255 112 48 0 255 89 38 0 255 +minecraft:magenta_concrete 169 48 159 255 135 38 127 255 84 24 79 255 67 19 63 255 +minecraft:light_blue_concrete 35 137 198 255 28 109 158 255 17 68 99 255 14 54 79 255 +minecraft:yellow_concrete 240 175 21 255 192 140 16 255 120 87 10 255 96 70 8 255 +minecraft:lime_concrete 94 168 24 255 75 134 19 255 47 84 12 255 37 67 9 255 +minecraft:pink_concrete 213 101 142 255 170 80 113 255 106 50 71 255 85 40 56 255 +minecraft:gray_concrete 54 57 61 255 43 45 48 255 27 28 30 255 21 22 24 255 +minecraft:light_gray_concrete 125 125 115 255 100 100 92 255 62 62 57 255 50 50 46 255 +minecraft:cyan_concrete 21 119 136 255 16 95 108 255 10 59 68 255 8 47 54 255 +minecraft:purple_concrete 100 31 156 255 80 24 124 255 50 15 78 255 40 12 62 255 +minecraft:blue_concrete 44 46 143 255 35 36 114 255 22 23 71 255 17 18 57 255 +minecraft:brown_concrete 96 59 31 255 76 47 24 255 48 29 15 255 38 23 12 255 +minecraft:green_concrete 73 91 36 255 58 72 28 255 36 45 18 255 29 36 14 255 +minecraft:red_concrete 142 32 32 255 113 25 25 255 71 16 16 255 56 12 12 255 +minecraft:black_concrete 8 10 15 255 6 8 12 255 4 5 7 255 3 4 6 255 +minecraft:white_concrete_powder 225 227 227 255 180 181 181 255 112 113 113 255 90 90 90 255 +minecraft:orange_concrete_powder 227 131 31 255 181 104 24 255 113 65 15 255 90 52 12 255 +minecraft:magenta_concrete_powder 192 83 184 255 153 66 147 255 96 41 92 255 76 33 73 255 +minecraft:light_blue_concrete_powder 74 180 213 255 59 144 170 255 37 90 106 255 29 72 85 255 +minecraft:yellow_concrete_powder 232 199 54 255 185 159 43 255 116 99 27 255 92 79 21 255 +minecraft:lime_concrete_powder 125 189 41 255 100 151 32 255 62 94 20 255 50 75 16 255 +minecraft:pink_concrete_powder 228 153 181 255 182 122 144 255 114 76 90 255 91 61 72 255 +minecraft:gray_concrete_powder 76 81 84 255 60 64 67 255 38 40 42 255 30 32 33 255 +minecraft:light_gray_concrete_powder 154 154 148 255 123 123 118 255 77 77 74 255 61 61 59 255 +minecraft:cyan_concrete_powder 36 147 157 255 28 117 125 255 18 73 78 255 14 58 62 255 +minecraft:purple_concrete_powder 131 55 177 255 104 44 141 255 65 27 88 255 52 22 70 255 +minecraft:blue_concrete_powder 70 73 166 255 56 58 132 255 35 36 83 255 28 29 66 255 +minecraft:brown_concrete_powder 125 84 53 255 100 67 42 255 62 42 26 255 50 33 21 255 +minecraft:green_concrete_powder 97 119 44 255 77 95 35 255 48 59 22 255 38 47 17 255 +minecraft:red_concrete_powder 168 54 50 255 134 43 40 255 84 27 25 255 67 21 20 255 +minecraft:black_concrete_powder 25 26 31 255 20 20 24 255 12 13 15 255 10 10 12 255 +minecraft:kelp 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=1] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=2] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=3] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=4] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=5] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=6] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=7] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=8] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=9] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=10] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=11] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=12] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=13] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=14] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=15] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=16] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=17] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=18] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=19] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=20] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=21] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=22] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=23] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=24] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp[age=25] 41 106 15 49 32 84 12 49 20 53 7 49 16 42 6 49 +minecraft:kelp_plant 40 97 14 100 32 77 11 100 20 48 7 100 16 38 5 100 +minecraft:dried_kelp_block 50 58 38 255 40 46 30 255 25 29 19 255 20 23 15 255 +minecraft:turtle_egg 228 226 191 132 182 180 152 132 114 113 95 132 91 90 76 132 +minecraft:turtle_egg[eggs=1,hatch=1] 218 214 177 132 174 171 141 132 109 107 88 132 87 85 70 132 +minecraft:turtle_egg[eggs=1,hatch=2] 207 203 165 132 165 162 132 132 103 101 82 132 82 81 66 132 +minecraft:turtle_egg[eggs=2,hatch=0] 228 226 191 132 182 180 152 132 114 113 95 132 91 90 76 132 +minecraft:turtle_egg[eggs=2,hatch=1] 218 214 177 132 174 171 141 132 109 107 88 132 87 85 70 132 +minecraft:turtle_egg[eggs=2,hatch=2] 207 203 165 132 165 162 132 132 103 101 82 132 82 81 66 132 +minecraft:turtle_egg[eggs=3,hatch=0] 228 226 191 132 182 180 152 132 114 113 95 132 91 90 76 132 +minecraft:turtle_egg[eggs=3,hatch=1] 218 214 177 132 174 171 141 132 109 107 88 132 87 85 70 132 +minecraft:turtle_egg[eggs=3,hatch=2] 207 203 165 132 165 162 132 132 103 101 82 132 82 81 66 132 +minecraft:turtle_egg[eggs=4,hatch=0] 228 226 191 132 182 180 152 132 114 113 95 132 91 90 76 132 +minecraft:turtle_egg[eggs=4,hatch=1] 218 214 177 132 174 171 141 132 109 107 88 132 87 85 70 132 +minecraft:turtle_egg[eggs=4,hatch=2] 207 203 165 132 165 162 132 132 103 101 82 132 82 81 66 132 +minecraft:dead_tube_coral_block 130 123 119 255 104 98 95 255 65 61 59 255 52 49 47 255 +minecraft:dead_brain_coral_block 124 117 114 255 99 93 91 255 62 58 57 255 49 46 45 255 +minecraft:dead_bubble_coral_block 131 123 119 255 104 98 95 255 65 61 59 255 52 49 47 255 +minecraft:dead_fire_coral_block 131 123 119 255 104 98 95 255 65 61 59 255 52 49 47 255 +minecraft:dead_horn_coral_block 133 126 122 255 106 100 97 255 66 63 61 255 53 50 48 255 +minecraft:tube_coral_block 49 87 206 255 39 69 164 255 24 43 103 255 19 34 82 255 +minecraft:brain_coral_block 207 91 159 255 165 72 127 255 103 45 79 255 82 36 63 255 +minecraft:bubble_coral_block 165 26 162 255 132 20 129 255 82 13 81 255 66 10 64 255 +minecraft:fire_coral_block 163 35 46 255 130 28 36 255 81 17 23 255 65 14 18 255 +minecraft:horn_coral_block 216 199 66 255 172 159 52 255 108 99 33 255 86 79 26 255 +minecraft:dead_tube_coral 118 111 107 152 94 88 85 152 59 55 53 152 47 44 42 152 +minecraft:dead_tube_coral[waterlogged=false] 118 111 107 152 94 88 85 152 59 55 53 152 47 44 42 152 +minecraft:dead_brain_coral 133 125 120 111 106 100 96 111 66 62 60 111 53 50 48 111 +minecraft:dead_brain_coral[waterlogged=false] 133 125 120 111 106 100 96 111 66 62 60 111 53 50 48 111 +minecraft:dead_bubble_coral 132 124 120 132 105 99 96 132 66 62 60 132 52 49 48 132 +minecraft:dead_bubble_coral[waterlogged=false] 132 124 120 132 105 99 96 132 66 62 60 132 52 49 48 132 +minecraft:dead_fire_coral 136 128 124 108 108 102 99 108 68 64 62 108 54 51 49 108 +minecraft:dead_fire_coral[waterlogged=false] 136 128 124 108 108 102 99 108 68 64 62 108 54 51 49 108 +minecraft:dead_horn_coral 142 135 129 99 113 108 103 99 71 67 64 99 56 54 51 99 +minecraft:dead_horn_coral[waterlogged=false] 142 135 129 99 113 108 103 99 71 67 64 99 56 54 51 99 +minecraft:tube_coral 47 83 197 152 37 66 157 152 23 41 98 152 18 33 78 152 +minecraft:tube_coral[waterlogged=false] 47 83 197 152 37 66 157 152 23 41 98 152 18 33 78 152 +minecraft:brain_coral 197 84 152 111 157 67 121 111 98 42 76 111 78 33 60 111 +minecraft:brain_coral[waterlogged=false] 197 84 152 111 157 67 121 111 98 42 76 111 78 33 60 111 +minecraft:bubble_coral 161 23 159 132 128 18 127 132 80 11 79 132 64 9 63 132 +minecraft:bubble_coral[waterlogged=false] 161 23 159 132 128 18 127 132 80 11 79 132 64 9 63 132 +minecraft:fire_coral 166 37 46 108 132 29 36 108 83 18 23 108 66 14 18 108 +minecraft:fire_coral[waterlogged=false] 166 37 46 108 132 29 36 108 83 18 23 108 66 14 18 108 +minecraft:horn_coral 209 186 62 99 167 148 49 99 104 93 31 99 83 74 24 99 +minecraft:horn_coral[waterlogged=false] 209 186 62 99 167 148 49 99 104 93 31 99 83 74 24 99 +minecraft:dead_tube_coral_fan 128 122 118 78 102 97 94 78 64 61 59 78 51 48 47 78 +minecraft:dead_tube_coral_fan[waterlogged=false] 128 122 118 78 102 97 94 78 64 61 59 78 51 48 47 78 +minecraft:dead_brain_coral_fan 132 125 121 94 105 100 96 94 66 62 60 94 52 50 48 94 +minecraft:dead_brain_coral_fan[waterlogged=false] 132 125 121 94 105 100 96 94 66 62 60 94 52 50 48 94 +minecraft:dead_bubble_coral_fan 140 134 130 111 112 107 104 111 70 67 65 111 56 53 52 111 +minecraft:dead_bubble_coral_fan[waterlogged=false] 140 134 130 111 112 107 104 111 70 67 65 111 56 53 52 111 +minecraft:dead_fire_coral_fan 124 118 114 104 99 94 91 104 62 59 57 104 49 47 45 104 +minecraft:dead_fire_coral_fan[waterlogged=false] 124 118 114 104 99 94 91 104 62 59 57 104 49 47 45 104 +minecraft:dead_horn_coral_fan 134 125 121 93 107 100 96 93 67 62 60 93 53 50 48 93 +minecraft:dead_horn_coral_fan[waterlogged=false] 134 125 121 93 107 100 96 93 67 62 60 93 53 50 48 93 +minecraft:tube_coral_fan 50 91 208 78 40 72 166 78 25 45 104 78 20 36 83 78 +minecraft:tube_coral_fan[waterlogged=false] 50 91 208 78 40 72 166 78 25 45 104 78 20 36 83 78 +minecraft:brain_coral_fan 202 84 153 94 161 67 122 94 101 42 76 94 80 33 61 94 +minecraft:brain_coral_fan[waterlogged=false] 202 84 153 94 161 67 122 94 101 42 76 94 80 33 61 94 +minecraft:bubble_coral_fan 160 32 159 111 128 25 127 111 80 16 79 111 64 12 63 111 +minecraft:bubble_coral_fan[waterlogged=false] 160 32 159 111 128 25 127 111 80 16 79 111 64 12 63 111 +minecraft:fire_coral_fan 158 34 45 104 126 27 36 104 79 17 22 104 63 13 18 104 +minecraft:fire_coral_fan[waterlogged=false] 158 34 45 104 126 27 36 104 79 17 22 104 63 13 18 104 +minecraft:horn_coral_fan 205 183 61 93 164 146 48 93 102 91 30 93 82 73 24 93 +minecraft:horn_coral_fan[waterlogged=false] 205 183 61 93 164 146 48 93 102 91 30 93 82 73 24 93 +minecraft:dead_tube_coral_wall_fan 128 122 118 78 102 97 94 78 64 61 59 78 51 48 47 78 +minecraft:dead_tube_coral_wall_fan[facing=north,waterlogged=false] 128 122 118 78 102 97 94 78 64 61 59 78 51 48 47 78 +minecraft:dead_tube_coral_wall_fan[facing=south,waterlogged=true] 128 122 118 78 102 97 94 78 64 61 59 78 51 48 47 78 +minecraft:dead_tube_coral_wall_fan[facing=south,waterlogged=false] 128 122 118 78 102 97 94 78 64 61 59 78 51 48 47 78 +minecraft:dead_tube_coral_wall_fan[facing=west,waterlogged=true] 128 122 118 78 102 97 94 78 64 61 59 78 51 48 47 78 +minecraft:dead_tube_coral_wall_fan[facing=west,waterlogged=false] 128 122 118 78 102 97 94 78 64 61 59 78 51 48 47 78 +minecraft:dead_tube_coral_wall_fan[facing=east,waterlogged=true] 128 122 118 78 102 97 94 78 64 61 59 78 51 48 47 78 +minecraft:dead_tube_coral_wall_fan[facing=east,waterlogged=false] 128 122 118 78 102 97 94 78 64 61 59 78 51 48 47 78 +minecraft:dead_brain_coral_wall_fan 132 125 121 94 105 100 96 94 66 62 60 94 52 50 48 94 +minecraft:dead_brain_coral_wall_fan[facing=north,waterlogged=false] 132 125 121 94 105 100 96 94 66 62 60 94 52 50 48 94 +minecraft:dead_brain_coral_wall_fan[facing=south,waterlogged=true] 132 125 121 94 105 100 96 94 66 62 60 94 52 50 48 94 +minecraft:dead_brain_coral_wall_fan[facing=south,waterlogged=false] 132 125 121 94 105 100 96 94 66 62 60 94 52 50 48 94 +minecraft:dead_brain_coral_wall_fan[facing=west,waterlogged=true] 132 125 121 94 105 100 96 94 66 62 60 94 52 50 48 94 +minecraft:dead_brain_coral_wall_fan[facing=west,waterlogged=false] 132 125 121 94 105 100 96 94 66 62 60 94 52 50 48 94 +minecraft:dead_brain_coral_wall_fan[facing=east,waterlogged=true] 132 125 121 94 105 100 96 94 66 62 60 94 52 50 48 94 +minecraft:dead_brain_coral_wall_fan[facing=east,waterlogged=false] 132 125 121 94 105 100 96 94 66 62 60 94 52 50 48 94 +minecraft:dead_bubble_coral_wall_fan 140 134 130 111 112 107 104 111 70 67 65 111 56 53 52 111 +minecraft:dead_bubble_coral_wall_fan[facing=north,waterlogged=false] 140 134 130 111 112 107 104 111 70 67 65 111 56 53 52 111 +minecraft:dead_bubble_coral_wall_fan[facing=south,waterlogged=true] 140 134 130 111 112 107 104 111 70 67 65 111 56 53 52 111 +minecraft:dead_bubble_coral_wall_fan[facing=south,waterlogged=false] 140 134 130 111 112 107 104 111 70 67 65 111 56 53 52 111 +minecraft:dead_bubble_coral_wall_fan[facing=west,waterlogged=true] 140 134 130 111 112 107 104 111 70 67 65 111 56 53 52 111 +minecraft:dead_bubble_coral_wall_fan[facing=west,waterlogged=false] 140 134 130 111 112 107 104 111 70 67 65 111 56 53 52 111 +minecraft:dead_bubble_coral_wall_fan[facing=east,waterlogged=true] 140 134 130 111 112 107 104 111 70 67 65 111 56 53 52 111 +minecraft:dead_bubble_coral_wall_fan[facing=east,waterlogged=false] 140 134 130 111 112 107 104 111 70 67 65 111 56 53 52 111 +minecraft:dead_fire_coral_wall_fan 124 118 114 104 99 94 91 104 62 59 57 104 49 47 45 104 +minecraft:dead_fire_coral_wall_fan[facing=north,waterlogged=false] 124 118 114 104 99 94 91 104 62 59 57 104 49 47 45 104 +minecraft:dead_fire_coral_wall_fan[facing=south,waterlogged=true] 124 118 114 104 99 94 91 104 62 59 57 104 49 47 45 104 +minecraft:dead_fire_coral_wall_fan[facing=south,waterlogged=false] 124 118 114 104 99 94 91 104 62 59 57 104 49 47 45 104 +minecraft:dead_fire_coral_wall_fan[facing=west,waterlogged=true] 124 118 114 104 99 94 91 104 62 59 57 104 49 47 45 104 +minecraft:dead_fire_coral_wall_fan[facing=west,waterlogged=false] 124 118 114 104 99 94 91 104 62 59 57 104 49 47 45 104 +minecraft:dead_fire_coral_wall_fan[facing=east,waterlogged=true] 124 118 114 104 99 94 91 104 62 59 57 104 49 47 45 104 +minecraft:dead_fire_coral_wall_fan[facing=east,waterlogged=false] 124 118 114 104 99 94 91 104 62 59 57 104 49 47 45 104 +minecraft:dead_horn_coral_wall_fan 134 125 121 93 107 100 96 93 67 62 60 93 53 50 48 93 +minecraft:dead_horn_coral_wall_fan[facing=north,waterlogged=false] 134 125 121 93 107 100 96 93 67 62 60 93 53 50 48 93 +minecraft:dead_horn_coral_wall_fan[facing=south,waterlogged=true] 134 125 121 93 107 100 96 93 67 62 60 93 53 50 48 93 +minecraft:dead_horn_coral_wall_fan[facing=south,waterlogged=false] 134 125 121 93 107 100 96 93 67 62 60 93 53 50 48 93 +minecraft:dead_horn_coral_wall_fan[facing=west,waterlogged=true] 134 125 121 93 107 100 96 93 67 62 60 93 53 50 48 93 +minecraft:dead_horn_coral_wall_fan[facing=west,waterlogged=false] 134 125 121 93 107 100 96 93 67 62 60 93 53 50 48 93 +minecraft:dead_horn_coral_wall_fan[facing=east,waterlogged=true] 134 125 121 93 107 100 96 93 67 62 60 93 53 50 48 93 +minecraft:dead_horn_coral_wall_fan[facing=east,waterlogged=false] 134 125 121 93 107 100 96 93 67 62 60 93 53 50 48 93 +minecraft:tube_coral_wall_fan 50 91 208 78 40 72 166 78 25 45 104 78 20 36 83 78 +minecraft:tube_coral_wall_fan[facing=north,waterlogged=false] 50 91 208 78 40 72 166 78 25 45 104 78 20 36 83 78 +minecraft:tube_coral_wall_fan[facing=south,waterlogged=true] 50 91 208 78 40 72 166 78 25 45 104 78 20 36 83 78 +minecraft:tube_coral_wall_fan[facing=south,waterlogged=false] 50 91 208 78 40 72 166 78 25 45 104 78 20 36 83 78 +minecraft:tube_coral_wall_fan[facing=west,waterlogged=true] 50 91 208 78 40 72 166 78 25 45 104 78 20 36 83 78 +minecraft:tube_coral_wall_fan[facing=west,waterlogged=false] 50 91 208 78 40 72 166 78 25 45 104 78 20 36 83 78 +minecraft:tube_coral_wall_fan[facing=east,waterlogged=true] 50 91 208 78 40 72 166 78 25 45 104 78 20 36 83 78 +minecraft:tube_coral_wall_fan[facing=east,waterlogged=false] 50 91 208 78 40 72 166 78 25 45 104 78 20 36 83 78 +minecraft:brain_coral_wall_fan 202 84 153 94 161 67 122 94 101 42 76 94 80 33 61 94 +minecraft:brain_coral_wall_fan[facing=north,waterlogged=false] 202 84 153 94 161 67 122 94 101 42 76 94 80 33 61 94 +minecraft:brain_coral_wall_fan[facing=south,waterlogged=true] 202 84 153 94 161 67 122 94 101 42 76 94 80 33 61 94 +minecraft:brain_coral_wall_fan[facing=south,waterlogged=false] 202 84 153 94 161 67 122 94 101 42 76 94 80 33 61 94 +minecraft:brain_coral_wall_fan[facing=west,waterlogged=true] 202 84 153 94 161 67 122 94 101 42 76 94 80 33 61 94 +minecraft:brain_coral_wall_fan[facing=west,waterlogged=false] 202 84 153 94 161 67 122 94 101 42 76 94 80 33 61 94 +minecraft:brain_coral_wall_fan[facing=east,waterlogged=true] 202 84 153 94 161 67 122 94 101 42 76 94 80 33 61 94 +minecraft:brain_coral_wall_fan[facing=east,waterlogged=false] 202 84 153 94 161 67 122 94 101 42 76 94 80 33 61 94 +minecraft:bubble_coral_wall_fan 160 32 159 111 128 25 127 111 80 16 79 111 64 12 63 111 +minecraft:bubble_coral_wall_fan[facing=north,waterlogged=false] 160 32 159 111 128 25 127 111 80 16 79 111 64 12 63 111 +minecraft:bubble_coral_wall_fan[facing=south,waterlogged=true] 160 32 159 111 128 25 127 111 80 16 79 111 64 12 63 111 +minecraft:bubble_coral_wall_fan[facing=south,waterlogged=false] 160 32 159 111 128 25 127 111 80 16 79 111 64 12 63 111 +minecraft:bubble_coral_wall_fan[facing=west,waterlogged=true] 160 32 159 111 128 25 127 111 80 16 79 111 64 12 63 111 +minecraft:bubble_coral_wall_fan[facing=west,waterlogged=false] 160 32 159 111 128 25 127 111 80 16 79 111 64 12 63 111 +minecraft:bubble_coral_wall_fan[facing=east,waterlogged=true] 160 32 159 111 128 25 127 111 80 16 79 111 64 12 63 111 +minecraft:bubble_coral_wall_fan[facing=east,waterlogged=false] 160 32 159 111 128 25 127 111 80 16 79 111 64 12 63 111 +minecraft:fire_coral_wall_fan 158 34 45 104 126 27 36 104 79 17 22 104 63 13 18 104 +minecraft:fire_coral_wall_fan[facing=north,waterlogged=false] 158 34 45 104 126 27 36 104 79 17 22 104 63 13 18 104 +minecraft:fire_coral_wall_fan[facing=south,waterlogged=true] 158 34 45 104 126 27 36 104 79 17 22 104 63 13 18 104 +minecraft:fire_coral_wall_fan[facing=south,waterlogged=false] 158 34 45 104 126 27 36 104 79 17 22 104 63 13 18 104 +minecraft:fire_coral_wall_fan[facing=west,waterlogged=true] 158 34 45 104 126 27 36 104 79 17 22 104 63 13 18 104 +minecraft:fire_coral_wall_fan[facing=west,waterlogged=false] 158 34 45 104 126 27 36 104 79 17 22 104 63 13 18 104 +minecraft:fire_coral_wall_fan[facing=east,waterlogged=true] 158 34 45 104 126 27 36 104 79 17 22 104 63 13 18 104 +minecraft:fire_coral_wall_fan[facing=east,waterlogged=false] 158 34 45 104 126 27 36 104 79 17 22 104 63 13 18 104 +minecraft:horn_coral_wall_fan 205 183 61 93 164 146 48 93 102 91 30 93 82 73 24 93 +minecraft:horn_coral_wall_fan[facing=north,waterlogged=false] 205 183 61 93 164 146 48 93 102 91 30 93 82 73 24 93 +minecraft:horn_coral_wall_fan[facing=south,waterlogged=true] 205 183 61 93 164 146 48 93 102 91 30 93 82 73 24 93 +minecraft:horn_coral_wall_fan[facing=south,waterlogged=false] 205 183 61 93 164 146 48 93 102 91 30 93 82 73 24 93 +minecraft:horn_coral_wall_fan[facing=west,waterlogged=true] 205 183 61 93 164 146 48 93 102 91 30 93 82 73 24 93 +minecraft:horn_coral_wall_fan[facing=west,waterlogged=false] 205 183 61 93 164 146 48 93 102 91 30 93 82 73 24 93 +minecraft:horn_coral_wall_fan[facing=east,waterlogged=true] 205 183 61 93 164 146 48 93 102 91 30 93 82 73 24 93 +minecraft:horn_coral_wall_fan[facing=east,waterlogged=false] 205 183 61 93 164 146 48 93 102 91 30 93 82 73 24 93 +minecraft:sea_pickle 90 97 39 215 72 77 31 215 45 48 19 215 36 38 15 215 +minecraft:sea_pickle[pickles=1,waterlogged=false] 90 97 39 215 72 77 31 215 45 48 19 215 36 38 15 215 +minecraft:sea_pickle[pickles=2,waterlogged=true] 90 97 39 215 72 77 31 215 45 48 19 215 36 38 15 215 +minecraft:sea_pickle[pickles=2,waterlogged=false] 90 97 39 215 72 77 31 215 45 48 19 215 36 38 15 215 +minecraft:sea_pickle[pickles=3,waterlogged=true] 90 97 39 215 72 77 31 215 45 48 19 215 36 38 15 215 +minecraft:sea_pickle[pickles=3,waterlogged=false] 90 97 39 215 72 77 31 215 45 48 19 215 36 38 15 215 +minecraft:sea_pickle[pickles=4,waterlogged=true] 90 97 39 215 72 77 31 215 45 48 19 215 36 38 15 215 +minecraft:sea_pickle[pickles=4,waterlogged=false] 90 97 39 215 72 77 31 215 45 48 19 215 36 38 15 215 +minecraft:blue_ice 116 167 253 255 92 133 202 255 58 83 126 255 46 66 101 255 +minecraft:conduit 159 139 113 143 127 111 90 143 79 69 56 143 63 55 45 143 +minecraft:conduit[waterlogged=false] 159 139 113 143 127 111 90 143 79 69 56 143 63 55 45 143 +minecraft:bamboo_sapling 92 89 35 54 73 71 28 54 46 44 17 54 36 35 14 54 +minecraft:bamboo 93 144 19 255 74 115 15 255 46 72 9 255 37 57 7 255 +minecraft:bamboo[age=0,leaves=none,stage=1] 93 144 19 255 74 115 15 255 46 72 9 255 37 57 7 255 +minecraft:bamboo[age=0,leaves=small,stage=0] 93 144 19 255 74 115 15 255 46 72 9 255 37 57 7 255 +minecraft:bamboo[age=0,leaves=small,stage=1] 93 144 19 255 74 115 15 255 46 72 9 255 37 57 7 255 +minecraft:bamboo[age=0,leaves=large,stage=0] 93 144 19 255 74 115 15 255 46 72 9 255 37 57 7 255 +minecraft:bamboo[age=0,leaves=large,stage=1] 93 144 19 255 74 115 15 255 46 72 9 255 37 57 7 255 +minecraft:bamboo[age=1,leaves=none,stage=0] 93 144 19 255 74 115 15 255 46 72 9 255 37 57 7 255 +minecraft:bamboo[age=1,leaves=none,stage=1] 93 144 19 255 74 115 15 255 46 72 9 255 37 57 7 255 +minecraft:bamboo[age=1,leaves=small,stage=0] 93 144 19 255 74 115 15 255 46 72 9 255 37 57 7 255 +minecraft:bamboo[age=1,leaves=small,stage=1] 93 144 19 255 74 115 15 255 46 72 9 255 37 57 7 255 +minecraft:bamboo[age=1,leaves=large,stage=0] 93 144 19 255 74 115 15 255 46 72 9 255 37 57 7 255 +minecraft:bamboo[age=1,leaves=large,stage=1] 93 144 19 255 74 115 15 255 46 72 9 255 37 57 7 255 +minecraft:potted_bamboo 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:polished_granite_stairs 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=top,shape=straight,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=top,shape=straight,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=top,shape=straight,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=top,shape=straight,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=top,shape=straight,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=top,shape=straight,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=top,shape=straight,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:smooth_red_sandstone_stairs 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=straight,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:mossy_stone_brick_stairs 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:polished_diorite_stairs 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=top,shape=straight,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=top,shape=straight,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=top,shape=straight,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=top,shape=straight,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=top,shape=straight,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=top,shape=straight,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=top,shape=straight,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:mossy_cobblestone_stairs 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=straight,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=straight,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=straight,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=straight,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=straight,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=straight,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=straight,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:end_stone_brick_stairs 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:stone_stairs 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=top,shape=straight,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=top,shape=straight,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=top,shape=straight,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=top,shape=straight,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=top,shape=straight,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=top,shape=straight,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=top,shape=straight,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:stone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 125 125 125 255 100 100 100 255 62 62 62 255 50 50 50 255 +minecraft:smooth_sandstone_stairs 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=straight,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_quartz_stairs 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=top,shape=straight,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=top,shape=straight,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=top,shape=straight,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=top,shape=straight,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=top,shape=straight,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=top,shape=straight,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=top,shape=straight,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:granite_stairs 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=top,shape=straight,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=top,shape=straight,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=top,shape=straight,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=top,shape=straight,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=top,shape=straight,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=top,shape=straight,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=top,shape=straight,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:andesite_stairs 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=top,shape=straight,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=top,shape=straight,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=top,shape=straight,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=top,shape=straight,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=top,shape=straight,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=top,shape=straight,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=top,shape=straight,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:red_nether_brick_stairs 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:polished_andesite_stairs 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=top,shape=straight,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=top,shape=straight,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=top,shape=straight,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=top,shape=straight,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=top,shape=straight,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=top,shape=straight,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=top,shape=straight,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:diorite_stairs 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=top,shape=straight,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=top,shape=straight,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=top,shape=straight,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=top,shape=straight,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=top,shape=straight,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=top,shape=straight,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=top,shape=straight,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:polished_granite_slab 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_slab[type=top,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_slab[type=bottom,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_slab[type=bottom,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_slab[type=double,waterlogged=true] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:polished_granite_slab[type=double,waterlogged=false] 154 106 89 255 123 84 71 255 77 53 44 255 61 42 35 255 +minecraft:smooth_red_sandstone_slab 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_slab[type=top,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_slab[type=bottom,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_slab[type=bottom,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_slab[type=double,waterlogged=true] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:smooth_red_sandstone_slab[type=double,waterlogged=false] 181 97 31 255 144 77 24 255 90 48 15 255 72 38 12 255 +minecraft:mossy_stone_brick_slab 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_slab[type=top,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_slab[type=bottom,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_slab[type=bottom,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_slab[type=double,waterlogged=true] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_slab[type=double,waterlogged=false] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:polished_diorite_slab 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_slab[type=top,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_slab[type=bottom,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_slab[type=bottom,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_slab[type=double,waterlogged=true] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:polished_diorite_slab[type=double,waterlogged=false] 192 193 194 255 153 154 155 255 96 96 97 255 76 77 77 255 +minecraft:mossy_cobblestone_slab 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_slab[type=top,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_slab[type=bottom,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_slab[type=bottom,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_slab[type=double,waterlogged=true] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:mossy_cobblestone_slab[type=double,waterlogged=false] 110 118 94 255 88 94 75 255 55 59 47 255 44 47 37 255 +minecraft:end_stone_brick_slab 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_slab[type=top,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_slab[type=bottom,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_slab[type=bottom,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_slab[type=double,waterlogged=true] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_slab[type=double,waterlogged=false] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:smooth_sandstone_slab 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_slab[type=top,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_slab[type=bottom,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_slab[type=bottom,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_slab[type=double,waterlogged=true] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_sandstone_slab[type=double,waterlogged=false] 223 214 170 255 178 171 136 255 111 107 85 255 89 85 68 255 +minecraft:smooth_quartz_slab 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_slab[type=top,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_slab[type=bottom,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_slab[type=bottom,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_slab[type=double,waterlogged=true] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:smooth_quartz_slab[type=double,waterlogged=false] 236 230 223 255 188 184 178 255 118 115 111 255 94 92 89 255 +minecraft:granite_slab 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_slab[type=top,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_slab[type=bottom,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_slab[type=bottom,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_slab[type=double,waterlogged=true] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_slab[type=double,waterlogged=false] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:andesite_slab 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_slab[type=top,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_slab[type=bottom,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_slab[type=bottom,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_slab[type=double,waterlogged=true] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_slab[type=double,waterlogged=false] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:red_nether_brick_slab 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_slab[type=top,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_slab[type=bottom,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_slab[type=bottom,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_slab[type=double,waterlogged=true] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_slab[type=double,waterlogged=false] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:polished_andesite_slab 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_slab[type=top,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_slab[type=bottom,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_slab[type=bottom,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_slab[type=double,waterlogged=true] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:polished_andesite_slab[type=double,waterlogged=false] 132 134 133 255 105 107 106 255 66 67 66 255 52 53 53 255 +minecraft:diorite_slab 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_slab[type=top,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_slab[type=bottom,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_slab[type=bottom,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_slab[type=double,waterlogged=true] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_slab[type=double,waterlogged=false] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:brick_wall 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 150 97 83 255 120 77 66 255 75 48 41 255 60 38 33 255 +minecraft:prismarine_wall 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 98 162 145 255 78 129 116 255 49 81 72 255 39 64 58 255 +minecraft:red_sandstone_wall 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 186 99 29 255 148 79 23 255 93 49 14 255 74 39 11 255 +minecraft:mossy_stone_brick_wall 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 115 121 105 255 92 96 84 255 57 60 52 255 46 48 42 255 +minecraft:granite_wall 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:granite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 149 103 85 255 119 82 68 255 74 51 42 255 59 41 34 255 +minecraft:stone_brick_wall 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 122 121 122 255 97 96 97 255 61 60 61 255 48 48 48 255 +minecraft:nether_brick_wall 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 44 21 26 255 35 16 20 255 22 10 13 255 17 8 10 255 +minecraft:andesite_wall 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 136 136 136 255 108 108 108 255 68 68 68 255 54 54 54 255 +minecraft:red_nether_brick_wall 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 69 7 9 255 55 5 7 255 34 3 4 255 27 2 3 255 +minecraft:sandstone_wall 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 216 203 155 255 172 162 124 255 108 101 77 255 86 81 62 255 +minecraft:end_stone_brick_wall 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 218 224 162 255 174 179 129 255 109 112 81 255 87 89 64 255 +minecraft:diorite_wall 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:diorite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 188 188 188 255 150 150 150 255 94 94 94 255 75 75 75 255 +minecraft:scaffolding 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=true,distance=0,waterlogged=false] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=true,distance=1,waterlogged=true] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=true,distance=1,waterlogged=false] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=true,distance=2,waterlogged=true] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=true,distance=2,waterlogged=false] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=true,distance=3,waterlogged=true] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=true,distance=3,waterlogged=false] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=true,distance=4,waterlogged=true] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=true,distance=4,waterlogged=false] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=true,distance=5,waterlogged=true] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=true,distance=5,waterlogged=false] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=true,distance=6,waterlogged=true] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=true,distance=6,waterlogged=false] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=true,distance=7,waterlogged=true] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=true,distance=7,waterlogged=false] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=false,distance=0,waterlogged=true] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=false,distance=0,waterlogged=false] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=false,distance=1,waterlogged=true] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=false,distance=1,waterlogged=false] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=false,distance=2,waterlogged=true] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=false,distance=2,waterlogged=false] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=false,distance=3,waterlogged=true] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=false,distance=3,waterlogged=false] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=false,distance=4,waterlogged=true] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=false,distance=4,waterlogged=false] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=false,distance=5,waterlogged=true] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=false,distance=5,waterlogged=false] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=false,distance=6,waterlogged=true] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=false,distance=6,waterlogged=false] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=false,distance=7,waterlogged=true] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:scaffolding[bottom=false,distance=7,waterlogged=false] 174 134 80 231 139 107 64 231 87 67 40 231 69 53 32 231 +minecraft:loom 76 60 36 255 60 48 28 255 38 30 18 255 30 24 14 255 +minecraft:loom[facing=south] 76 60 36 255 60 48 28 255 38 30 18 255 30 24 14 255 +minecraft:loom[facing=west] 76 60 36 255 60 48 28 255 38 30 18 255 30 24 14 255 +minecraft:loom[facing=east] 76 60 36 255 60 48 28 255 38 30 18 255 30 24 14 255 +minecraft:barrel 121 89 51 255 96 71 40 255 60 44 25 255 48 35 20 255 +minecraft:barrel[facing=north,open=false] 121 89 51 255 96 71 40 255 60 44 25 255 48 35 20 255 +minecraft:barrel[facing=east,open=true] 121 89 51 255 96 71 40 255 60 44 25 255 48 35 20 255 +minecraft:barrel[facing=east,open=false] 121 89 51 255 96 71 40 255 60 44 25 255 48 35 20 255 +minecraft:barrel[facing=south,open=true] 121 89 51 255 96 71 40 255 60 44 25 255 48 35 20 255 +minecraft:barrel[facing=south,open=false] 121 89 51 255 96 71 40 255 60 44 25 255 48 35 20 255 +minecraft:barrel[facing=west,open=true] 121 89 51 255 96 71 40 255 60 44 25 255 48 35 20 255 +minecraft:barrel[facing=west,open=false] 121 89 51 255 96 71 40 255 60 44 25 255 48 35 20 255 +minecraft:barrel[facing=up,open=true] 121 89 51 255 96 71 40 255 60 44 25 255 48 35 20 255 +minecraft:barrel[facing=up,open=false] 121 89 51 255 96 71 40 255 60 44 25 255 48 35 20 255 +minecraft:barrel[facing=down,open=true] 121 89 51 255 96 71 40 255 60 44 25 255 48 35 20 255 +minecraft:barrel[facing=down,open=false] 121 89 51 255 96 71 40 255 60 44 25 255 48 35 20 255 +minecraft:smoker 107 105 103 255 85 84 82 255 53 52 51 255 42 42 41 255 +minecraft:smoker[facing=north,lit=false] 107 105 103 255 85 84 82 255 53 52 51 255 42 42 41 255 +minecraft:smoker[facing=south,lit=true] 107 105 103 255 85 84 82 255 53 52 51 255 42 42 41 255 +minecraft:smoker[facing=south,lit=false] 107 105 103 255 85 84 82 255 53 52 51 255 42 42 41 255 +minecraft:smoker[facing=west,lit=true] 107 105 103 255 85 84 82 255 53 52 51 255 42 42 41 255 +minecraft:smoker[facing=west,lit=false] 107 105 103 255 85 84 82 255 53 52 51 255 42 42 41 255 +minecraft:smoker[facing=east,lit=true] 107 105 103 255 85 84 82 255 53 52 51 255 42 42 41 255 +minecraft:smoker[facing=east,lit=false] 107 105 103 255 85 84 82 255 53 52 51 255 42 42 41 255 +minecraft:blast_furnace 80 80 81 255 64 64 64 255 40 40 40 255 32 32 32 255 +minecraft:blast_furnace[facing=north,lit=false] 80 80 81 255 64 64 64 255 40 40 40 255 32 32 32 255 +minecraft:blast_furnace[facing=south,lit=true] 80 80 81 255 64 64 64 255 40 40 40 255 32 32 32 255 +minecraft:blast_furnace[facing=south,lit=false] 80 80 81 255 64 64 64 255 40 40 40 255 32 32 32 255 +minecraft:blast_furnace[facing=west,lit=true] 80 80 81 255 64 64 64 255 40 40 40 255 32 32 32 255 +minecraft:blast_furnace[facing=west,lit=false] 80 80 81 255 64 64 64 255 40 40 40 255 32 32 32 255 +minecraft:blast_furnace[facing=east,lit=true] 80 80 81 255 64 64 64 255 40 40 40 255 32 32 32 255 +minecraft:blast_furnace[facing=east,lit=false] 80 80 81 255 64 64 64 255 40 40 40 255 32 32 32 255 +minecraft:cartography_table 104 87 67 255 83 69 53 255 52 43 33 255 41 34 26 255 +minecraft:fletching_table 197 180 133 255 157 144 106 255 98 90 66 255 78 72 53 255 +minecraft:grindstone 60 46 26 255 48 36 20 255 30 23 13 255 24 18 10 255 +minecraft:grindstone[face=floor,facing=south] 60 46 26 255 48 36 20 255 30 23 13 255 24 18 10 255 +minecraft:grindstone[face=floor,facing=west] 60 46 26 255 48 36 20 255 30 23 13 255 24 18 10 255 +minecraft:grindstone[face=floor,facing=east] 60 46 26 255 48 36 20 255 30 23 13 255 24 18 10 255 +minecraft:grindstone[face=wall,facing=north] 60 46 26 255 48 36 20 255 30 23 13 255 24 18 10 255 +minecraft:grindstone[face=wall,facing=south] 60 46 26 255 48 36 20 255 30 23 13 255 24 18 10 255 +minecraft:grindstone[face=wall,facing=west] 60 46 26 255 48 36 20 255 30 23 13 255 24 18 10 255 +minecraft:grindstone[face=wall,facing=east] 60 46 26 255 48 36 20 255 30 23 13 255 24 18 10 255 +minecraft:grindstone[face=ceiling,facing=north] 60 46 26 255 48 36 20 255 30 23 13 255 24 18 10 255 +minecraft:grindstone[face=ceiling,facing=south] 60 46 26 255 48 36 20 255 30 23 13 255 24 18 10 255 +minecraft:grindstone[face=ceiling,facing=west] 60 46 26 255 48 36 20 255 30 23 13 255 24 18 10 255 +minecraft:grindstone[face=ceiling,facing=east] 60 46 26 255 48 36 20 255 30 23 13 255 24 18 10 255 +minecraft:lectern 173 137 83 255 138 109 66 255 86 68 41 255 69 54 33 255 +minecraft:lectern[facing=north,has_book=true,powered=false] 173 137 83 255 138 109 66 255 86 68 41 255 69 54 33 255 +minecraft:lectern[facing=north,has_book=false,powered=true] 173 137 83 255 138 109 66 255 86 68 41 255 69 54 33 255 +minecraft:lectern[facing=north,has_book=false,powered=false] 173 137 83 255 138 109 66 255 86 68 41 255 69 54 33 255 +minecraft:lectern[facing=south,has_book=true,powered=true] 173 137 83 255 138 109 66 255 86 68 41 255 69 54 33 255 +minecraft:lectern[facing=south,has_book=true,powered=false] 173 137 83 255 138 109 66 255 86 68 41 255 69 54 33 255 +minecraft:lectern[facing=south,has_book=false,powered=true] 173 137 83 255 138 109 66 255 86 68 41 255 69 54 33 255 +minecraft:lectern[facing=south,has_book=false,powered=false] 173 137 83 255 138 109 66 255 86 68 41 255 69 54 33 255 +minecraft:lectern[facing=west,has_book=true,powered=true] 173 137 83 255 138 109 66 255 86 68 41 255 69 54 33 255 +minecraft:lectern[facing=west,has_book=true,powered=false] 173 137 83 255 138 109 66 255 86 68 41 255 69 54 33 255 +minecraft:lectern[facing=west,has_book=false,powered=true] 173 137 83 255 138 109 66 255 86 68 41 255 69 54 33 255 +minecraft:lectern[facing=west,has_book=false,powered=false] 173 137 83 255 138 109 66 255 86 68 41 255 69 54 33 255 +minecraft:lectern[facing=east,has_book=true,powered=true] 173 137 83 255 138 109 66 255 86 68 41 255 69 54 33 255 +minecraft:lectern[facing=east,has_book=true,powered=false] 173 137 83 255 138 109 66 255 86 68 41 255 69 54 33 255 +minecraft:lectern[facing=east,has_book=false,powered=true] 173 137 83 255 138 109 66 255 86 68 41 255 69 54 33 255 +minecraft:lectern[facing=east,has_book=false,powered=false] 173 137 83 255 138 109 66 255 86 68 41 255 69 54 33 255 +minecraft:smithing_table 57 58 70 255 45 46 56 255 28 29 35 255 22 23 28 255 +minecraft:stonecutter 118 117 118 255 94 93 94 255 59 58 59 255 47 46 47 255 +minecraft:stonecutter[facing=south] 118 117 118 255 94 93 94 255 59 58 59 255 47 46 47 255 +minecraft:stonecutter[facing=west] 118 117 118 255 94 93 94 255 59 58 59 255 47 46 47 255 +minecraft:stonecutter[facing=east] 118 117 118 255 94 93 94 255 59 58 59 255 47 46 47 255 +minecraft:bell 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=floor,facing=north,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=floor,facing=south,powered=true] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=floor,facing=south,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=floor,facing=west,powered=true] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=floor,facing=west,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=floor,facing=east,powered=true] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=floor,facing=east,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=ceiling,facing=north,powered=true] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=ceiling,facing=north,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=ceiling,facing=south,powered=true] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=ceiling,facing=south,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=ceiling,facing=west,powered=true] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=ceiling,facing=west,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=ceiling,facing=east,powered=true] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=ceiling,facing=east,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=single_wall,facing=north,powered=true] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=single_wall,facing=north,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=single_wall,facing=south,powered=true] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=single_wall,facing=south,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=single_wall,facing=west,powered=true] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=single_wall,facing=west,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=single_wall,facing=east,powered=true] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=single_wall,facing=east,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=double_wall,facing=north,powered=true] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=double_wall,facing=north,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=double_wall,facing=south,powered=true] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=double_wall,facing=south,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=double_wall,facing=west,powered=true] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=double_wall,facing=west,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=double_wall,facing=east,powered=true] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:bell[attachment=double_wall,facing=east,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57 +minecraft:lantern 56 62 79 6 44 49 63 6 28 31 39 6 22 24 31 6 +minecraft:lantern[hanging=true,waterlogged=false] 56 62 79 6 44 49 63 6 28 31 39 6 22 24 31 6 +minecraft:lantern[hanging=false,waterlogged=true] 56 62 79 6 44 49 63 6 28 31 39 6 22 24 31 6 +minecraft:lantern[hanging=false,waterlogged=false] 56 62 79 6 44 49 63 6 28 31 39 6 22 24 31 6 +minecraft:soul_lantern 56 62 79 6 44 49 63 6 28 31 39 6 22 24 31 6 +minecraft:soul_lantern[hanging=true,waterlogged=false] 56 62 79 6 44 49 63 6 28 31 39 6 22 24 31 6 +minecraft:soul_lantern[hanging=false,waterlogged=true] 56 62 79 6 44 49 63 6 28 31 39 6 22 24 31 6 +minecraft:soul_lantern[hanging=false,waterlogged=false] 56 62 79 6 44 49 63 6 28 31 39 6 22 24 31 6 +minecraft:campfire 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=north,lit=true,signal_fire=true,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=north,lit=true,signal_fire=false,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=north,lit=true,signal_fire=false,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=north,lit=false,signal_fire=true,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=north,lit=false,signal_fire=true,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=north,lit=false,signal_fire=false,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=north,lit=false,signal_fire=false,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=south,lit=true,signal_fire=true,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=south,lit=true,signal_fire=true,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=south,lit=true,signal_fire=false,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=south,lit=true,signal_fire=false,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=south,lit=false,signal_fire=true,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=south,lit=false,signal_fire=true,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=south,lit=false,signal_fire=false,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=south,lit=false,signal_fire=false,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=west,lit=true,signal_fire=true,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=west,lit=true,signal_fire=true,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=west,lit=true,signal_fire=false,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=west,lit=true,signal_fire=false,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=west,lit=false,signal_fire=true,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=west,lit=false,signal_fire=true,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=west,lit=false,signal_fire=false,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=west,lit=false,signal_fire=false,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=east,lit=true,signal_fire=true,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=east,lit=true,signal_fire=true,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=east,lit=true,signal_fire=false,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=east,lit=true,signal_fire=false,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=east,lit=false,signal_fire=true,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=east,lit=false,signal_fire=true,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=east,lit=false,signal_fire=false,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:campfire[facing=east,lit=false,signal_fire=false,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=north,lit=true,signal_fire=true,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=north,lit=true,signal_fire=false,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=north,lit=true,signal_fire=false,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=north,lit=false,signal_fire=true,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=north,lit=false,signal_fire=true,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=north,lit=false,signal_fire=false,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=north,lit=false,signal_fire=false,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=south,lit=true,signal_fire=true,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=south,lit=true,signal_fire=true,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=south,lit=true,signal_fire=false,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=south,lit=true,signal_fire=false,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=south,lit=false,signal_fire=true,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=south,lit=false,signal_fire=true,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=south,lit=false,signal_fire=false,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=south,lit=false,signal_fire=false,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=west,lit=true,signal_fire=true,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=west,lit=true,signal_fire=true,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=west,lit=true,signal_fire=false,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=west,lit=true,signal_fire=false,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=west,lit=false,signal_fire=true,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=west,lit=false,signal_fire=true,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=west,lit=false,signal_fire=false,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=west,lit=false,signal_fire=false,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=east,lit=true,signal_fire=true,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=east,lit=true,signal_fire=true,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=east,lit=true,signal_fire=false,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=east,lit=true,signal_fire=false,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=east,lit=false,signal_fire=true,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=east,lit=false,signal_fire=true,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=east,lit=false,signal_fire=false,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:soul_campfire[facing=east,lit=false,signal_fire=false,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207 +minecraft:sweet_berry_bush 42 89 56 52 33 71 44 52 21 44 28 52 16 35 22 52 +minecraft:sweet_berry_bush[age=1] 47 94 57 138 37 75 45 138 23 47 28 138 18 37 22 138 +minecraft:sweet_berry_bush[age=2] 59 88 56 144 47 70 44 144 29 44 28 144 23 35 22 144 +minecraft:sweet_berry_bush[age=3] 68 77 50 161 54 61 40 161 34 38 25 161 27 30 20 161 +minecraft:warped_stem 57 59 77 255 45 47 61 255 28 29 38 255 22 23 30 255 +minecraft:warped_stem[axis=y] 57 103 103 255 45 82 82 255 28 51 51 255 22 41 41 255 +minecraft:warped_stem[axis=z] 57 59 77 255 45 47 61 255 28 29 38 255 22 23 30 255 +minecraft:stripped_warped_stem 57 150 147 255 45 120 117 255 28 75 73 255 22 60 58 255 +minecraft:stripped_warped_stem[axis=y] 52 128 124 255 41 102 99 255 26 64 62 255 20 51 49 255 +minecraft:stripped_warped_stem[axis=z] 57 150 147 255 45 120 117 255 28 75 73 255 22 60 58 255 +minecraft:warped_hyphae 57 59 77 255 45 47 61 255 28 29 38 255 22 23 30 255 +minecraft:warped_hyphae[axis=y] 57 59 77 255 45 47 61 255 28 29 38 255 22 23 30 255 +minecraft:warped_hyphae[axis=z] 57 59 77 255 45 47 61 255 28 29 38 255 22 23 30 255 +minecraft:stripped_warped_hyphae 57 150 147 255 45 120 117 255 28 75 73 255 22 60 58 255 +minecraft:stripped_warped_hyphae[axis=y] 57 150 147 255 45 120 117 255 28 75 73 255 22 60 58 255 +minecraft:stripped_warped_hyphae[axis=z] 57 150 147 255 45 120 117 255 28 75 73 255 22 60 58 255 +minecraft:warped_nylium 43 114 101 255 34 91 80 255 21 57 50 255 17 45 40 255 +minecraft:warped_fungus 74 109 87 49 59 87 69 49 37 54 43 49 29 43 34 49 +minecraft:warped_wart_block 22 119 121 255 17 95 96 255 11 59 60 255 8 47 48 255 +minecraft:warped_roots 20 138 124 91 16 110 99 91 10 69 62 91 8 55 49 91 +minecraft:nether_sprouts 19 151 133 30 15 120 106 30 9 75 66 30 7 60 53 30 +minecraft:crimson_stem 93 26 30 255 74 20 24 255 46 13 15 255 37 10 12 255 +minecraft:crimson_stem[axis=y] 107 51 74 255 85 40 59 255 53 25 37 255 42 20 29 255 +minecraft:crimson_stem[axis=z] 93 26 30 255 74 20 24 255 46 13 15 255 37 10 12 255 +minecraft:stripped_crimson_stem 137 57 90 255 109 45 72 255 68 28 45 255 54 22 36 255 +minecraft:stripped_crimson_stem[axis=y] 121 56 82 255 96 44 65 255 60 28 41 255 48 22 32 255 +minecraft:stripped_crimson_stem[axis=z] 137 57 90 255 109 45 72 255 68 28 45 255 54 22 36 255 +minecraft:crimson_hyphae 93 26 30 255 74 20 24 255 46 13 15 255 37 10 12 255 +minecraft:crimson_hyphae[axis=y] 93 26 30 255 74 20 24 255 46 13 15 255 37 10 12 255 +minecraft:crimson_hyphae[axis=z] 93 26 30 255 74 20 24 255 46 13 15 255 37 10 12 255 +minecraft:stripped_crimson_hyphae 137 57 90 255 109 45 72 255 68 28 45 255 54 22 36 255 +minecraft:stripped_crimson_hyphae[axis=y] 137 57 90 255 109 45 72 255 68 28 45 255 54 22 36 255 +minecraft:stripped_crimson_hyphae[axis=z] 137 57 90 255 109 45 72 255 68 28 45 255 54 22 36 255 +minecraft:crimson_nylium 130 31 31 255 104 24 24 255 65 15 15 255 52 12 12 255 +minecraft:crimson_fungus 141 44 29 59 112 35 23 59 70 22 14 59 56 17 11 59 +minecraft:shroomlight 240 146 70 255 192 116 56 255 120 73 35 255 96 58 28 255 +minecraft:weeping_vines 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=1] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=2] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=3] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=4] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=5] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=6] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=7] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=8] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=9] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=10] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=11] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=12] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=13] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=14] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=15] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=16] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=17] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=18] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=19] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=20] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=21] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=22] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=23] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=24] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines[age=25] 104 1 0 27 83 0 0 27 52 0 0 27 41 0 0 27 +minecraft:weeping_vines_plant 132 16 12 114 105 12 9 114 66 8 6 114 52 6 4 114 +minecraft:twisting_vines 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=1] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=2] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=3] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=4] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=5] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=6] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=7] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=8] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=9] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=10] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=11] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=12] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=13] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=14] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=15] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=16] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=17] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=18] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=19] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=20] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=21] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=22] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=23] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=24] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines[age=25] 20 143 124 70 16 114 99 70 10 71 62 70 8 57 49 70 +minecraft:twisting_vines_plant 20 135 122 89 16 108 97 89 10 67 61 89 8 54 48 89 +minecraft:crimson_roots 126 8 41 90 100 6 32 90 63 4 20 90 50 3 16 90 +minecraft:crimson_planks 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:warped_planks 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:crimson_slab 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_slab[type=top,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_slab[type=bottom,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_slab[type=bottom,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_slab[type=double,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_slab[type=double,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:warped_slab 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_slab[type=top,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_slab[type=bottom,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_slab[type=bottom,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_slab[type=double,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_slab[type=double,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:crimson_pressure_plate 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_pressure_plate[powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:warped_pressure_plate 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_pressure_plate[powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:crimson_fence 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=true,north=true,south=true,waterlogged=true,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=true,north=true,south=true,waterlogged=false,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=true,north=true,south=true,waterlogged=false,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=true,north=true,south=false,waterlogged=true,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=true,north=true,south=false,waterlogged=true,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=true,north=true,south=false,waterlogged=false,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=true,north=true,south=false,waterlogged=false,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=true,north=false,south=true,waterlogged=true,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=true,north=false,south=true,waterlogged=true,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=true,north=false,south=true,waterlogged=false,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=true,north=false,south=true,waterlogged=false,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=true,north=false,south=false,waterlogged=true,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=true,north=false,south=false,waterlogged=true,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=true,north=false,south=false,waterlogged=false,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=true,north=false,south=false,waterlogged=false,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=false,north=true,south=true,waterlogged=true,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=false,north=true,south=true,waterlogged=true,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=false,north=true,south=true,waterlogged=false,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=false,north=true,south=true,waterlogged=false,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=false,north=true,south=false,waterlogged=true,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=false,north=true,south=false,waterlogged=true,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=false,north=true,south=false,waterlogged=false,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=false,north=true,south=false,waterlogged=false,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=false,north=false,south=true,waterlogged=true,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=false,north=false,south=true,waterlogged=true,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=false,north=false,south=true,waterlogged=false,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=false,north=false,south=true,waterlogged=false,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=false,north=false,south=false,waterlogged=true,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=false,north=false,south=false,waterlogged=true,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=false,north=false,south=false,waterlogged=false,west=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence[east=false,north=false,south=false,waterlogged=false,west=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:warped_fence 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=true,north=true,south=true,waterlogged=true,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=true,north=true,south=true,waterlogged=false,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=true,north=true,south=true,waterlogged=false,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=true,north=true,south=false,waterlogged=true,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=true,north=true,south=false,waterlogged=true,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=true,north=true,south=false,waterlogged=false,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=true,north=true,south=false,waterlogged=false,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=true,north=false,south=true,waterlogged=true,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=true,north=false,south=true,waterlogged=true,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=true,north=false,south=true,waterlogged=false,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=true,north=false,south=true,waterlogged=false,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=true,north=false,south=false,waterlogged=true,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=true,north=false,south=false,waterlogged=true,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=true,north=false,south=false,waterlogged=false,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=true,north=false,south=false,waterlogged=false,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=false,north=true,south=true,waterlogged=true,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=false,north=true,south=true,waterlogged=true,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=false,north=true,south=true,waterlogged=false,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=false,north=true,south=true,waterlogged=false,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=false,north=true,south=false,waterlogged=true,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=false,north=true,south=false,waterlogged=true,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=false,north=true,south=false,waterlogged=false,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=false,north=true,south=false,waterlogged=false,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=false,north=false,south=true,waterlogged=true,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=false,north=false,south=true,waterlogged=true,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=false,north=false,south=true,waterlogged=false,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=false,north=false,south=true,waterlogged=false,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=false,north=false,south=false,waterlogged=true,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=false,north=false,south=false,waterlogged=true,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=false,north=false,south=false,waterlogged=false,west=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence[east=false,north=false,south=false,waterlogged=false,west=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:crimson_trapdoor 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:crimson_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false] 103 50 72 215 82 40 57 215 51 25 36 215 41 20 28 215 +minecraft:warped_trapdoor 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:warped_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false] 47 119 111 200 37 95 88 200 23 59 55 200 18 47 44 200 +minecraft:crimson_fence_gate 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=north,in_wall=true,open=true,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=north,in_wall=true,open=false,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=north,in_wall=true,open=false,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=north,in_wall=false,open=true,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=north,in_wall=false,open=true,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=north,in_wall=false,open=false,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=north,in_wall=false,open=false,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=south,in_wall=true,open=true,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=south,in_wall=true,open=true,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=south,in_wall=true,open=false,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=south,in_wall=true,open=false,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=south,in_wall=false,open=true,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=south,in_wall=false,open=true,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=south,in_wall=false,open=false,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=south,in_wall=false,open=false,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=west,in_wall=true,open=true,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=west,in_wall=true,open=true,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=west,in_wall=true,open=false,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=west,in_wall=true,open=false,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=west,in_wall=false,open=true,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=west,in_wall=false,open=true,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=west,in_wall=false,open=false,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=west,in_wall=false,open=false,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=east,in_wall=true,open=true,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=east,in_wall=true,open=true,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=east,in_wall=true,open=false,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=east,in_wall=true,open=false,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=east,in_wall=false,open=true,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=east,in_wall=false,open=true,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=east,in_wall=false,open=false,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_fence_gate[facing=east,in_wall=false,open=false,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:warped_fence_gate 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=north,in_wall=true,open=true,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=north,in_wall=true,open=false,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=north,in_wall=true,open=false,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=north,in_wall=false,open=true,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=north,in_wall=false,open=true,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=north,in_wall=false,open=false,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=north,in_wall=false,open=false,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=south,in_wall=true,open=true,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=south,in_wall=true,open=true,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=south,in_wall=true,open=false,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=south,in_wall=true,open=false,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=south,in_wall=false,open=true,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=south,in_wall=false,open=true,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=south,in_wall=false,open=false,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=south,in_wall=false,open=false,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=west,in_wall=true,open=true,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=west,in_wall=true,open=true,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=west,in_wall=true,open=false,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=west,in_wall=true,open=false,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=west,in_wall=false,open=true,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=west,in_wall=false,open=true,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=west,in_wall=false,open=false,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=west,in_wall=false,open=false,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=east,in_wall=true,open=true,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=east,in_wall=true,open=true,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=east,in_wall=true,open=false,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=east,in_wall=true,open=false,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=east,in_wall=false,open=true,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=east,in_wall=false,open=true,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=east,in_wall=false,open=false,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_fence_gate[facing=east,in_wall=false,open=false,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:crimson_stairs 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=top,shape=straight,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=top,shape=straight,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=top,shape=straight,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=top,shape=straight,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=top,shape=straight,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=top,shape=straight,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=top,shape=straight,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:warped_stairs 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=top,shape=straight,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=top,shape=straight,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=top,shape=straight,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=top,shape=straight,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=top,shape=straight,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=top,shape=straight,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=top,shape=straight,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:crimson_button 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=floor,facing=north,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=floor,facing=south,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=floor,facing=south,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=floor,facing=west,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=floor,facing=west,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=floor,facing=east,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=floor,facing=east,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=wall,facing=north,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=wall,facing=north,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=wall,facing=south,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=wall,facing=south,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=wall,facing=west,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=wall,facing=west,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=wall,facing=east,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=wall,facing=east,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=ceiling,facing=north,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=ceiling,facing=north,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=ceiling,facing=south,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=ceiling,facing=south,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=ceiling,facing=west,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=ceiling,facing=west,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=ceiling,facing=east,powered=true] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:crimson_button[face=ceiling,facing=east,powered=false] 101 48 70 255 80 38 56 255 50 24 35 255 40 19 28 255 +minecraft:warped_button 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=floor,facing=north,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=floor,facing=south,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=floor,facing=south,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=floor,facing=west,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=floor,facing=west,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=floor,facing=east,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=floor,facing=east,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=wall,facing=north,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=wall,facing=north,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=wall,facing=south,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=wall,facing=south,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=wall,facing=west,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=wall,facing=west,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=wall,facing=east,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=wall,facing=east,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=ceiling,facing=north,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=ceiling,facing=north,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=ceiling,facing=south,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=ceiling,facing=south,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=ceiling,facing=west,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=ceiling,facing=west,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=ceiling,facing=east,powered=true] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:warped_button[face=ceiling,facing=east,powered=false] 43 104 99 255 34 83 79 255 21 52 49 255 17 41 39 255 +minecraft:crimson_door 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=north,half=upper,hinge=left,open=true,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=north,half=upper,hinge=left,open=false,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=north,half=upper,hinge=left,open=false,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=north,half=upper,hinge=right,open=true,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=north,half=upper,hinge=right,open=true,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=north,half=upper,hinge=right,open=false,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=north,half=upper,hinge=right,open=false,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=north,half=lower,hinge=left,open=true,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=north,half=lower,hinge=left,open=true,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=north,half=lower,hinge=left,open=false,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=north,half=lower,hinge=left,open=false,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=north,half=lower,hinge=right,open=true,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=north,half=lower,hinge=right,open=true,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=north,half=lower,hinge=right,open=false,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=north,half=lower,hinge=right,open=false,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=south,half=upper,hinge=left,open=true,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=south,half=upper,hinge=left,open=true,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=south,half=upper,hinge=left,open=false,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=south,half=upper,hinge=left,open=false,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=south,half=upper,hinge=right,open=true,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=south,half=upper,hinge=right,open=true,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=south,half=upper,hinge=right,open=false,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=south,half=upper,hinge=right,open=false,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=south,half=lower,hinge=left,open=true,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=south,half=lower,hinge=left,open=true,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=south,half=lower,hinge=left,open=false,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=south,half=lower,hinge=left,open=false,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=south,half=lower,hinge=right,open=true,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=south,half=lower,hinge=right,open=true,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=south,half=lower,hinge=right,open=false,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=south,half=lower,hinge=right,open=false,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=west,half=upper,hinge=left,open=true,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=west,half=upper,hinge=left,open=true,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=west,half=upper,hinge=left,open=false,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=west,half=upper,hinge=left,open=false,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=west,half=upper,hinge=right,open=true,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=west,half=upper,hinge=right,open=true,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=west,half=upper,hinge=right,open=false,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=west,half=upper,hinge=right,open=false,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=west,half=lower,hinge=left,open=true,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=west,half=lower,hinge=left,open=true,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=west,half=lower,hinge=left,open=false,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=west,half=lower,hinge=left,open=false,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=west,half=lower,hinge=right,open=true,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=west,half=lower,hinge=right,open=true,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=west,half=lower,hinge=right,open=false,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=west,half=lower,hinge=right,open=false,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=east,half=upper,hinge=left,open=true,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=east,half=upper,hinge=left,open=true,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=east,half=upper,hinge=left,open=false,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=east,half=upper,hinge=left,open=false,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=east,half=upper,hinge=right,open=true,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=east,half=upper,hinge=right,open=true,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=east,half=upper,hinge=right,open=false,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=east,half=upper,hinge=right,open=false,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=east,half=lower,hinge=left,open=true,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=east,half=lower,hinge=left,open=true,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=east,half=lower,hinge=left,open=false,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=east,half=lower,hinge=left,open=false,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=east,half=lower,hinge=right,open=true,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=east,half=lower,hinge=right,open=true,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=east,half=lower,hinge=right,open=false,powered=true] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:crimson_door[facing=east,half=lower,hinge=right,open=false,powered=false] 114 54 79 255 91 43 63 255 57 27 39 255 45 21 31 255 +minecraft:warped_door 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=north,half=upper,hinge=left,open=true,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=north,half=upper,hinge=left,open=false,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=north,half=upper,hinge=left,open=false,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=north,half=upper,hinge=right,open=true,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=north,half=upper,hinge=right,open=true,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=north,half=upper,hinge=right,open=false,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=north,half=upper,hinge=right,open=false,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=north,half=lower,hinge=left,open=true,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=north,half=lower,hinge=left,open=true,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=north,half=lower,hinge=left,open=false,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=north,half=lower,hinge=left,open=false,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=north,half=lower,hinge=right,open=true,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=north,half=lower,hinge=right,open=true,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=north,half=lower,hinge=right,open=false,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=north,half=lower,hinge=right,open=false,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=south,half=upper,hinge=left,open=true,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=south,half=upper,hinge=left,open=true,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=south,half=upper,hinge=left,open=false,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=south,half=upper,hinge=left,open=false,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=south,half=upper,hinge=right,open=true,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=south,half=upper,hinge=right,open=true,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=south,half=upper,hinge=right,open=false,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=south,half=upper,hinge=right,open=false,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=south,half=lower,hinge=left,open=true,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=south,half=lower,hinge=left,open=true,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=south,half=lower,hinge=left,open=false,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=south,half=lower,hinge=left,open=false,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=south,half=lower,hinge=right,open=true,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=south,half=lower,hinge=right,open=true,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=south,half=lower,hinge=right,open=false,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=south,half=lower,hinge=right,open=false,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=west,half=upper,hinge=left,open=true,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=west,half=upper,hinge=left,open=true,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=west,half=upper,hinge=left,open=false,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=west,half=upper,hinge=left,open=false,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=west,half=upper,hinge=right,open=true,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=west,half=upper,hinge=right,open=true,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=west,half=upper,hinge=right,open=false,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=west,half=upper,hinge=right,open=false,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=west,half=lower,hinge=left,open=true,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=west,half=lower,hinge=left,open=true,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=west,half=lower,hinge=left,open=false,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=west,half=lower,hinge=left,open=false,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=west,half=lower,hinge=right,open=true,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=west,half=lower,hinge=right,open=true,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=west,half=lower,hinge=right,open=false,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=west,half=lower,hinge=right,open=false,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=east,half=upper,hinge=left,open=true,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=east,half=upper,hinge=left,open=true,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=east,half=upper,hinge=left,open=false,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=east,half=upper,hinge=left,open=false,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=east,half=upper,hinge=right,open=true,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=east,half=upper,hinge=right,open=true,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=east,half=upper,hinge=right,open=false,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=east,half=upper,hinge=right,open=false,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=east,half=lower,hinge=left,open=true,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=east,half=lower,hinge=left,open=true,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=east,half=lower,hinge=left,open=false,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=east,half=lower,hinge=left,open=false,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=east,half=lower,hinge=right,open=true,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=east,half=lower,hinge=right,open=true,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=east,half=lower,hinge=right,open=false,powered=true] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:warped_door[facing=east,half=lower,hinge=right,open=false,powered=false] 44 126 120 255 35 100 96 255 22 63 60 255 17 50 48 255 +minecraft:crimson_sign 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=0,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=1,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=1,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=2,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=2,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=3,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=3,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=4,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=4,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=5,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=5,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=6,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=6,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=7,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=7,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=8,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=8,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=9,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=9,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=10,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=10,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=11,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=11,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=12,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=12,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=13,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=13,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=14,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=14,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=15,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_sign[rotation=15,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:warped_sign 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=0,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=1,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=1,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=2,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=2,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=3,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=3,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=4,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=4,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=5,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=5,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=6,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=6,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=7,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=7,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=8,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=8,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=9,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=9,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=10,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=10,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=11,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=11,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=12,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=12,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=13,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=13,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=14,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=14,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=15,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_sign[rotation=15,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:crimson_wall_sign 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_wall_sign[facing=north,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_wall_sign[facing=south,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_wall_sign[facing=south,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_wall_sign[facing=west,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_wall_sign[facing=west,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_wall_sign[facing=east,waterlogged=true] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:crimson_wall_sign[facing=east,waterlogged=false] 105 49 72 10 84 39 57 10 52 24 36 10 42 19 28 10 +minecraft:warped_wall_sign 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_wall_sign[facing=north,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_wall_sign[facing=south,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_wall_sign[facing=south,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_wall_sign[facing=west,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_wall_sign[facing=west,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_wall_sign[facing=east,waterlogged=true] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:warped_wall_sign[facing=east,waterlogged=false] 44 108 104 10 35 86 83 10 22 54 52 10 17 43 41 10 +minecraft:structure_block 86 71 87 255 68 56 69 255 43 35 43 255 34 28 34 255 +minecraft:structure_block[mode=load] 69 57 70 255 55 45 56 255 34 28 35 255 27 22 28 255 +minecraft:structure_block[mode=corner] 68 57 69 255 54 45 55 255 34 28 34 255 27 22 27 255 +minecraft:structure_block[mode=data] 79 65 80 255 63 52 64 255 39 32 40 255 31 26 32 255 +minecraft:jigsaw 34 27 37 255 27 21 29 255 17 13 18 255 13 10 14 255 +minecraft:jigsaw[orientation=down_north] 34 27 37 255 27 21 29 255 17 13 18 255 13 10 14 255 +minecraft:jigsaw[orientation=down_south] 34 27 37 255 27 21 29 255 17 13 18 255 13 10 14 255 +minecraft:jigsaw[orientation=down_west] 34 27 37 255 27 21 29 255 17 13 18 255 13 10 14 255 +minecraft:jigsaw[orientation=up_east] 34 27 37 255 27 21 29 255 17 13 18 255 13 10 14 255 +minecraft:jigsaw[orientation=up_north] 34 27 37 255 27 21 29 255 17 13 18 255 13 10 14 255 +minecraft:jigsaw[orientation=up_south] 34 27 37 255 27 21 29 255 17 13 18 255 13 10 14 255 +minecraft:jigsaw[orientation=up_west] 34 27 37 255 27 21 29 255 17 13 18 255 13 10 14 255 +minecraft:jigsaw[orientation=west_up] 34 27 37 255 27 21 29 255 17 13 18 255 13 10 14 255 +minecraft:jigsaw[orientation=east_up] 34 27 37 255 27 21 29 255 17 13 18 255 13 10 14 255 +minecraft:jigsaw[orientation=north_up] 34 27 37 255 27 21 29 255 17 13 18 255 13 10 14 255 +minecraft:jigsaw[orientation=south_up] 34 27 37 255 27 21 29 255 17 13 18 255 13 10 14 255 +minecraft:composter 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143 +minecraft:composter[level=1] 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143 +minecraft:composter[level=2] 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143 +minecraft:composter[level=3] 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143 +minecraft:composter[level=4] 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143 +minecraft:composter[level=5] 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143 +minecraft:composter[level=6] 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143 +minecraft:composter[level=7] 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143 +minecraft:composter[level=8] 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143 +minecraft:target 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 +minecraft:target[power=1] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 +minecraft:target[power=2] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 +minecraft:target[power=3] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 +minecraft:target[power=4] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 +minecraft:target[power=5] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 +minecraft:target[power=6] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 +minecraft:target[power=7] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 +minecraft:target[power=8] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 +minecraft:target[power=9] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 +minecraft:target[power=10] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 +minecraft:target[power=11] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 +minecraft:target[power=12] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 +minecraft:target[power=13] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 +minecraft:target[power=14] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 +minecraft:target[power=15] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255 +minecraft:bee_nest 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=north,honey_level=1] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=north,honey_level=2] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=north,honey_level=3] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=north,honey_level=4] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=north,honey_level=5] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=south,honey_level=0] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=south,honey_level=1] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=south,honey_level=2] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=south,honey_level=3] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=south,honey_level=4] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=south,honey_level=5] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=west,honey_level=0] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=west,honey_level=1] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=west,honey_level=2] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=west,honey_level=3] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=west,honey_level=4] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=west,honey_level=5] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=east,honey_level=0] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=east,honey_level=1] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=east,honey_level=2] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=east,honey_level=3] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=east,honey_level=4] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:bee_nest[facing=east,honey_level=5] 202 160 74 255 161 128 59 255 101 80 37 255 80 64 29 255 +minecraft:beehive 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=north,honey_level=1] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=north,honey_level=2] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=north,honey_level=3] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=north,honey_level=4] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=north,honey_level=5] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=south,honey_level=0] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=south,honey_level=1] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=south,honey_level=2] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=south,honey_level=3] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=south,honey_level=4] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=south,honey_level=5] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=west,honey_level=0] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=west,honey_level=1] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=west,honey_level=2] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=west,honey_level=3] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=west,honey_level=4] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=west,honey_level=5] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=east,honey_level=0] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=east,honey_level=1] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=east,honey_level=2] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=east,honey_level=3] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=east,honey_level=4] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:beehive[facing=east,honey_level=5] 180 146 90 255 144 116 72 255 90 73 45 255 72 58 36 255 +minecraft:honey_block 251 185 52 191 200 148 41 191 125 92 26 191 100 74 20 191 +minecraft:honeycomb_block 229 148 29 255 183 118 23 255 114 74 14 255 91 59 11 255 +minecraft:netherite_block 66 61 63 255 52 48 50 255 33 30 31 255 26 24 25 255 +minecraft:ancient_debris 94 66 58 255 75 52 46 255 47 33 29 255 37 26 23 255 +minecraft:crying_obsidian 32 10 60 255 25 8 48 255 16 5 30 255 12 4 24 255 +minecraft:respawn_anchor 33 21 52 255 26 16 41 255 16 10 26 255 13 8 20 255 +minecraft:respawn_anchor[charges=1] 75 27 144 219 60 21 115 219 37 13 72 219 30 10 57 219 +minecraft:respawn_anchor[charges=2] 75 27 144 219 60 21 115 219 37 13 72 219 30 10 57 219 +minecraft:respawn_anchor[charges=3] 75 27 144 219 60 21 115 219 37 13 72 219 30 10 57 219 +minecraft:respawn_anchor[charges=4] 75 27 144 219 60 21 115 219 37 13 72 219 30 10 57 219 +minecraft:potted_crimson_fungus 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_warped_fungus 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_crimson_roots 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:potted_warped_roots 124 68 53 49 99 54 42 49 62 34 26 49 49 27 21 49 +minecraft:lodestone 147 149 152 255 117 119 121 255 73 74 76 255 58 59 60 255 +minecraft:blackstone 42 36 41 255 33 28 32 255 21 18 20 255 16 14 16 255 +minecraft:blackstone_stairs 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=top,shape=straight,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=top,shape=straight,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=top,shape=straight,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=top,shape=straight,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=top,shape=straight,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=top,shape=straight,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=top,shape=straight,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 42 35 40 255 33 28 32 255 21 17 20 255 16 14 16 255 +minecraft:blackstone_slab 42 36 41 255 33 28 32 255 21 18 20 255 16 14 16 255 +minecraft:blackstone_slab[type=top,waterlogged=false] 42 36 41 255 33 28 32 255 21 18 20 255 16 14 16 255 +minecraft:blackstone_slab[type=bottom,waterlogged=true] 42 36 41 255 33 28 32 255 21 18 20 255 16 14 16 255 +minecraft:blackstone_slab[type=bottom,waterlogged=false] 42 36 41 255 33 28 32 255 21 18 20 255 16 14 16 255 +minecraft:blackstone_slab[type=double,waterlogged=true] 42 36 41 255 33 28 32 255 21 18 20 255 16 14 16 255 +minecraft:blackstone_slab[type=double,waterlogged=false] 42 36 41 255 33 28 32 255 21 18 20 255 16 14 16 255 +minecraft:polished_blackstone 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_bricks 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:cracked_polished_blackstone_bricks 44 37 43 255 35 29 34 255 22 18 21 255 17 14 17 255 +minecraft:chiseled_polished_blackstone 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_brick_slab 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_slab[type=top,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_slab[type=bottom,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_slab[type=bottom,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_slab[type=double,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_slab[type=double,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 48 42 49 255 38 33 39 255 24 21 24 255 19 16 19 255 +minecraft:gilded_blackstone 55 42 38 255 44 33 30 255 27 21 19 255 22 16 15 255 +minecraft:polished_blackstone_stairs 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=top,shape=straight,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=top,shape=straight,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=top,shape=straight,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=top,shape=straight,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=top,shape=straight,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=top,shape=straight,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=top,shape=straight,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_slab 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_slab[type=top,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_slab[type=bottom,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_slab[type=bottom,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_slab[type=double,waterlogged=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_slab[type=double,waterlogged=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_pressure_plate 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_pressure_plate[powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=floor,facing=north,powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=floor,facing=south,powered=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=floor,facing=south,powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=floor,facing=west,powered=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=floor,facing=west,powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=floor,facing=east,powered=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=floor,facing=east,powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=wall,facing=north,powered=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=wall,facing=north,powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=wall,facing=south,powered=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=wall,facing=south,powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=wall,facing=west,powered=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=wall,facing=west,powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=wall,facing=east,powered=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=wall,facing=east,powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=ceiling,facing=north,powered=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=ceiling,facing=north,powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=ceiling,facing=south,powered=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=ceiling,facing=south,powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=ceiling,facing=west,powered=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=ceiling,facing=west,powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=ceiling,facing=east,powered=true] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_button[face=ceiling,facing=east,powered=false] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall] 53 48 56 255 42 38 44 255 26 24 28 255 21 19 22 255 +minecraft:chiseled_nether_bricks 47 23 28 255 37 18 22 255 23 11 14 255 18 9 11 255 +minecraft:cracked_nether_bricks 40 20 23 255 32 16 18 255 20 10 11 255 16 8 9 255 +minecraft:quartz_bricks 234 229 221 255 187 183 176 255 117 114 110 255 93 91 88 255 +minecraft:candle 235 210 173 20 188 168 138 20 117 105 86 20 94 84 69 20 +minecraft:candle[candles=1,lit=true,waterlogged=false] 235 210 173 20 188 168 138 20 117 105 86 20 94 84 69 20 +minecraft:candle[candles=1,lit=false,waterlogged=true] 232 200 153 20 185 160 122 20 116 100 76 20 92 80 61 20 +minecraft:candle[candles=1,lit=false,waterlogged=false] 232 200 153 20 185 160 122 20 116 100 76 20 92 80 61 20 +minecraft:candle[candles=2,lit=true,waterlogged=true] 235 210 173 20 188 168 138 20 117 105 86 20 94 84 69 20 +minecraft:candle[candles=2,lit=true,waterlogged=false] 235 210 173 20 188 168 138 20 117 105 86 20 94 84 69 20 +minecraft:candle[candles=2,lit=false,waterlogged=true] 232 200 153 20 185 160 122 20 116 100 76 20 92 80 61 20 +minecraft:candle[candles=2,lit=false,waterlogged=false] 232 200 153 20 185 160 122 20 116 100 76 20 92 80 61 20 +minecraft:candle[candles=3,lit=true,waterlogged=true] 235 210 173 20 188 168 138 20 117 105 86 20 94 84 69 20 +minecraft:candle[candles=3,lit=true,waterlogged=false] 235 210 173 20 188 168 138 20 117 105 86 20 94 84 69 20 +minecraft:candle[candles=3,lit=false,waterlogged=true] 232 200 153 20 185 160 122 20 116 100 76 20 92 80 61 20 +minecraft:candle[candles=3,lit=false,waterlogged=false] 232 200 153 20 185 160 122 20 116 100 76 20 92 80 61 20 +minecraft:candle[candles=4,lit=true,waterlogged=true] 235 210 173 20 188 168 138 20 117 105 86 20 94 84 69 20 +minecraft:candle[candles=4,lit=true,waterlogged=false] 235 210 173 20 188 168 138 20 117 105 86 20 94 84 69 20 +minecraft:candle[candles=4,lit=false,waterlogged=true] 232 200 153 20 185 160 122 20 116 100 76 20 92 80 61 20 +minecraft:candle[candles=4,lit=false,waterlogged=false] 232 200 153 20 185 160 122 20 116 100 76 20 92 80 61 20 +minecraft:white_candle 217 217 206 20 173 173 164 20 108 108 103 20 86 86 82 20 +minecraft:white_candle[candles=1,lit=true,waterlogged=false] 217 217 206 20 173 173 164 20 108 108 103 20 86 86 82 20 +minecraft:white_candle[candles=1,lit=false,waterlogged=true] 210 216 217 20 168 172 173 20 105 108 108 20 84 86 86 20 +minecraft:white_candle[candles=1,lit=false,waterlogged=false] 210 216 217 20 168 172 173 20 105 108 108 20 84 86 86 20 +minecraft:white_candle[candles=2,lit=true,waterlogged=true] 217 217 206 20 173 173 164 20 108 108 103 20 86 86 82 20 +minecraft:white_candle[candles=2,lit=true,waterlogged=false] 217 217 206 20 173 173 164 20 108 108 103 20 86 86 82 20 +minecraft:white_candle[candles=2,lit=false,waterlogged=true] 210 216 217 20 168 172 173 20 105 108 108 20 84 86 86 20 +minecraft:white_candle[candles=2,lit=false,waterlogged=false] 210 216 217 20 168 172 173 20 105 108 108 20 84 86 86 20 +minecraft:white_candle[candles=3,lit=true,waterlogged=true] 217 217 206 20 173 173 164 20 108 108 103 20 86 86 82 20 +minecraft:white_candle[candles=3,lit=true,waterlogged=false] 217 217 206 20 173 173 164 20 108 108 103 20 86 86 82 20 +minecraft:white_candle[candles=3,lit=false,waterlogged=true] 210 216 217 20 168 172 173 20 105 108 108 20 84 86 86 20 +minecraft:white_candle[candles=3,lit=false,waterlogged=false] 210 216 217 20 168 172 173 20 105 108 108 20 84 86 86 20 +minecraft:white_candle[candles=4,lit=true,waterlogged=true] 217 217 206 20 173 173 164 20 108 108 103 20 86 86 82 20 +minecraft:white_candle[candles=4,lit=true,waterlogged=false] 217 217 206 20 173 173 164 20 108 108 103 20 86 86 82 20 +minecraft:white_candle[candles=4,lit=false,waterlogged=true] 210 216 217 20 168 172 173 20 105 108 108 20 84 86 86 20 +minecraft:white_candle[candles=4,lit=false,waterlogged=false] 210 216 217 20 168 172 173 20 105 108 108 20 84 86 86 20 +minecraft:orange_candle 226 131 26 20 180 104 20 20 113 65 13 20 90 52 10 20 +minecraft:orange_candle[candles=1,lit=true,waterlogged=false] 226 131 26 20 180 104 20 20 113 65 13 20 90 52 10 20 +minecraft:orange_candle[candles=1,lit=false,waterlogged=true] 219 100 9 20 175 80 7 20 109 50 4 20 87 40 3 20 +minecraft:orange_candle[candles=1,lit=false,waterlogged=false] 219 100 9 20 175 80 7 20 109 50 4 20 87 40 3 20 +minecraft:orange_candle[candles=2,lit=true,waterlogged=true] 226 131 26 20 180 104 20 20 113 65 13 20 90 52 10 20 +minecraft:orange_candle[candles=2,lit=true,waterlogged=false] 226 131 26 20 180 104 20 20 113 65 13 20 90 52 10 20 +minecraft:orange_candle[candles=2,lit=false,waterlogged=true] 219 100 9 20 175 80 7 20 109 50 4 20 87 40 3 20 +minecraft:orange_candle[candles=2,lit=false,waterlogged=false] 219 100 9 20 175 80 7 20 109 50 4 20 87 40 3 20 +minecraft:orange_candle[candles=3,lit=true,waterlogged=true] 226 131 26 20 180 104 20 20 113 65 13 20 90 52 10 20 +minecraft:orange_candle[candles=3,lit=true,waterlogged=false] 226 131 26 20 180 104 20 20 113 65 13 20 90 52 10 20 +minecraft:orange_candle[candles=3,lit=false,waterlogged=true] 219 100 9 20 175 80 7 20 109 50 4 20 87 40 3 20 +minecraft:orange_candle[candles=3,lit=false,waterlogged=false] 219 100 9 20 175 80 7 20 109 50 4 20 87 40 3 20 +minecraft:orange_candle[candles=4,lit=true,waterlogged=true] 226 131 26 20 180 104 20 20 113 65 13 20 90 52 10 20 +minecraft:orange_candle[candles=4,lit=true,waterlogged=false] 226 131 26 20 180 104 20 20 113 65 13 20 90 52 10 20 +minecraft:orange_candle[candles=4,lit=false,waterlogged=true] 219 100 9 20 175 80 7 20 109 50 4 20 87 40 3 20 +minecraft:orange_candle[candles=4,lit=false,waterlogged=false] 219 100 9 20 175 80 7 20 109 50 4 20 87 40 3 20 +minecraft:magenta_candle 182 69 161 20 145 55 128 20 91 34 80 20 72 27 64 20 +minecraft:magenta_candle[candles=1,lit=true,waterlogged=false] 182 69 161 20 145 55 128 20 91 34 80 20 72 27 64 20 +minecraft:magenta_candle[candles=1,lit=false,waterlogged=true] 160 45 153 20 128 36 122 20 80 22 76 20 64 18 61 20 +minecraft:magenta_candle[candles=1,lit=false,waterlogged=false] 160 45 153 20 128 36 122 20 80 22 76 20 64 18 61 20 +minecraft:magenta_candle[candles=2,lit=true,waterlogged=true] 182 69 161 20 145 55 128 20 91 34 80 20 72 27 64 20 +minecraft:magenta_candle[candles=2,lit=true,waterlogged=false] 182 69 161 20 145 55 128 20 91 34 80 20 72 27 64 20 +minecraft:magenta_candle[candles=2,lit=false,waterlogged=true] 160 45 153 20 128 36 122 20 80 22 76 20 64 18 61 20 +minecraft:magenta_candle[candles=2,lit=false,waterlogged=false] 160 45 153 20 128 36 122 20 80 22 76 20 64 18 61 20 +minecraft:magenta_candle[candles=3,lit=true,waterlogged=true] 182 69 161 20 145 55 128 20 91 34 80 20 72 27 64 20 +minecraft:magenta_candle[candles=3,lit=true,waterlogged=false] 182 69 161 20 145 55 128 20 91 34 80 20 72 27 64 20 +minecraft:magenta_candle[candles=3,lit=false,waterlogged=true] 160 45 153 20 128 36 122 20 80 22 76 20 64 18 61 20 +minecraft:magenta_candle[candles=3,lit=false,waterlogged=false] 160 45 153 20 128 36 122 20 80 22 76 20 64 18 61 20 +minecraft:magenta_candle[candles=4,lit=true,waterlogged=true] 182 69 161 20 145 55 128 20 91 34 80 20 72 27 64 20 +minecraft:magenta_candle[candles=4,lit=true,waterlogged=false] 182 69 161 20 145 55 128 20 91 34 80 20 72 27 64 20 +minecraft:magenta_candle[candles=4,lit=false,waterlogged=true] 160 45 153 20 128 36 122 20 80 22 76 20 64 18 61 20 +minecraft:magenta_candle[candles=4,lit=false,waterlogged=false] 160 45 153 20 128 36 122 20 80 22 76 20 64 18 61 20 +minecraft:light_blue_candle 69 161 201 20 55 128 160 20 34 80 100 20 27 64 80 20 +minecraft:light_blue_candle[candles=1,lit=true,waterlogged=false] 69 161 201 20 55 128 160 20 34 80 100 20 27 64 80 20 +minecraft:light_blue_candle[candles=1,lit=false,waterlogged=true] 34 137 196 20 27 109 156 20 17 68 98 20 13 54 78 20 +minecraft:light_blue_candle[candles=1,lit=false,waterlogged=false] 34 137 196 20 27 109 156 20 17 68 98 20 13 54 78 20 +minecraft:light_blue_candle[candles=2,lit=true,waterlogged=true] 69 161 201 20 55 128 160 20 34 80 100 20 27 64 80 20 +minecraft:light_blue_candle[candles=2,lit=true,waterlogged=false] 69 161 201 20 55 128 160 20 34 80 100 20 27 64 80 20 +minecraft:light_blue_candle[candles=2,lit=false,waterlogged=true] 34 137 196 20 27 109 156 20 17 68 98 20 13 54 78 20 +minecraft:light_blue_candle[candles=2,lit=false,waterlogged=false] 34 137 196 20 27 109 156 20 17 68 98 20 13 54 78 20 +minecraft:light_blue_candle[candles=3,lit=true,waterlogged=true] 69 161 201 20 55 128 160 20 34 80 100 20 27 64 80 20 +minecraft:light_blue_candle[candles=3,lit=true,waterlogged=false] 69 161 201 20 55 128 160 20 34 80 100 20 27 64 80 20 +minecraft:light_blue_candle[candles=3,lit=false,waterlogged=true] 34 137 196 20 27 109 156 20 17 68 98 20 13 54 78 20 +minecraft:light_blue_candle[candles=3,lit=false,waterlogged=false] 34 137 196 20 27 109 156 20 17 68 98 20 13 54 78 20 +minecraft:light_blue_candle[candles=4,lit=true,waterlogged=true] 69 161 201 20 55 128 160 20 34 80 100 20 27 64 80 20 +minecraft:light_blue_candle[candles=4,lit=true,waterlogged=false] 69 161 201 20 55 128 160 20 34 80 100 20 27 64 80 20 +minecraft:light_blue_candle[candles=4,lit=false,waterlogged=true] 34 137 196 20 27 109 156 20 17 68 98 20 13 54 78 20 +minecraft:light_blue_candle[candles=4,lit=false,waterlogged=false] 34 137 196 20 27 109 156 20 17 68 98 20 13 54 78 20 +minecraft:yellow_candle 216 183 74 20 172 146 59 20 108 91 37 20 86 73 29 20 +minecraft:yellow_candle[candles=1,lit=true,waterlogged=false] 216 183 74 20 172 146 59 20 108 91 37 20 86 73 29 20 +minecraft:yellow_candle[candles=1,lit=false,waterlogged=true] 209 164 50 20 167 131 40 20 104 82 25 20 83 65 20 20 +minecraft:yellow_candle[candles=1,lit=false,waterlogged=false] 209 164 50 20 167 131 40 20 104 82 25 20 83 65 20 20 +minecraft:yellow_candle[candles=2,lit=true,waterlogged=true] 216 183 74 20 172 146 59 20 108 91 37 20 86 73 29 20 +minecraft:yellow_candle[candles=2,lit=true,waterlogged=false] 216 183 74 20 172 146 59 20 108 91 37 20 86 73 29 20 +minecraft:yellow_candle[candles=2,lit=false,waterlogged=true] 209 164 50 20 167 131 40 20 104 82 25 20 83 65 20 20 +minecraft:yellow_candle[candles=2,lit=false,waterlogged=false] 209 164 50 20 167 131 40 20 104 82 25 20 83 65 20 20 +minecraft:yellow_candle[candles=3,lit=true,waterlogged=true] 216 183 74 20 172 146 59 20 108 91 37 20 86 73 29 20 +minecraft:yellow_candle[candles=3,lit=true,waterlogged=false] 216 183 74 20 172 146 59 20 108 91 37 20 86 73 29 20 +minecraft:yellow_candle[candles=3,lit=false,waterlogged=true] 209 164 50 20 167 131 40 20 104 82 25 20 83 65 20 20 +minecraft:yellow_candle[candles=3,lit=false,waterlogged=false] 209 164 50 20 167 131 40 20 104 82 25 20 83 65 20 20 +minecraft:yellow_candle[candles=4,lit=true,waterlogged=true] 216 183 74 20 172 146 59 20 108 91 37 20 86 73 29 20 +minecraft:yellow_candle[candles=4,lit=true,waterlogged=false] 216 183 74 20 172 146 59 20 108 91 37 20 86 73 29 20 +minecraft:yellow_candle[candles=4,lit=false,waterlogged=true] 209 164 50 20 167 131 40 20 104 82 25 20 83 65 20 20 +minecraft:yellow_candle[candles=4,lit=false,waterlogged=false] 209 164 50 20 167 131 40 20 104 82 25 20 83 65 20 20 +minecraft:lime_candle 124 181 30 20 99 144 24 20 62 90 15 20 49 72 12 20 +minecraft:lime_candle[candles=1,lit=true,waterlogged=false] 124 181 30 20 99 144 24 20 62 90 15 20 49 72 12 20 +minecraft:lime_candle[candles=1,lit=false,waterlogged=true] 98 171 22 20 78 136 17 20 49 85 11 20 39 68 8 20 +minecraft:lime_candle[candles=1,lit=false,waterlogged=false] 98 171 22 20 78 136 17 20 49 85 11 20 39 68 8 20 +minecraft:lime_candle[candles=2,lit=true,waterlogged=true] 124 181 30 20 99 144 24 20 62 90 15 20 49 72 12 20 +minecraft:lime_candle[candles=2,lit=true,waterlogged=false] 124 181 30 20 99 144 24 20 62 90 15 20 49 72 12 20 +minecraft:lime_candle[candles=2,lit=false,waterlogged=true] 98 171 22 20 78 136 17 20 49 85 11 20 39 68 8 20 +minecraft:lime_candle[candles=2,lit=false,waterlogged=false] 98 171 22 20 78 136 17 20 49 85 11 20 39 68 8 20 +minecraft:lime_candle[candles=3,lit=true,waterlogged=true] 124 181 30 20 99 144 24 20 62 90 15 20 49 72 12 20 +minecraft:lime_candle[candles=3,lit=true,waterlogged=false] 124 181 30 20 99 144 24 20 62 90 15 20 49 72 12 20 +minecraft:lime_candle[candles=3,lit=false,waterlogged=true] 98 171 22 20 78 136 17 20 49 85 11 20 39 68 8 20 +minecraft:lime_candle[candles=3,lit=false,waterlogged=false] 98 171 22 20 78 136 17 20 49 85 11 20 39 68 8 20 +minecraft:lime_candle[candles=4,lit=true,waterlogged=true] 124 181 30 20 99 144 24 20 62 90 15 20 49 72 12 20 +minecraft:lime_candle[candles=4,lit=true,waterlogged=false] 124 181 30 20 99 144 24 20 62 90 15 20 49 72 12 20 +minecraft:lime_candle[candles=4,lit=false,waterlogged=true] 98 171 22 20 78 136 17 20 49 85 11 20 39 68 8 20 +minecraft:lime_candle[candles=4,lit=false,waterlogged=false] 98 171 22 20 78 136 17 20 49 85 11 20 39 68 8 20 +minecraft:pink_candle 217 131 150 20 173 104 120 20 108 65 75 20 86 52 60 20 +minecraft:pink_candle[candles=1,lit=true,waterlogged=false] 217 131 150 20 173 104 120 20 108 65 75 20 86 52 60 20 +minecraft:pink_candle[candles=1,lit=false,waterlogged=true] 208 101 142 20 166 80 113 20 104 50 71 20 83 40 56 20 +minecraft:pink_candle[candles=1,lit=false,waterlogged=false] 208 101 142 20 166 80 113 20 104 50 71 20 83 40 56 20 +minecraft:pink_candle[candles=2,lit=true,waterlogged=true] 217 131 150 20 173 104 120 20 108 65 75 20 86 52 60 20 +minecraft:pink_candle[candles=2,lit=true,waterlogged=false] 217 131 150 20 173 104 120 20 108 65 75 20 86 52 60 20 +minecraft:pink_candle[candles=2,lit=false,waterlogged=true] 208 101 142 20 166 80 113 20 104 50 71 20 83 40 56 20 +minecraft:pink_candle[candles=2,lit=false,waterlogged=false] 208 101 142 20 166 80 113 20 104 50 71 20 83 40 56 20 +minecraft:pink_candle[candles=3,lit=true,waterlogged=true] 217 131 150 20 173 104 120 20 108 65 75 20 86 52 60 20 +minecraft:pink_candle[candles=3,lit=true,waterlogged=false] 217 131 150 20 173 104 120 20 108 65 75 20 86 52 60 20 +minecraft:pink_candle[candles=3,lit=false,waterlogged=true] 208 101 142 20 166 80 113 20 104 50 71 20 83 40 56 20 +minecraft:pink_candle[candles=3,lit=false,waterlogged=false] 208 101 142 20 166 80 113 20 104 50 71 20 83 40 56 20 +minecraft:pink_candle[candles=4,lit=true,waterlogged=true] 217 131 150 20 173 104 120 20 108 65 75 20 86 52 60 20 +minecraft:pink_candle[candles=4,lit=true,waterlogged=false] 217 131 150 20 173 104 120 20 108 65 75 20 86 52 60 20 +minecraft:pink_candle[candles=4,lit=false,waterlogged=true] 208 101 142 20 166 80 113 20 104 50 71 20 83 40 56 20 +minecraft:pink_candle[candles=4,lit=false,waterlogged=false] 208 101 142 20 166 80 113 20 104 50 71 20 83 40 56 20 +minecraft:gray_candle 118 122 108 20 94 97 86 20 59 61 54 20 47 48 43 20 +minecraft:gray_candle[candles=1,lit=true,waterlogged=false] 118 122 108 20 94 97 86 20 59 61 54 20 47 48 43 20 +minecraft:gray_candle[candles=1,lit=false,waterlogged=true] 80 94 96 20 64 75 76 20 40 47 48 20 32 37 38 20 +minecraft:gray_candle[candles=1,lit=false,waterlogged=false] 80 94 96 20 64 75 76 20 40 47 48 20 32 37 38 20 +minecraft:gray_candle[candles=2,lit=true,waterlogged=true] 118 122 108 20 94 97 86 20 59 61 54 20 47 48 43 20 +minecraft:gray_candle[candles=2,lit=true,waterlogged=false] 118 122 108 20 94 97 86 20 59 61 54 20 47 48 43 20 +minecraft:gray_candle[candles=2,lit=false,waterlogged=true] 80 94 96 20 64 75 76 20 40 47 48 20 32 37 38 20 +minecraft:gray_candle[candles=2,lit=false,waterlogged=false] 80 94 96 20 64 75 76 20 40 47 48 20 32 37 38 20 +minecraft:gray_candle[candles=3,lit=true,waterlogged=true] 118 122 108 20 94 97 86 20 59 61 54 20 47 48 43 20 +minecraft:gray_candle[candles=3,lit=true,waterlogged=false] 118 122 108 20 94 97 86 20 59 61 54 20 47 48 43 20 +minecraft:gray_candle[candles=3,lit=false,waterlogged=true] 80 94 96 20 64 75 76 20 40 47 48 20 32 37 38 20 +minecraft:gray_candle[candles=3,lit=false,waterlogged=false] 80 94 96 20 64 75 76 20 40 47 48 20 32 37 38 20 +minecraft:gray_candle[candles=4,lit=true,waterlogged=true] 118 122 108 20 94 97 86 20 59 61 54 20 47 48 43 20 +minecraft:gray_candle[candles=4,lit=true,waterlogged=false] 118 122 108 20 94 97 86 20 59 61 54 20 47 48 43 20 +minecraft:gray_candle[candles=4,lit=false,waterlogged=true] 80 94 96 20 64 75 76 20 40 47 48 20 32 37 38 20 +minecraft:gray_candle[candles=4,lit=false,waterlogged=false] 80 94 96 20 64 75 76 20 40 47 48 20 32 37 38 20 +minecraft:light_gray_candle 151 147 126 20 120 117 100 20 75 73 63 20 60 58 50 20 +minecraft:light_gray_candle[candles=1,lit=true,waterlogged=false] 151 147 126 20 120 117 100 20 75 73 63 20 60 58 50 20 +minecraft:light_gray_candle[candles=1,lit=false,waterlogged=true] 118 120 112 20 94 96 89 20 59 60 56 20 47 48 44 20 +minecraft:light_gray_candle[candles=1,lit=false,waterlogged=false] 118 120 112 20 94 96 89 20 59 60 56 20 47 48 44 20 +minecraft:light_gray_candle[candles=2,lit=true,waterlogged=true] 151 147 126 20 120 117 100 20 75 73 63 20 60 58 50 20 +minecraft:light_gray_candle[candles=2,lit=true,waterlogged=false] 151 147 126 20 120 117 100 20 75 73 63 20 60 58 50 20 +minecraft:light_gray_candle[candles=2,lit=false,waterlogged=true] 118 120 112 20 94 96 89 20 59 60 56 20 47 48 44 20 +minecraft:light_gray_candle[candles=2,lit=false,waterlogged=false] 118 120 112 20 94 96 89 20 59 60 56 20 47 48 44 20 +minecraft:light_gray_candle[candles=3,lit=true,waterlogged=true] 151 147 126 20 120 117 100 20 75 73 63 20 60 58 50 20 +minecraft:light_gray_candle[candles=3,lit=true,waterlogged=false] 151 147 126 20 120 117 100 20 75 73 63 20 60 58 50 20 +minecraft:light_gray_candle[candles=3,lit=false,waterlogged=true] 118 120 112 20 94 96 89 20 59 60 56 20 47 48 44 20 +minecraft:light_gray_candle[candles=3,lit=false,waterlogged=false] 118 120 112 20 94 96 89 20 59 60 56 20 47 48 44 20 +minecraft:light_gray_candle[candles=4,lit=true,waterlogged=true] 151 147 126 20 120 117 100 20 75 73 63 20 60 58 50 20 +minecraft:light_gray_candle[candles=4,lit=true,waterlogged=false] 151 147 126 20 120 117 100 20 75 73 63 20 60 58 50 20 +minecraft:light_gray_candle[candles=4,lit=false,waterlogged=true] 118 120 112 20 94 96 89 20 59 60 56 20 47 48 44 20 +minecraft:light_gray_candle[candles=4,lit=false,waterlogged=false] 118 120 112 20 94 96 89 20 59 60 56 20 47 48 44 20 +minecraft:cyan_candle 43 146 134 20 34 116 107 20 21 73 67 20 17 58 53 20 +minecraft:cyan_candle[candles=1,lit=true,waterlogged=false] 43 146 134 20 34 116 107 20 21 73 67 20 17 58 53 20 +minecraft:cyan_candle[candles=1,lit=false,waterlogged=true] 17 123 123 20 13 98 98 20 8 61 61 20 6 49 49 20 +minecraft:cyan_candle[candles=1,lit=false,waterlogged=false] 17 123 123 20 13 98 98 20 8 61 61 20 6 49 49 20 +minecraft:cyan_candle[candles=2,lit=true,waterlogged=true] 43 146 134 20 34 116 107 20 21 73 67 20 17 58 53 20 +minecraft:cyan_candle[candles=2,lit=true,waterlogged=false] 43 146 134 20 34 116 107 20 21 73 67 20 17 58 53 20 +minecraft:cyan_candle[candles=2,lit=false,waterlogged=true] 17 123 123 20 13 98 98 20 8 61 61 20 6 49 49 20 +minecraft:cyan_candle[candles=2,lit=false,waterlogged=false] 17 123 123 20 13 98 98 20 8 61 61 20 6 49 49 20 +minecraft:cyan_candle[candles=3,lit=true,waterlogged=true] 43 146 134 20 34 116 107 20 21 73 67 20 17 58 53 20 +minecraft:cyan_candle[candles=3,lit=true,waterlogged=false] 43 146 134 20 34 116 107 20 21 73 67 20 17 58 53 20 +minecraft:cyan_candle[candles=3,lit=false,waterlogged=true] 17 123 123 20 13 98 98 20 8 61 61 20 6 49 49 20 +minecraft:cyan_candle[candles=3,lit=false,waterlogged=false] 17 123 123 20 13 98 98 20 8 61 61 20 6 49 49 20 +minecraft:cyan_candle[candles=4,lit=true,waterlogged=true] 43 146 134 20 34 116 107 20 21 73 67 20 17 58 53 20 +minecraft:cyan_candle[candles=4,lit=true,waterlogged=false] 43 146 134 20 34 116 107 20 21 73 67 20 17 58 53 20 +minecraft:cyan_candle[candles=4,lit=false,waterlogged=true] 17 123 123 20 13 98 98 20 8 61 61 20 6 49 49 20 +minecraft:cyan_candle[candles=4,lit=false,waterlogged=false] 17 123 123 20 13 98 98 20 8 61 61 20 6 49 49 20 +minecraft:purple_candle 124 33 144 20 99 26 115 20 62 16 72 20 49 13 57 20 +minecraft:purple_candle[candles=1,lit=true,waterlogged=false] 124 33 144 20 99 26 115 20 62 16 72 20 49 13 57 20 +minecraft:purple_candle[candles=1,lit=false,waterlogged=true] 105 34 159 20 84 27 127 20 52 17 79 20 42 13 63 20 +minecraft:purple_candle[candles=1,lit=false,waterlogged=false] 105 34 159 20 84 27 127 20 52 17 79 20 42 13 63 20 +minecraft:purple_candle[candles=2,lit=true,waterlogged=true] 124 33 144 20 99 26 115 20 62 16 72 20 49 13 57 20 +minecraft:purple_candle[candles=2,lit=true,waterlogged=false] 124 33 144 20 99 26 115 20 62 16 72 20 49 13 57 20 +minecraft:purple_candle[candles=2,lit=false,waterlogged=true] 105 34 159 20 84 27 127 20 52 17 79 20 42 13 63 20 +minecraft:purple_candle[candles=2,lit=false,waterlogged=false] 105 34 159 20 84 27 127 20 52 17 79 20 42 13 63 20 +minecraft:purple_candle[candles=3,lit=true,waterlogged=true] 124 33 144 20 99 26 115 20 62 16 72 20 49 13 57 20 +minecraft:purple_candle[candles=3,lit=true,waterlogged=false] 124 33 144 20 99 26 115 20 62 16 72 20 49 13 57 20 +minecraft:purple_candle[candles=3,lit=false,waterlogged=true] 105 34 159 20 84 27 127 20 52 17 79 20 42 13 63 20 +minecraft:purple_candle[candles=3,lit=false,waterlogged=false] 105 34 159 20 84 27 127 20 52 17 79 20 42 13 63 20 +minecraft:purple_candle[candles=4,lit=true,waterlogged=true] 124 33 144 20 99 26 115 20 62 16 72 20 49 13 57 20 +minecraft:purple_candle[candles=4,lit=true,waterlogged=false] 124 33 144 20 99 26 115 20 62 16 72 20 49 13 57 20 +minecraft:purple_candle[candles=4,lit=false,waterlogged=true] 105 34 159 20 84 27 127 20 52 17 79 20 42 13 63 20 +minecraft:purple_candle[candles=4,lit=false,waterlogged=false] 105 34 159 20 84 27 127 20 52 17 79 20 42 13 63 20 +minecraft:blue_candle 64 84 179 20 51 67 143 20 32 42 89 20 25 33 71 20 +minecraft:blue_candle[candles=1,lit=true,waterlogged=false] 64 84 179 20 51 67 143 20 32 42 89 20 25 33 71 20 +minecraft:blue_candle[candles=1,lit=false,waterlogged=true] 57 76 161 20 45 60 128 20 28 38 80 20 22 30 64 20 +minecraft:blue_candle[candles=1,lit=false,waterlogged=false] 57 76 161 20 45 60 128 20 28 38 80 20 22 30 64 20 +minecraft:blue_candle[candles=2,lit=true,waterlogged=true] 64 84 179 20 51 67 143 20 32 42 89 20 25 33 71 20 +minecraft:blue_candle[candles=2,lit=true,waterlogged=false] 64 84 179 20 51 67 143 20 32 42 89 20 25 33 71 20 +minecraft:blue_candle[candles=2,lit=false,waterlogged=true] 57 76 161 20 45 60 128 20 28 38 80 20 22 30 64 20 +minecraft:blue_candle[candles=2,lit=false,waterlogged=false] 57 76 161 20 45 60 128 20 28 38 80 20 22 30 64 20 +minecraft:blue_candle[candles=3,lit=true,waterlogged=true] 64 84 179 20 51 67 143 20 32 42 89 20 25 33 71 20 +minecraft:blue_candle[candles=3,lit=true,waterlogged=false] 64 84 179 20 51 67 143 20 32 42 89 20 25 33 71 20 +minecraft:blue_candle[candles=3,lit=false,waterlogged=true] 57 76 161 20 45 60 128 20 28 38 80 20 22 30 64 20 +minecraft:blue_candle[candles=3,lit=false,waterlogged=false] 57 76 161 20 45 60 128 20 28 38 80 20 22 30 64 20 +minecraft:blue_candle[candles=4,lit=true,waterlogged=true] 64 84 179 20 51 67 143 20 32 42 89 20 25 33 71 20 +minecraft:blue_candle[candles=4,lit=true,waterlogged=false] 64 84 179 20 51 67 143 20 32 42 89 20 25 33 71 20 +minecraft:blue_candle[candles=4,lit=false,waterlogged=true] 57 76 161 20 45 60 128 20 28 38 80 20 22 30 64 20 +minecraft:blue_candle[candles=4,lit=false,waterlogged=false] 57 76 161 20 45 60 128 20 28 38 80 20 22 30 64 20 +minecraft:brown_candle 147 96 51 20 117 76 40 20 73 48 25 20 58 38 20 20 +minecraft:brown_candle[candles=1,lit=true,waterlogged=false] 147 96 51 20 117 76 40 20 73 48 25 20 58 38 20 20 +minecraft:brown_candle[candles=1,lit=false,waterlogged=true] 111 70 41 20 88 56 32 20 55 35 20 20 44 28 16 20 +minecraft:brown_candle[candles=1,lit=false,waterlogged=false] 111 70 41 20 88 56 32 20 55 35 20 20 44 28 16 20 +minecraft:brown_candle[candles=2,lit=true,waterlogged=true] 147 96 51 20 117 76 40 20 73 48 25 20 58 38 20 20 +minecraft:brown_candle[candles=2,lit=true,waterlogged=false] 147 96 51 20 117 76 40 20 73 48 25 20 58 38 20 20 +minecraft:brown_candle[candles=2,lit=false,waterlogged=true] 111 70 41 20 88 56 32 20 55 35 20 20 44 28 16 20 +minecraft:brown_candle[candles=2,lit=false,waterlogged=false] 111 70 41 20 88 56 32 20 55 35 20 20 44 28 16 20 +minecraft:brown_candle[candles=3,lit=true,waterlogged=true] 147 96 51 20 117 76 40 20 73 48 25 20 58 38 20 20 +minecraft:brown_candle[candles=3,lit=true,waterlogged=false] 147 96 51 20 117 76 40 20 73 48 25 20 58 38 20 20 +minecraft:brown_candle[candles=3,lit=false,waterlogged=true] 111 70 41 20 88 56 32 20 55 35 20 20 44 28 16 20 +minecraft:brown_candle[candles=3,lit=false,waterlogged=false] 111 70 41 20 88 56 32 20 55 35 20 20 44 28 16 20 +minecraft:brown_candle[candles=4,lit=true,waterlogged=true] 147 96 51 20 117 76 40 20 73 48 25 20 58 38 20 20 +minecraft:brown_candle[candles=4,lit=true,waterlogged=false] 147 96 51 20 117 76 40 20 73 48 25 20 58 38 20 20 +minecraft:brown_candle[candles=4,lit=false,waterlogged=true] 111 70 41 20 88 56 32 20 55 35 20 20 44 28 16 20 +minecraft:brown_candle[candles=4,lit=false,waterlogged=false] 111 70 41 20 88 56 32 20 55 35 20 20 44 28 16 20 +minecraft:green_candle 100 115 22 20 80 92 17 20 50 57 11 20 40 46 8 20 +minecraft:green_candle[candles=1,lit=true,waterlogged=false] 100 115 22 20 80 92 17 20 50 57 11 20 40 46 8 20 +minecraft:green_candle[candles=1,lit=false,waterlogged=true] 72 96 20 20 57 76 16 20 36 48 10 20 28 38 8 20 +minecraft:green_candle[candles=1,lit=false,waterlogged=false] 72 96 20 20 57 76 16 20 36 48 10 20 28 38 8 20 +minecraft:green_candle[candles=2,lit=true,waterlogged=true] 100 115 22 20 80 92 17 20 50 57 11 20 40 46 8 20 +minecraft:green_candle[candles=2,lit=true,waterlogged=false] 100 115 22 20 80 92 17 20 50 57 11 20 40 46 8 20 +minecraft:green_candle[candles=2,lit=false,waterlogged=true] 72 96 20 20 57 76 16 20 36 48 10 20 28 38 8 20 +minecraft:green_candle[candles=2,lit=false,waterlogged=false] 72 96 20 20 57 76 16 20 36 48 10 20 28 38 8 20 +minecraft:green_candle[candles=3,lit=true,waterlogged=true] 100 115 22 20 80 92 17 20 50 57 11 20 40 46 8 20 +minecraft:green_candle[candles=3,lit=true,waterlogged=false] 100 115 22 20 80 92 17 20 50 57 11 20 40 46 8 20 +minecraft:green_candle[candles=3,lit=false,waterlogged=true] 72 96 20 20 57 76 16 20 36 48 10 20 28 38 8 20 +minecraft:green_candle[candles=3,lit=false,waterlogged=false] 72 96 20 20 57 76 16 20 36 48 10 20 28 38 8 20 +minecraft:green_candle[candles=4,lit=true,waterlogged=true] 100 115 22 20 80 92 17 20 50 57 11 20 40 46 8 20 +minecraft:green_candle[candles=4,lit=true,waterlogged=false] 100 115 22 20 80 92 17 20 50 57 11 20 40 46 8 20 +minecraft:green_candle[candles=4,lit=false,waterlogged=true] 72 96 20 20 57 76 16 20 36 48 10 20 28 38 8 20 +minecraft:green_candle[candles=4,lit=false,waterlogged=false] 72 96 20 20 57 76 16 20 36 48 10 20 28 38 8 20 +minecraft:red_candle 180 65 47 20 144 52 37 20 90 32 23 20 72 26 18 20 +minecraft:red_candle[candles=1,lit=true,waterlogged=false] 180 65 47 20 144 52 37 20 90 32 23 20 72 26 18 20 +minecraft:red_candle[candles=1,lit=false,waterlogged=true] 153 38 36 20 122 30 28 20 76 19 18 20 61 15 14 20 +minecraft:red_candle[candles=1,lit=false,waterlogged=false] 153 38 36 20 122 30 28 20 76 19 18 20 61 15 14 20 +minecraft:red_candle[candles=2,lit=true,waterlogged=true] 180 65 47 20 144 52 37 20 90 32 23 20 72 26 18 20 +minecraft:red_candle[candles=2,lit=true,waterlogged=false] 180 65 47 20 144 52 37 20 90 32 23 20 72 26 18 20 +minecraft:red_candle[candles=2,lit=false,waterlogged=true] 153 38 36 20 122 30 28 20 76 19 18 20 61 15 14 20 +minecraft:red_candle[candles=2,lit=false,waterlogged=false] 153 38 36 20 122 30 28 20 76 19 18 20 61 15 14 20 +minecraft:red_candle[candles=3,lit=true,waterlogged=true] 180 65 47 20 144 52 37 20 90 32 23 20 72 26 18 20 +minecraft:red_candle[candles=3,lit=true,waterlogged=false] 180 65 47 20 144 52 37 20 90 32 23 20 72 26 18 20 +minecraft:red_candle[candles=3,lit=false,waterlogged=true] 153 38 36 20 122 30 28 20 76 19 18 20 61 15 14 20 +minecraft:red_candle[candles=3,lit=false,waterlogged=false] 153 38 36 20 122 30 28 20 76 19 18 20 61 15 14 20 +minecraft:red_candle[candles=4,lit=true,waterlogged=true] 180 65 47 20 144 52 37 20 90 32 23 20 72 26 18 20 +minecraft:red_candle[candles=4,lit=true,waterlogged=false] 180 65 47 20 144 52 37 20 90 32 23 20 72 26 18 20 +minecraft:red_candle[candles=4,lit=false,waterlogged=true] 153 38 36 20 122 30 28 20 76 19 18 20 61 15 14 20 +minecraft:red_candle[candles=4,lit=false,waterlogged=false] 153 38 36 20 122 30 28 20 76 19 18 20 61 15 14 20 +minecraft:black_candle 73 48 51 20 58 38 40 20 36 24 25 20 29 19 20 20 +minecraft:black_candle[candles=1,lit=true,waterlogged=false] 73 48 51 20 58 38 40 20 36 24 25 20 29 19 20 20 +minecraft:black_candle[candles=1,lit=false,waterlogged=true] 38 36 57 20 30 28 45 20 19 18 28 20 15 14 22 20 +minecraft:black_candle[candles=1,lit=false,waterlogged=false] 38 36 57 20 30 28 45 20 19 18 28 20 15 14 22 20 +minecraft:black_candle[candles=2,lit=true,waterlogged=true] 73 48 51 20 58 38 40 20 36 24 25 20 29 19 20 20 +minecraft:black_candle[candles=2,lit=true,waterlogged=false] 73 48 51 20 58 38 40 20 36 24 25 20 29 19 20 20 +minecraft:black_candle[candles=2,lit=false,waterlogged=true] 38 36 57 20 30 28 45 20 19 18 28 20 15 14 22 20 +minecraft:black_candle[candles=2,lit=false,waterlogged=false] 38 36 57 20 30 28 45 20 19 18 28 20 15 14 22 20 +minecraft:black_candle[candles=3,lit=true,waterlogged=true] 73 48 51 20 58 38 40 20 36 24 25 20 29 19 20 20 +minecraft:black_candle[candles=3,lit=true,waterlogged=false] 73 48 51 20 58 38 40 20 36 24 25 20 29 19 20 20 +minecraft:black_candle[candles=3,lit=false,waterlogged=true] 38 36 57 20 30 28 45 20 19 18 28 20 15 14 22 20 +minecraft:black_candle[candles=3,lit=false,waterlogged=false] 38 36 57 20 30 28 45 20 19 18 28 20 15 14 22 20 +minecraft:black_candle[candles=4,lit=true,waterlogged=true] 73 48 51 20 58 38 40 20 36 24 25 20 29 19 20 20 +minecraft:black_candle[candles=4,lit=true,waterlogged=false] 73 48 51 20 58 38 40 20 36 24 25 20 29 19 20 20 +minecraft:black_candle[candles=4,lit=false,waterlogged=true] 38 36 57 20 30 28 45 20 19 18 28 20 15 14 22 20 +minecraft:black_candle[candles=4,lit=false,waterlogged=false] 38 36 57 20 30 28 45 20 19 18 28 20 15 14 22 20 +minecraft:candle_cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:candle_cake[lit=false] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:white_candle_cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:white_candle_cake[lit=false] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:orange_candle_cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:orange_candle_cake[lit=false] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:magenta_candle_cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:magenta_candle_cake[lit=false] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:light_blue_candle_cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:light_blue_candle_cake[lit=false] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:yellow_candle_cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:yellow_candle_cake[lit=false] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:lime_candle_cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:lime_candle_cake[lit=false] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:pink_candle_cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:pink_candle_cake[lit=false] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:gray_candle_cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:gray_candle_cake[lit=false] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:light_gray_candle_cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:light_gray_candle_cake[lit=false] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:cyan_candle_cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:cyan_candle_cake[lit=false] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:purple_candle_cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:purple_candle_cake[lit=false] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:blue_candle_cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:blue_candle_cake[lit=false] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:brown_candle_cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:brown_candle_cake[lit=false] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:green_candle_cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:green_candle_cake[lit=false] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:red_candle_cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:red_candle_cake[lit=false] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:black_candle_cake 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:black_candle_cake[lit=false] 248 222 214 195 198 177 171 195 124 111 107 195 99 88 85 195 +minecraft:amethyst_block 133 97 191 255 106 77 152 255 66 48 95 255 53 38 76 255 +minecraft:budding_amethyst 132 96 186 255 105 76 148 255 66 48 93 255 52 38 74 255 +minecraft:amethyst_cluster 163 126 207 139 130 100 165 139 81 63 103 139 65 50 82 139 +minecraft:amethyst_cluster[facing=north,waterlogged=false] 163 126 207 139 130 100 165 139 81 63 103 139 65 50 82 139 +minecraft:amethyst_cluster[facing=east,waterlogged=true] 163 126 207 139 130 100 165 139 81 63 103 139 65 50 82 139 +minecraft:amethyst_cluster[facing=east,waterlogged=false] 163 126 207 139 130 100 165 139 81 63 103 139 65 50 82 139 +minecraft:amethyst_cluster[facing=south,waterlogged=true] 163 126 207 139 130 100 165 139 81 63 103 139 65 50 82 139 +minecraft:amethyst_cluster[facing=south,waterlogged=false] 163 126 207 139 130 100 165 139 81 63 103 139 65 50 82 139 +minecraft:amethyst_cluster[facing=west,waterlogged=true] 163 126 207 139 130 100 165 139 81 63 103 139 65 50 82 139 +minecraft:amethyst_cluster[facing=west,waterlogged=false] 163 126 207 139 130 100 165 139 81 63 103 139 65 50 82 139 +minecraft:amethyst_cluster[facing=up,waterlogged=true] 163 126 207 139 130 100 165 139 81 63 103 139 65 50 82 139 +minecraft:amethyst_cluster[facing=up,waterlogged=false] 163 126 207 139 130 100 165 139 81 63 103 139 65 50 82 139 +minecraft:amethyst_cluster[facing=down,waterlogged=true] 163 126 207 139 130 100 165 139 81 63 103 139 65 50 82 139 +minecraft:amethyst_cluster[facing=down,waterlogged=false] 163 126 207 139 130 100 165 139 81 63 103 139 65 50 82 139 +minecraft:large_amethyst_bud 161 126 202 77 128 100 161 77 80 63 101 77 64 50 80 77 +minecraft:large_amethyst_bud[facing=north,waterlogged=false] 161 126 202 77 128 100 161 77 80 63 101 77 64 50 80 77 +minecraft:large_amethyst_bud[facing=east,waterlogged=true] 161 126 202 77 128 100 161 77 80 63 101 77 64 50 80 77 +minecraft:large_amethyst_bud[facing=east,waterlogged=false] 161 126 202 77 128 100 161 77 80 63 101 77 64 50 80 77 +minecraft:large_amethyst_bud[facing=south,waterlogged=true] 161 126 202 77 128 100 161 77 80 63 101 77 64 50 80 77 +minecraft:large_amethyst_bud[facing=south,waterlogged=false] 161 126 202 77 128 100 161 77 80 63 101 77 64 50 80 77 +minecraft:large_amethyst_bud[facing=west,waterlogged=true] 161 126 202 77 128 100 161 77 80 63 101 77 64 50 80 77 +minecraft:large_amethyst_bud[facing=west,waterlogged=false] 161 126 202 77 128 100 161 77 80 63 101 77 64 50 80 77 +minecraft:large_amethyst_bud[facing=up,waterlogged=true] 161 126 202 77 128 100 161 77 80 63 101 77 64 50 80 77 +minecraft:large_amethyst_bud[facing=up,waterlogged=false] 161 126 202 77 128 100 161 77 80 63 101 77 64 50 80 77 +minecraft:large_amethyst_bud[facing=down,waterlogged=true] 161 126 202 77 128 100 161 77 80 63 101 77 64 50 80 77 +minecraft:large_amethyst_bud[facing=down,waterlogged=false] 161 126 202 77 128 100 161 77 80 63 101 77 64 50 80 77 +minecraft:medium_amethyst_bud 158 120 201 50 126 96 160 50 79 60 100 50 63 48 80 50 +minecraft:medium_amethyst_bud[facing=north,waterlogged=false] 158 120 201 50 126 96 160 50 79 60 100 50 63 48 80 50 +minecraft:medium_amethyst_bud[facing=east,waterlogged=true] 158 120 201 50 126 96 160 50 79 60 100 50 63 48 80 50 +minecraft:medium_amethyst_bud[facing=east,waterlogged=false] 158 120 201 50 126 96 160 50 79 60 100 50 63 48 80 50 +minecraft:medium_amethyst_bud[facing=south,waterlogged=true] 158 120 201 50 126 96 160 50 79 60 100 50 63 48 80 50 +minecraft:medium_amethyst_bud[facing=south,waterlogged=false] 158 120 201 50 126 96 160 50 79 60 100 50 63 48 80 50 +minecraft:medium_amethyst_bud[facing=west,waterlogged=true] 158 120 201 50 126 96 160 50 79 60 100 50 63 48 80 50 +minecraft:medium_amethyst_bud[facing=west,waterlogged=false] 158 120 201 50 126 96 160 50 79 60 100 50 63 48 80 50 +minecraft:medium_amethyst_bud[facing=up,waterlogged=true] 158 120 201 50 126 96 160 50 79 60 100 50 63 48 80 50 +minecraft:medium_amethyst_bud[facing=up,waterlogged=false] 158 120 201 50 126 96 160 50 79 60 100 50 63 48 80 50 +minecraft:medium_amethyst_bud[facing=down,waterlogged=true] 158 120 201 50 126 96 160 50 79 60 100 50 63 48 80 50 +minecraft:medium_amethyst_bud[facing=down,waterlogged=false] 158 120 201 50 126 96 160 50 79 60 100 50 63 48 80 50 +minecraft:small_amethyst_bud 131 99 192 31 104 79 153 31 65 49 96 31 52 39 76 31 +minecraft:small_amethyst_bud[facing=north,waterlogged=false] 131 99 192 31 104 79 153 31 65 49 96 31 52 39 76 31 +minecraft:small_amethyst_bud[facing=east,waterlogged=true] 131 99 192 31 104 79 153 31 65 49 96 31 52 39 76 31 +minecraft:small_amethyst_bud[facing=east,waterlogged=false] 131 99 192 31 104 79 153 31 65 49 96 31 52 39 76 31 +minecraft:small_amethyst_bud[facing=south,waterlogged=true] 131 99 192 31 104 79 153 31 65 49 96 31 52 39 76 31 +minecraft:small_amethyst_bud[facing=south,waterlogged=false] 131 99 192 31 104 79 153 31 65 49 96 31 52 39 76 31 +minecraft:small_amethyst_bud[facing=west,waterlogged=true] 131 99 192 31 104 79 153 31 65 49 96 31 52 39 76 31 +minecraft:small_amethyst_bud[facing=west,waterlogged=false] 131 99 192 31 104 79 153 31 65 49 96 31 52 39 76 31 +minecraft:small_amethyst_bud[facing=up,waterlogged=true] 131 99 192 31 104 79 153 31 65 49 96 31 52 39 76 31 +minecraft:small_amethyst_bud[facing=up,waterlogged=false] 131 99 192 31 104 79 153 31 65 49 96 31 52 39 76 31 +minecraft:small_amethyst_bud[facing=down,waterlogged=true] 131 99 192 31 104 79 153 31 65 49 96 31 52 39 76 31 +minecraft:small_amethyst_bud[facing=down,waterlogged=false] 131 99 192 31 104 79 153 31 65 49 96 31 52 39 76 31 +minecraft:tuff 108 109 102 255 86 87 81 255 54 54 51 255 43 43 40 255 +minecraft:calcite 223 224 220 255 178 179 176 255 111 112 110 255 89 89 88 255 +minecraft:tinted_glass 44 38 46 131 35 30 36 131 22 19 23 131 17 15 18 131 +minecraft:powder_snow 248 253 253 255 198 202 202 255 124 126 126 255 99 101 101 255 +minecraft:sculk_sensor 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 +minecraft:sculk_sensor[power=0,sculk_sensor_phase=inactive,waterlogged=false] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 +minecraft:sculk_sensor[power=0,sculk_sensor_phase=active,waterlogged=true] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 +minecraft:sculk_sensor[power=0,sculk_sensor_phase=active,waterlogged=false] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 +minecraft:sculk_sensor[power=0,sculk_sensor_phase=cooldown,waterlogged=true] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 +minecraft:sculk_sensor[power=0,sculk_sensor_phase=cooldown,waterlogged=false] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 +minecraft:sculk_sensor[power=1,sculk_sensor_phase=inactive,waterlogged=true] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 +minecraft:sculk_sensor[power=1,sculk_sensor_phase=inactive,waterlogged=false] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 +minecraft:sculk_sensor[power=1,sculk_sensor_phase=active,waterlogged=true] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 +minecraft:sculk_sensor[power=1,sculk_sensor_phase=active,waterlogged=false] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 +minecraft:sculk_sensor[power=1,sculk_sensor_phase=cooldown,waterlogged=true] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 +minecraft:sculk_sensor[power=1,sculk_sensor_phase=cooldown,waterlogged=false] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 +minecraft:sculk_sensor[power=2,sculk_sensor_phase=inactive,waterlogged=true] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 +minecraft:sculk_sensor[power=2,sculk_sensor_phase=inactive,waterlogged=false] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 +minecraft:sculk_sensor[power=2,sculk_sensor_phase=active,waterlogged=true] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 +minecraft:sculk_sensor[power=2,sculk_sensor_phase=active,waterlogged=false] 10 39 47 127 8 31 37 127 5 19 23 127 4 15 18 127 +minecraft:oxidized_copper 82 162 132 255 65 129 105 255 41 81 66 255 32 64 52 255 +minecraft:weathered_copper 108 153 110 255 86 122 88 255 54 76 55 255 43 61 44 255 +minecraft:exposed_copper 161 125 103 255 128 100 82 255 80 62 51 255 64 50 41 255 +minecraft:copper_block 192 107 79 255 153 85 63 255 96 53 39 255 76 42 31 255 +minecraft:copper_ore 124 125 120 255 99 100 96 255 62 62 60 255 49 50 48 255 +minecraft:deepslate_copper_ore 92 93 89 255 73 74 71 255 46 46 44 255 36 37 35 255 +minecraft:oxidized_cut_copper 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:weathered_cut_copper 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:exposed_cut_copper 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:cut_copper 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:oxidized_cut_copper_stairs 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:weathered_cut_copper_stairs 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:exposed_cut_copper_stairs 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:cut_copper_stairs 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:oxidized_cut_copper_slab 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_slab[type=top,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_slab[type=bottom,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_slab[type=bottom,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_slab[type=double,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:oxidized_cut_copper_slab[type=double,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:weathered_cut_copper_slab 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_slab[type=top,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_slab[type=bottom,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_slab[type=bottom,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_slab[type=double,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:weathered_cut_copper_slab[type=double,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:exposed_cut_copper_slab 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_slab[type=top,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_slab[type=bottom,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_slab[type=bottom,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_slab[type=double,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:exposed_cut_copper_slab[type=double,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:cut_copper_slab 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_slab[type=top,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_slab[type=bottom,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_slab[type=bottom,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_slab[type=double,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:cut_copper_slab[type=double,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_copper_block 192 107 79 255 153 85 63 255 96 53 39 255 76 42 31 255 +minecraft:waxed_weathered_copper 108 153 110 255 86 122 88 255 54 76 55 255 43 61 44 255 +minecraft:waxed_exposed_copper 161 125 103 255 128 100 82 255 80 62 51 255 64 50 41 255 +minecraft:waxed_oxidized_copper 82 162 132 255 65 129 105 255 41 81 66 255 32 64 52 255 +minecraft:waxed_oxidized_cut_copper 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_weathered_cut_copper 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_exposed_cut_copper 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_cut_copper 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_oxidized_cut_copper_stairs 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_weathered_cut_copper_stairs 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_exposed_cut_copper_stairs 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_cut_copper_stairs 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_oxidized_cut_copper_slab 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_slab[type=top,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_slab[type=bottom,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_slab[type=bottom,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_slab[type=double,waterlogged=true] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_oxidized_cut_copper_slab[type=double,waterlogged=false] 79 153 126 255 63 122 100 255 39 76 63 255 31 61 50 255 +minecraft:waxed_weathered_cut_copper_slab 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_slab[type=top,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_slab[type=bottom,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_slab[type=bottom,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_slab[type=double,waterlogged=true] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_weathered_cut_copper_slab[type=double,waterlogged=false] 109 145 107 255 87 116 85 255 54 72 53 255 43 58 42 255 +minecraft:waxed_exposed_cut_copper_slab 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_slab[type=top,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_slab[type=bottom,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_slab[type=bottom,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_slab[type=double,waterlogged=true] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_exposed_cut_copper_slab[type=double,waterlogged=false] 154 121 101 255 123 96 80 255 77 60 50 255 61 48 40 255 +minecraft:waxed_cut_copper_slab 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_slab[type=top,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_slab[type=bottom,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_slab[type=bottom,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_slab[type=double,waterlogged=true] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:waxed_cut_copper_slab[type=double,waterlogged=false] 191 106 80 255 152 84 64 255 95 53 40 255 76 42 32 255 +minecraft:pointed_dripstone 138 111 95 85 110 88 76 85 69 55 47 85 55 44 38 85 +minecraft:pointed_dripstone[thickness=tip_merge,vertical_direction=up,waterlogged=false] 138 111 95 85 110 88 76 85 69 55 47 85 55 44 38 85 +minecraft:pointed_dripstone[thickness=tip_merge,vertical_direction=down,waterlogged=true] 138 111 95 85 110 88 76 85 69 55 47 85 55 44 38 85 +minecraft:pointed_dripstone[thickness=tip_merge,vertical_direction=down,waterlogged=false] 138 111 95 85 110 88 76 85 69 55 47 85 55 44 38 85 +minecraft:pointed_dripstone[thickness=tip,vertical_direction=up,waterlogged=true] 136 109 93 52 108 87 74 52 68 54 46 52 54 43 37 52 +minecraft:pointed_dripstone[thickness=tip,vertical_direction=up,waterlogged=false] 136 109 93 52 108 87 74 52 68 54 46 52 54 43 37 52 +minecraft:pointed_dripstone[thickness=tip,vertical_direction=down,waterlogged=true] 136 109 93 52 108 87 74 52 68 54 46 52 54 43 37 52 +minecraft:pointed_dripstone[thickness=tip,vertical_direction=down,waterlogged=false] 136 109 93 52 108 87 74 52 68 54 46 52 54 43 37 52 +minecraft:pointed_dripstone[thickness=frustum,vertical_direction=up,waterlogged=true] 128 102 89 165 102 81 71 165 64 51 44 165 51 40 35 165 +minecraft:pointed_dripstone[thickness=frustum,vertical_direction=up,waterlogged=false] 128 102 89 165 102 81 71 165 64 51 44 165 51 40 35 165 +minecraft:pointed_dripstone[thickness=frustum,vertical_direction=down,waterlogged=true] 128 102 89 165 102 81 71 165 64 51 44 165 51 40 35 165 +minecraft:pointed_dripstone[thickness=frustum,vertical_direction=down,waterlogged=false] 128 102 89 165 102 81 71 165 64 51 44 165 51 40 35 165 +minecraft:pointed_dripstone[thickness=middle,vertical_direction=up,waterlogged=true] 130 103 90 185 104 82 72 185 65 51 45 185 52 41 36 185 +minecraft:pointed_dripstone[thickness=middle,vertical_direction=up,waterlogged=false] 130 103 90 185 104 82 72 185 65 51 45 185 52 41 36 185 +minecraft:pointed_dripstone[thickness=middle,vertical_direction=down,waterlogged=true] 130 103 90 185 104 82 72 185 65 51 45 185 52 41 36 185 +minecraft:pointed_dripstone[thickness=middle,vertical_direction=down,waterlogged=false] 130 103 90 185 104 82 72 185 65 51 45 185 52 41 36 185 +minecraft:pointed_dripstone[thickness=base,vertical_direction=up,waterlogged=true] 129 102 89 229 103 81 71 229 64 51 44 229 51 40 35 229 +minecraft:pointed_dripstone[thickness=base,vertical_direction=up,waterlogged=false] 129 102 89 229 103 81 71 229 64 51 44 229 51 40 35 229 +minecraft:pointed_dripstone[thickness=base,vertical_direction=down,waterlogged=true] 129 102 89 229 103 81 71 229 64 51 44 229 51 40 35 229 +minecraft:pointed_dripstone[thickness=base,vertical_direction=down,waterlogged=false] 129 102 89 229 103 81 71 229 64 51 44 229 51 40 35 229 +minecraft:dripstone_block 134 107 92 255 107 85 73 255 67 53 46 255 53 42 36 255 +minecraft:cave_vines 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=0,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=1,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=1,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=2,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=2,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=3,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=3,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=4,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=4,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=5,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=5,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=6,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=6,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=7,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=7,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=8,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=8,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=9,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=9,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=10,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=10,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=11,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=11,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=12,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=12,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=13,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=13,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=14,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=14,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=15,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=15,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=16,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=16,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=17,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=17,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=18,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=18,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=19,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=19,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=20,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=20,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=21,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=21,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=22,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=22,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=23,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=23,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=24,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=24,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines[age=25,berries=true] 105 112 41 148 84 89 32 148 52 56 20 148 42 44 16 148 +minecraft:cave_vines[age=25,berries=false] 90 109 40 142 72 87 32 142 45 54 20 142 36 43 16 142 +minecraft:cave_vines_plant 105 107 40 159 84 85 32 159 52 53 20 159 42 42 16 159 +minecraft:cave_vines_plant[berries=false] 88 101 38 143 70 80 30 143 44 50 19 143 35 40 15 143 +minecraft:spore_blossom 206 96 158 123 164 76 126 123 103 48 79 123 82 38 63 123 +minecraft:azalea 93 117 45 153 74 93 36 153 46 58 22 153 37 46 18 153 +minecraft:flowering_azalea 111 113 73 153 88 90 58 153 55 56 36 153 44 45 29 153 +minecraft:moss_carpet 89 109 45 255 71 87 36 255 44 54 22 255 35 43 18 255 +minecraft:moss_block 89 109 45 255 71 87 36 255 44 54 22 255 35 43 18 255 +minecraft:big_dripleaf_stem 91 115 45 83 72 92 36 83 45 57 22 83 36 46 18 83 +minecraft:big_dripleaf_stem[facing=north,waterlogged=false] 91 115 45 83 72 92 36 83 45 57 22 83 36 46 18 83 +minecraft:big_dripleaf_stem[facing=south,waterlogged=true] 91 115 45 83 72 92 36 83 45 57 22 83 36 46 18 83 +minecraft:big_dripleaf_stem[facing=south,waterlogged=false] 91 115 45 83 72 92 36 83 45 57 22 83 36 46 18 83 +minecraft:big_dripleaf_stem[facing=west,waterlogged=true] 91 115 45 83 72 92 36 83 45 57 22 83 36 46 18 83 +minecraft:big_dripleaf_stem[facing=west,waterlogged=false] 91 115 45 83 72 92 36 83 45 57 22 83 36 46 18 83 +minecraft:big_dripleaf_stem[facing=east,waterlogged=true] 91 115 45 83 72 92 36 83 45 57 22 83 36 46 18 83 +minecraft:big_dripleaf_stem[facing=east,waterlogged=false] 91 115 45 83 72 92 36 83 45 57 22 83 36 46 18 83 +minecraft:small_dripleaf 94 119 45 63 75 95 36 63 47 59 22 63 37 47 18 63 +minecraft:small_dripleaf[facing=north,half=upper,waterlogged=false] 94 119 45 63 75 95 36 63 47 59 22 63 37 47 18 63 +minecraft:small_dripleaf[facing=north,half=lower,waterlogged=true] 94 122 45 42 75 97 36 42 47 61 22 42 37 48 18 42 +minecraft:small_dripleaf[facing=north,half=lower,waterlogged=false] 94 122 45 42 75 97 36 42 47 61 22 42 37 48 18 42 +minecraft:small_dripleaf[facing=south,half=upper,waterlogged=true] 94 119 45 63 75 95 36 63 47 59 22 63 37 47 18 63 +minecraft:small_dripleaf[facing=south,half=upper,waterlogged=false] 94 119 45 63 75 95 36 63 47 59 22 63 37 47 18 63 +minecraft:small_dripleaf[facing=south,half=lower,waterlogged=true] 94 122 45 42 75 97 36 42 47 61 22 42 37 48 18 42 +minecraft:small_dripleaf[facing=south,half=lower,waterlogged=false] 94 122 45 42 75 97 36 42 47 61 22 42 37 48 18 42 +minecraft:small_dripleaf[facing=west,half=upper,waterlogged=true] 94 119 45 63 75 95 36 63 47 59 22 63 37 47 18 63 +minecraft:small_dripleaf[facing=west,half=upper,waterlogged=false] 94 119 45 63 75 95 36 63 47 59 22 63 37 47 18 63 +minecraft:small_dripleaf[facing=west,half=lower,waterlogged=true] 94 122 45 42 75 97 36 42 47 61 22 42 37 48 18 42 +minecraft:small_dripleaf[facing=west,half=lower,waterlogged=false] 94 122 45 42 75 97 36 42 47 61 22 42 37 48 18 42 +minecraft:small_dripleaf[facing=east,half=upper,waterlogged=true] 94 119 45 63 75 95 36 63 47 59 22 63 37 47 18 63 +minecraft:small_dripleaf[facing=east,half=upper,waterlogged=false] 94 119 45 63 75 95 36 63 47 59 22 63 37 47 18 63 +minecraft:small_dripleaf[facing=east,half=lower,waterlogged=true] 94 122 45 42 75 97 36 42 47 61 22 42 37 48 18 42 +minecraft:small_dripleaf[facing=east,half=lower,waterlogged=false] 94 122 45 42 75 97 36 42 47 61 22 42 37 48 18 42 +minecraft:hanging_roots 161 115 91 74 128 92 72 74 80 57 45 74 64 46 36 74 +minecraft:hanging_roots[waterlogged=false] 161 115 91 74 128 92 72 74 80 57 45 74 64 46 36 74 +minecraft:rooted_dirt 144 103 76 255 115 82 60 255 72 51 38 255 57 41 30 255 +minecraft:deepslate 80 80 82 255 64 64 65 255 40 40 41 255 32 32 32 255 +minecraft:deepslate[axis=y] 87 87 89 255 69 69 71 255 43 43 44 255 34 34 35 255 +minecraft:deepslate[axis=z] 80 80 82 255 64 64 65 255 40 40 41 255 32 32 32 255 +minecraft:cobbled_deepslate 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=straight,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=inner_left,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=inner_left,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=inner_right,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=inner_right,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=outer_left,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=outer_left,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=outer_right,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=outer_right,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=straight,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=straight,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=straight,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=inner_left,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=inner_left,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=inner_right,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=inner_right,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=outer_left,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=outer_left,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=outer_right,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=outer_right,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=straight,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=straight,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=straight,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=inner_left,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=inner_right,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=outer_left,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=outer_left,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=outer_right,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=outer_right,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=straight,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=straight,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=straight,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=inner_left,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=inner_right,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=outer_left,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=outer_left,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=outer_right,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=outer_right,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=straight,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_slab 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_slab[type=top,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_slab[type=bottom,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_slab[type=bottom,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_slab[type=double,waterlogged=true] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_slab[type=double,waterlogged=false] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none] 77 77 80 255 61 61 64 255 38 38 40 255 30 30 32 255 +minecraft:cobbled_deepsla